123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System.Drawing;
- namespace Microsoft.Windows.Forms
- {
- partial interface IUIControl
- {
-
-
-
- string Text
- {
- get;
- set;
- }
-
-
-
- Font Font
- {
- get;
- set;
- }
-
-
-
- Color BackColor
- {
- get;
- set;
- }
-
-
-
- Color ForeColor
- {
- get;
- set;
- }
-
-
-
- State State
- {
- get;
- }
- }
- }
|