4 references to MaxLengthProperty
PresentationFramework (4)
System\Windows\Controls\PasswordBox.cs (1)
247
TextBox.
MaxLengthProperty
.AddOwner(typeof(PasswordBox));
System\Windows\Controls\TextBox.cs (2)
736
get { return (int) GetValue(
MaxLengthProperty
); }
737
set { SetValue(
MaxLengthProperty
, value); }
System\windows\Documents\TextEditor.cs (1)
1032
return _uiScope == null ? 0 : (int)_uiScope.GetValue(TextBox.
MaxLengthProperty
);