| 1234567891011121314151617 |
- // System.Drawing.Design.IToolboxUser.cs
- //
- // Author:
- // Alejandro Sánchez Acosta <[email protected]>
- //
- // (C) Alejandro Sánchez Acosta
- //
- namespace System.Drawing.Design
- {
- public interface IToolboxUser
- {
- bool GetToolSupported (ToolboxItem tool);
- void ToolPicked (ToolboxItem tool);
- }
- }
|