如何使用 DataGrid 显示 MDB 的内容

发布于 2024-09-01 08:19:14 字数 236 浏览 1 评论 0原文

我对 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

噩梦成真你也成魔 2024-09-08 08:19:14

五秒钟的答案是您想要将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文