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