IWindowsformsEditorService.cs 344 B

12345678910111213141516
  1. //
  2. // System.Windows.Forms.Design.IWindowsFormsEditorService.cs
  3. //
  4. // Author:
  5. // Andreas Nahr ([email protected])
  6. //
  7. namespace System.Windows.Forms.Design
  8. {
  9. public interface IWindowsFormsEditorService
  10. {
  11. void CloseDropDown ();
  12. void DropDownControl (Control control);
  13. DialogResult ShowDialog (Form dialog);
  14. }
  15. }