2

我将具有平台的类设备作为属性之一:

public partial class DevicesCollection : ObservableCollection<Device>
{
    public DevicesCollection() : base()
    { }
}

public partial class Device : INotifyPropertyChanged
{
    private string hostIP;
    private string password;
    private int platform;
    private string status = "";
    private int loop = 1;

    public Device() { }

    public Device(string ip, string pswd, int tp)
    {
        HostIP    = ip;
        Password  = pswd;
        Platform  = tp;
        Status    = "Disconnected";
        Loop = 1;
    }        

以及我有平台类:

public partial class PlatformsCollection : ObservableCollection<Platform>
{
    public PlatformsCollection()
        : base()
    {
        Add(new Platform(1, "iOS"));
        Add(new Platform(2, "Android"));
        Add(new Platform(3, "Windows"));
        Add(new Platform(4, "Blackberry"));
    }
}

public partial class Platform : INotifyPropertyChanged
{
    private string platformName;
    private int platformId;

    public Platform(int id, string name)
    {
        PlatformName = name;
        PlatformId = id;
    }
....

我有一个DataGrid绑定到 Devices 类的列,其中一列是ComboBox 我试图绑定到 Platform 类的 Platform:

<DataGridComboBoxColumn x:Name="platform" Header="Platform" CanUserResize="False"
                        ItemsSource="{Binding Platform}"
                        SelectedValueBinding="{Binding Path=Platform.PlatformId}"
                        SelectedValuePath="PlatformId"
                        DisplayMemberPath="PlatformName" Width="100">
    <DataGridComboBoxColumn.ElementStyle>
        <Style TargetType="ComboBox">
            <Setter Property="ItemsSource" Value="{Binding Path=Platform.PlatformName}" />
        </Style>
    </DataGridComboBoxColumn.ElementStyle>
</DataGridComboBoxColumn>

我看到带有值的保管箱,但是在我尝试接收DataGrid.ItemsSource列平台时选择了任何值后,平台为空。我做错了什么?我试图将列更改为带有组合框的模板 - 结果相同。我将不胜感激任何帮助或至少是深入研究的方向。

4

2 回答 2

0

您是否尝试将DataGridComboBoxColumn'ItemsSource属性绑定到ObservableCollection(PlatformsCollection) 或属性 (Platform)?

你应该能够用类似的东西来完成这个。

<DataGridComboBoxColumn Header="Platform" ItemsSource="{Binding PlatformsCollection}"
    SelectedValue="{Binding SelectedPlatform}" DisplayMemberPath="PlatformName"/>

您需要在模型中添加另一个名为 SelectedPlatform 的成员,该成员将在用户每次更改所选平台时存储/更新。

此外,您可能希望考虑使用CellTemplate/CellEditingTemplate与 aDataGridTemplateColumn的组合,这样看起来会更好一些。除非用户单击将出现组合框的单元格,否则只会向用户显示文本框。

对此的标记将类似于

<DataGridTemplateColumn>
    <DataGridTemplateColumn.CellTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding SelectedPlatform.PlatformName}"/>
        </DataTemplate>
    </DataGridTemplateColumn.CellTemplate>
    <DataGridTemplateColumn.CellEditingTemplate>
        <DataTemplate>
            <ComboBox ItemsSource="{Binding PlatformsCollection}" 
                SelectedValue="{Binding SelectedPlatform}" 
                DisplayMemberPath="PlatformName"/>
        </DataTemplate>
    </DataGridTemplateColumn.CellEditingTemplate>
</DataGridTemplateColumn

希望这会有所帮助。如果您有任何问题,请告诉我。

于 2013-04-30T22:15:29.840 回答
0

如果您的平台对所有对象都是通用的,那么您可以将平台属性设为静态,并且您的 xaml 将使用它,如下所示:

<DataGridComboBoxColumn
    Header="Role"
    SelectedValueBinding="{Binding Role}"
    ItemsSource="{Binding Source={x:Static local:ProjectsDataContext.Roles}}"
    DisplayMemberPath="Name"/>

希望它会有所帮助。

于 2015-11-29T21:01:34.450 回答