| 12345678910111213141516171819202122232425262728 |
- // System.Drawing.Design.ToolboxComponentsCreatedEventArgs.cs
- //
- // Author:
- // Alejandro Sánchez Acosta <[email protected]>
- //
- // (C) Alejandro Sánchez Acosta
- //
- //
- using System.ComponentModel;
- namespace System.Drawing.Design
- {
- public class ToolboxComponentsCreatedEventArgs : EventArgs
- {
- private IComponent[] components;
-
- public ToolboxComponentsCreatedEventArgs (IComponent[] components) {
- this.components = components;
- }
- public IComponent[] Components {
- get {
- return components;
- }
- }
- }
- }
|