如何使用 DataGrid 显示 MDB 的内容
我对 .Net 4 比较陌生,我正在使用 MDB 作为后端数据源创建我的第一个 WPF 应用程序。
我设计了我的用户界面。我有一个 TextField(称为 Name)、一个 Combobox(称为 Division)和一个 DataGrid(称为 dataGrid1)。
我遇到的唯一问题是弄清楚如何链接我的 DataGrid 以显示来自数据源的数据。并在Windows1_Loaded方法中加载数据。
谢谢
I'm relatively new to .Net 4 and I am creating my FIRST WPF application using a MDB as a backend datasource.
I designed my UI. I have a TextField (called Name), a Combobox (called Division) and a DataGrid (called dataGrid1).
The only problem I'm having is figuring out how to link my DataGrid to display data from the DataSource. and load the data in the Windows1_Loaded method.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
五秒钟的答案是您想要将 DataGrid 的 ItemsSource 属性设置为您的数据。您可以在 Loaded 事件中执行此操作,但在 XAML 中执行此操作是更好的做法。当然,如果这是您的第一个应用程序,那么目前任何一个都可以。
此 CodeProject 条目 有大量有关如何使用 WPF DataGrid 的示例。希望它们对您有所帮助,我以前从未尝试过使用 MDB 文件。
The five second answer is you want to set the DataGrid's ItemsSource property to your data. You can do this in the Loaded event, but doing so in the XAML is better practice. Of course, if it's your first application, either is fine for now.
This CodeProject entry has a ton of examples on how to use the WPF DataGrid. Hopefully they'll be of help to you, I've never tried to use an MDB file before.