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