using System; using System.Windows.Controls; namespace Microsoft.Windows.Controls.PropertyGrid.Editors { public class TextBoxEditor : TypeEditor { protected override void SetControlProperties() { Editor.BorderThickness = new System.Windows.Thickness(0); } protected override void SetValueDependencyProperty() { ValueProperty = TextBox.TextProperty; } } }