在 wpf 中使用 DataGridView(winForms)
本文关键字:winForms DataGridView wpf | 更新日期: 2023-09-27 18:30:34
我在我的wpf应用程序中使用datagridview(不是datagrid),我使用此代码在我的窗口中调用它
<Window x:Class="TestHosting.MainWindow"
xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="440.132" Width="521.053">
<Grid>
<WindowsFormsHost Margin="20,20,130,142">
<wf:DataGridView x:Name="dgv">
<wf:DataGridView.Columns>
<wf:DataGridViewColumn Name="column1" HeaderText="Col l" />
<wf:DataGridViewColumn Name="column2" HeaderText="Col 2"/>
<wf:DataGridViewColumn Name="column3" HeaderText="Col 3"/>
</wf:DataGridView.Columns>
</wf:DataGridView>
</WindowsFormsHost>
问题是错误说"至少在 datagridview 控件的列上没有单元格模板"。
我应该如何解决此错误?
您可以使用
DataGrid,而不是 DataGridView
SqlDataAdapter da = new SqlDataAdapter("Select * from Table", con);
DataTable dt = new DataTable("Call Reciept");
da.Fill(dt);
DataGrid dg = new DataGrid();
dg.ItemsSource = dt.DefaultView;