xceed wpf propertygrid集合选择

时间:2016-02-05 13:32:19

标签: c# wpf collections propertygrid xceed

我是WPF的新手,可能是一个愚蠢的问题,但是......)有一个由xceed wpf propertygrid可视化的自定义属性类

public class ShopProperties
{
    private readonly ObservableCollection<string> _cars = new ObservableCollection<string>();

    [Category(@"CarsShop")]
    [DisplayName(@"CarsCollection")]
    public ObservableCollection<string> CarsCollection { get {return _cars;}}

    [Browsable(false)] 
    private string SelectedCar {get; set;}
}

我需要使用哪种最简单,最精细的PropertyGrid编辑器(或自定义编辑器)从CarsCollection中分配SelectedCar元素?

2 个答案:

答案 0 :(得分:2)

经过一些搜索和阅读http://wpftoolkit.codeplex.com/wikipage?title=PropertyGrid&referringTitle=Documentation 在我的情况下,我认为它至少有两种方式。

1。自定义xctk:CollectionControl并编辑XAML。

<xctk:PropertyGrid Name="_generalPropertyGrid" DockPanel.Dock="Top" 
                            ShowSearchBox="False" ShowSortOptions="False" ShowTitle="False" NameColumnWidth="120" BorderThickness="0">
  <xctk:PropertyGrid.EditorDefinitions>
    <xctk:EditorTemplateDefinition TargetProperties="CarsCollection">
      <xctk:EditorTemplateDefinition.EditingTemplate>
        <DataTemplate>
          <xctk:CollectionControl SelectedItem="{Binding Path=SelectedCar}"/>
        </DataTemplate>
      </xctk:EditorTemplateDefinition.EditingTemplate>
    </xctk:EditorTemplateDefinition>
  </xctk:PropertyGrid.EditorDefinitions>
</xctk:PropertyGrid>

2。创建实现UserControl

的自己的ITypeEditor

查看http://wpftoolkit.codeplex.com/wikipage?title=PropertyGrid&referringTitle=Documentation中的数据,按ComboBox选择。我选择这种方式。

<UserControl x:Class="proj_namespace.CarSelector"
 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
 mc:Ignorable="d" 
 x:Name="CarSelector"
 d:DesignHeight="25" d:DesignWidth="200">
  <Grid>
    <ComboBox ItemsSource="{Binding Value, ElementName=CarSelector}" SelectionChanged="Selector_OnSelectionChanged"/>
  </Grid>
</UserControl>

背后有类代码:

public partial class CarSelector : ITypeEditor
{
    public CarSelector()
    {
        InitializeComponent();
    }

    public static readonly DependencyProperty ValueProperty = 
        DependencyProperty.Register("Value", typeof(ObservableCollection<string>), typeof(CarSelector),
            new FrameworkPropertyMetadata(null, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault));


    public string Value
    {
        get { return (string)GetValue(ValueProperty); }
        set { SetValue(ValueProperty, value); }
    }

    public FrameworkElement ResolveEditor(PropertyItem propertyItem)
    {
        var binding = new Binding("Value");
        binding.Source = propertyItem;
        binding.Mode = propertyItem.IsReadOnly ? BindingMode.OneWay : BindingMode.TwoWay;
        BindingOperations.SetBinding(this, ValueProperty, binding);
        return this;
    }

    private void Selector_OnSelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        if (sender != null)
            MainWindow.Instance._properties.SelectedCar = (sender as ComboBox).SelectedItem as string;
    }
}

最后在属性

上面添加自定义编辑器行
[Editor(typeof(CarSelector), typeof(CarSelector))]
public ObservableCollection<string> CarsCollection { get { return _securities; } }

答案 1 :(得分:-1)

我不知道你为什么使用propertygrid而不是datagrid,属性grid用于查看和更改内存中对象的属性(就像WPF窗口的一个元素),就像Property窗口一样在visual studio中显示所选对象的所有属性。

如果你想展示一个集合,即使你想要在之后编辑它,你也应该尝试xceed数据网格,我认为这将是你的盟友。

但是,无论如何,您可以将propertygrid的selectedProperty属性绑定到选定的汽车,或者您可以直接使用propertygrid的selectedProperty属性并检查它是否是汽车。