IToolboxUser.cs 307 B

1234567891011121314151617
  1. // System.Drawing.Design.IToolboxUser.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta <[email protected]>
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. namespace System.Drawing.Design
  9. {
  10. public interface IToolboxUser
  11. {
  12. bool GetToolSupported (ToolboxItem tool);
  13. void ToolPicked (ToolboxItem tool);
  14. }
  15. }