예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="StyledPropertyBase{T}"/> class.
 /// </summary>
 /// <param name="source">The property to add the owner to.</param>
 /// <param name="ownerType">The type of the class that registers the property.</param>
 protected StyledPropertyBase(StyledPropertyBase <TValue> source, Type ownerType)
     : base(source, ownerType, null)
 {
     _inherits = source.Inherits;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="StyledPropertyBase{T}"/> class.
 /// </summary>
 /// <param name="source">The property to add the owner to.</param>
 /// <param name="ownerType">The type of the class that registers the property.</param>
 internal StyledProperty(StyledPropertyBase <TValue> source, Type ownerType)
     : base(source, ownerType)
 {
 }