wpf 数据网格组合框列绑定到可观察集合

mwecs4sa  于 2022-12-05  发布在  其他
关注(0)|答案(2)|浏览(144)

我将带有Platform的Devices类作为属性之一:

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;
    }
....

我有一个绑定到Devices类的DataGrid,其中一列是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列平台是空的。我做错了什么?我试图改变列模板与组合框内-同样的结果。我将感谢任何帮助或至少方向挖掘。

s4n0splo

s4n0splo1#

您尝试将DataGridComboBoxColumnItemsSource属性系结至ObservableCollection(PlatformsCollection)或属性(Platform)吗?
您应该能够通过以下方式完成此操作:

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

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

此外,您可能希望使用CellTemplate/CellEditingTemplateDataGridTemplateColumn的组合,这样看起来会更好一些。用户只会看到一个文本框,除非他们单击单元格,此时组合框会出现。
此操作的标记类似于

<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

希望能有所帮助。如果你有任何问题,请告诉我。

kninwzqo

kninwzqo2#

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

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

希望能有所帮助。

相关问题