Xceed.Wpf.Toolkit.PropertyGrid.PropertyItem.PropertyItem C# (CSharp) 메소드

PropertyItem() 개인적인 메소드

private PropertyItem ( DescriptorPropertyDefinitionBase definition ) : System
definition DescriptorPropertyDefinitionBase
리턴 System
    internal PropertyItem( DescriptorPropertyDefinitionBase definition )
      : base( definition.IsPropertyGridCategorized )
    {
      if( definition == null )
        throw new ArgumentNullException( "definition" );

      this.DescriptorDefinition = definition;
      this.ContainerHelper = definition.CreateContainerHelper( this );
      definition.ContainerHelperInvalidated += new EventHandler( OnDefinitionContainerHelperInvalidated );
    }