4 references to MaxLengthProperty
PresentationFramework (4)
src\Framework\System\Windows\Controls\PasswordBox.cs (1)
279
TextBox.
MaxLengthProperty
.AddOwner(typeof(PasswordBox));
src\Framework\System\Windows\Controls\TextBox.cs (2)
771
get { return (int) GetValue(
MaxLengthProperty
); }
772
set { SetValue(
MaxLengthProperty
, value); }
src\Framework\System\windows\Documents\TextEditor.cs (1)
1072
return _uiScope == null ? 0 : (int)_uiScope.GetValue(TextBox.
MaxLengthProperty
);