ICSharpCode.WpfDesign.Designer.Services.CreateComponentTool.CreateComponentTool C# (CSharp) Method

CreateComponentTool() public method

Creates a new CreateComponentTool instance.
public CreateComponentTool ( Type componentType ) : System
componentType System.Type
return System
        public CreateComponentTool(Type componentType)
        {
            if (componentType == null)
                throw new ArgumentNullException("componentType");
            this.componentType = componentType;
        }