| 1234567891011121314151617 |
- //
- // System.Windows.Forms.IButtonControl.cs
- //
- // Author:
- // Dennis hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- namespace System.Windows.Forms {
- interface IButtonControl {
- void NotifyDefault(bool value);
- void PerformClick();
- DialogResult DialogResult {get; set;}
- }
- }
|