- Fixed RadioButton display
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / IComponentEditorPageSite.cs
1 //
2 // System.Windows.Forms.IComponentEditorPageSite.cs
3 //
4 // Author:
5 // William Lamb (wdlamb@notwires.com)
6 // Dennis Hayes (dennish@raytek.com)
7 //
8 // (C) 2002 Ximian, Inc. http://www.ximian.com
9 //
10
11 namespace System.Windows.Forms {
12
13         public interface IComponentEditorPageSite {
14
15                 // There is no documentation for this interface's members!
16                 // Only a note saying that it supports the .NET infrastructure
17                 // and is not intended to be used directly from your code.
18                 // The following methods had their own listing in the documentation;
19                 // I don't know what other methods and properties there may be.
20
21                 Control GetControl();
22                 void SetDirty();
23         }
24 }