IWindowsFormsEditorService.cs 352 B

123456789101112131415161718
  1. //
  2. // System.Windows.Forms.IWindowsFormsEditorService
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. namespace System.Windows.Forms
  10. {
  11. public interface IWindowsFormsEditorService
  12. {
  13. void CloseDropDown();
  14. void DropDownControl (Control control);
  15. DialogResult ShowDialog (Form dialog);
  16. }
  17. }