因此,我在WPF中相对较新,有人向我提到的一个不错的功能是datagrids中的自定义列。 所以这是我的问题。
我有两个数据库表,一个Employee表和一个Occupation表。
员工表
职业表
如您所见,我有一个链接两个表的外键。因此,在我的应用程序中,我设置了DataGrid ItemsSource =员工列表。在DataGrid中,我自己定义了列,我禁用了AutoGenerateColumns属性。我有4列,
0:TextColumn
1:TextColumn
2:TextColumn
3:ComboBoxColumn
所以我的问题是,如何将ComboBoxColumn(第4列)的ItemsSource设置为我的Occupation类的列表,以显示外键OccupationID的职业描述?并用所有职业描述填充组合框?
我的代码:
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
List<Employee> employees;
private void gridMain_Loaded(object sender, RoutedEventArgs e)
{
employees = EmployeeDataHandler.getAllEmployees();
List<Occupation> occs = OccupationDataHandler.getAllJobs();
dgEmployee.ItemsSource = employees;
}
}
class Employee
{
public int ID { get; set; }
public string Name { get; set; }
public string Surname { get; set; }
public int Occupation { get; set; }
}
class Occupation
{
public int ID { get; set; }
public string Description { get; set; }
}
还有我的xaml代码:
<Grid x:Name="gridMain" Loaded="gridMain_Loaded">
<DataGrid x:Name="dgEmployee" HorizontalAlignment="Left" Height="301" Margin="10,10,0,0" VerticalAlignment="Top" Width="498" IsSynchronizedWithCurrentItem="True" AutoGenerateColumns="False">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding ID}" ClipboardContentBinding="{x:Null}" Header="System ID"/>
<DataGridTextColumn Binding="{Binding Name}" ClipboardContentBinding="{x:Null}" Header="Name"/>
<DataGridTextColumn Binding="{Binding Surname}" ClipboardContentBinding="{x:Null}" Header="Surname"/>
<DataGridComboBoxColumn ClipboardContentBinding="{x:Null}" Header="Occupation" SelectedValueBinding="{x:Null}" SelectedItemBinding="{x:Null}" TextBinding="{x:Null}"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
非常感谢您抽出宝贵的时间阅读我的问题。附言这些都是假数据,所以不用担心屏幕截图中的名称
答案 0 :(得分:1)
在XAML标记中为DataGridComboBoxColumn
元素赋予x:Key
,然后在事件处理程序中设置其ItemsSource
属性:
private void gridMain_Loaded(object sender, RoutedEventArgs e)
{
employees = EmployeeDataHandler.getAllEmployees();
List<Occupation> occs = OccupationDataHandler.getAllJobs();
dgEmployee.ItemsSource = employees;
cmb.ItemsSource = occs;
}
XAML:
<DataGridComboBoxColumn x:Name="cmb" ClipboardContentBinding="{x:Null}"
Header="Occupation"
SelectedValuePath="ID"
SelectedValueBinding="{Binding Occupation}"
DisplayMemberPath="Description "/>