我将带有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
列平台是空的。我做错了什么?我试图改变列模板与组合框内-同样的结果。我将感谢任何帮助或至少方向挖掘。
2条答案
按热度按时间s4n0splo1#
您尝试将
DataGridComboBoxColumn
的ItemsSource
属性系结至ObservableCollection
(PlatformsCollection)或属性(Platform)吗?您应该能够通过以下方式完成此操作:
您需要将另一个名为SelectedPlatform的成员添加到模型中,该成员将在用户每次更改所选平台时进行存储/更新。
此外,您可能希望使用
CellTemplate
/CellEditingTemplate
与DataGridTemplateColumn
的组合,这样看起来会更好一些。用户只会看到一个文本框,除非他们单击单元格,此时组合框会出现。此操作的标记类似于
希望能有所帮助。如果你有任何问题,请告诉我。
kninwzqo2#
如果你的平台对所有对象都是通用的,那么你可以将platforms属性设置为静态的,你的xaml将使用它,如下所示:
希望能有所帮助。