c# – 在PropertyGrid控件中显示只读属性

前端之家收集整理的这篇文章主要介绍了c# – 在PropertyGrid控件中显示只读属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 WPF扩展工具包来显示Team对象的属性.现在其中一个属性是人物集合.没问题,我得到一个很好的下拉,当我点击时,向我显示每个人的姓名和年龄.

现在的问题是我实际上并不希望将我的Collection公开为public.但是,只要我将其setter设为私有,就会禁用该属性,以防止用户看到Person集合和人员详细信息:

当它的setter是私有的时候我应该如何显示我的Person Collection?我可以使用XAML模板执行此操作吗?如果是这样的话?我正在使用MVVM,所以我不想在代码添加任何内容.

更新

好的,所以@tencntraze的解决方案让我大部分都在那里 – 谢谢.
但它对于对象的集合不起作用,这是我在我的情况下得到的.此外,它还可以简化为使用CollectionControlDialog而不是下面实现的自定义ReadOnlyCollectionViewer.

XAML

  1. <UserControl x:Class="DevExpressTreeList.ReadOnlyCollectionEditor"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. x:Name="MyUserControl"
  5. >
  6. <DockPanel>
  7. <Button Click="Button_OnClick" DockPanel.Dock="Right">
  8. <Label Content="˅" Padding="2,2,0" />
  9. </Button>
  10. <Label Name="CollectionLabel" Content="(Collection)" Padding="2,0" />
  11. </DockPanel>
  12. </UserControl>

代码隐藏

  1. public partial class ReadOnlyCollectionEditor : UserControl,ITypeEditor
  2. {
  3. public ReadOnlyCollectionEditor()
  4. {
  5. InitializeComponent();
  6. }
  7.  
  8. // Use typeof(object) to allow for any Collection<T>
  9. public static readonly DependencyProperty ValueProperty = DependencyProperty.Register(
  10. "Value",typeof(object),typeof(ReadOnlyCollectionEditor),new PropertyMetadata(default(object)));
  11.  
  12. public object Value
  13. {
  14. // We are now using object so no need to cast
  15. get { return GetValue(ValueProperty); }
  16. set { SetValue(ValueProperty,value); }
  17. }
  18.  
  19. public FrameworkElement ResolveEditor(Xceed.Wpf.Toolkit.PropertyGrid.PropertyItem propertyItem)
  20. {
  21. var binding = new Binding("Value")
  22. {
  23. Source = propertyItem,Mode = propertyItem.IsReadOnly ? BindingMode.OneWay : BindingMode.TwoWay
  24. };
  25. BindingOperations.SetBinding(this,ValueProperty,binding);
  26. return this;
  27. }
  28.  
  29. private void Button_OnClick(object sender,RoutedEventArgs e)
  30. {
  31. var collectionControlDialog = new CollectionControlDialog
  32. {
  33. ItemsSource = (IList)this.Value
  34. };
  35. collectionControlDialog.ShowDialog();
  36. }
  37. }

解决方法

我认为你最好的选择是按照 Xceed Documentation实现自己的编辑器.然后你可以提供你想要显示用户的任何UI,而不需要将值提交回底层对象.请注意,此方法适用于私有setter以及没有任何setter的属性.

ReadOnlyCollectionEditor

XAML

  1. <UserControl x:Class="WpfApplication2.ReadOnlyCollectionEditor"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. x:Name="uc">
  5. <Button Click="Button_OnClick" Height="20" />
  6. </UserControl>

代码隐藏

  1. public partial class ReadOnlyCollectionEditor : UserControl,ITypeEditor
  2. {
  3. public ReadOnlyCollectionEditor()
  4. {
  5. InitializeComponent();
  6. }
  7.  
  8. public static readonly DependencyProperty ValueProperty = DependencyProperty.Register(
  9. "Value",typeof (IList<string>),typeof (ReadOnlyCollectionEditor),new PropertyMetadata(default(IList<string>)));
  10.  
  11. public IList<string> Value
  12. {
  13. get { return (IList<string>)GetValue(ValueProperty); }
  14. set { SetValue(ValueProperty,RoutedEventArgs e)
  15. {
  16. ReadOnlyCollectionViewer viewer = new ReadOnlyCollectionViewer {DataContext = this};
  17. viewer.ShowDialog();
  18. }
  19. }

ReadOnlyCollectionViewer

  1. <Window x:Class="WpfApplication2.ReadOnlyCollectionViewer"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="ReadOnlyCollectionViewer" Height="300" Width="300">
  5. <ListBox ItemsSource="{Binding Value}" />
  6. </Window>

示例属性

  1. public class MyDataObjects
  2. {
  3. public MyDataObjects()
  4. {
  5. this.CollectionProperty = new Collection<string> {"Item 1","Item 2","Item 3"};
  6. this.StringProperty = "Hi!";
  7. }
  8.  
  9. public string StringProperty { get; set; }
  10.  
  11. [Editor(typeof(ReadOnlyCollectionEditor),typeof(ReadOnlyCollectionEditor))]
  12. public ICollection<string> CollectionProperty { get; private set; }
  13. }

分配给属性网格

  1. this.propertyGrid.SelectedObject = new MyDataObjects();

结果

编辑

我意识到你想要使用MVVM,我在使用WPF时非常鼓励,但是为了这个示例的目的,我相信保持简单有助于说明这一点,否则它会带来其他问题,如showing a modal dialog from MVVM,所以我只是展示了单击按钮的对话框.

猜你在找的C#相关文章