System.Windows.DependencyProperty.DependencyProperty C# (CSharp) Method

DependencyProperty() private method

private DependencyProperty ( IntPtr handle, string name, Type property_type, Type declaring_type ) : System.Collections.Generic
handle IntPtr
name string
property_type Type
declaring_type Type
return System.Collections.Generic
        internal DependencyProperty(IntPtr handle, string name, Type property_type, Type declaring_type)
        {
            this.native = handle;
            this.property_type = property_type;
            this.declaring_type = declaring_type;
            this.name = name;

            properties.Add (handle, this);

            //Console.WriteLine ("DependencyProperty.DependencyProperty ({0:X}, {1}, {2})", handle, property_type.FullName, declaring_type.FullName);
        }

Same methods

DependencyProperty::DependencyProperty ( bool isAttached, string name, Type propertyType, Type ownerType, System.Windows.PropertyMetadata defaultMetadata, ValidateValueCallback validateValueCallback ) : System.Collections.Generic