IButtonControl.cs 341 B

1234567891011121314151617
  1. //
  2. // System.Windows.Forms.IButtonControl.cs
  3. //
  4. // Author:
  5. // Dennis hayes ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Windows.Forms {
  10. public interface IButtonControl {
  11. void NotifyDefault(bool value);
  12. void PerformClick();
  13. DialogResult DialogResult {get; set;}
  14. }
  15. }