PropertyGrid(扩展 WPF 工具包)中没有 xaml 的多行字符串?

Multi-line string in PropertyGrid (Extended WPF toolkit) without xaml?

扩展 WPF 工具包专家,

我正在尝试设置字符串 属性 以在 PropertyGrid 控件中接受多行。我不想使用任何 xaml 来定义编辑模板。我看到人们通过使用一些属性来使用 WinForms PropertyGrid 来做到这一点。

我给绑定对象添加属性更方便了。

以前有人做过吗?

谢谢!

根据 WPF 工具包文档,您的自定义编辑控件必须实现 ITypeEditor。

示例属性

[Editor(typeof(MultilineTextBoxEditor), typeof(MultilineTextBoxEditor))]
public override string Caption
   {
      get
            {
                return caption;
            }

      set
            {
                caption = value;
                OnPropertyChanged("Caption");
            }
  }

属性Class

      public class MultilineTextBoxEditor : Xceed.Wpf.Toolkit.PropertyGrid.Editors.ITypeEditor
        {
            public FrameworkElement ResolveEditor(Xceed.Wpf.Toolkit.PropertyGrid.PropertyItem propertyItem)
            {
                System.Windows.Controls.TextBox textBox = new 
 System.Windows.Controls.TextBox();
                textBox.AcceptsReturn = true;
                //create the binding from the bound property item to the editor
                var _binding = new Binding("Value"); //bind to the Value property of the PropertyItem
                _binding.Source = propertyItem;
                _binding.ValidatesOnExceptions = true;
                _binding.ValidatesOnDataErrors = true;
                _binding.Mode = propertyItem.IsReadOnly ? BindingMode.OneWay : BindingMode.TwoWay;
                BindingOperations.SetBinding(textBox, System.Windows.Controls.TextBox.TextProperty, _binding);
                return textBox;
            }
        }