C# 新手:更改使用 WPF 拖放创建的实体框架 DataBound DataGrid

发布于 2024-11-17 23:00:06 字数 548 浏览 1 评论 0原文

我是 C# 新手,我使用 Visual Studio 2010 Ultimate (Windows 7 x64) 创建了一个 WPF GUI。

我使用拖放技术通过实体框架技术将数据网格数据绑定到 SQL Server 2008 数据库表。

尽管我缺乏 C# 技能,但这一切都运行得很好。

我能够使用以下语句隐藏列:

dataGridInputEmails.Columns[0].Visibility = Visibility.Hidden;

我使用以下语句清除了数据网格:

dataGridInputEmails.Columns.Clear();

现在我想使用通过读取文本文件并使用创建的字符串来填充数据网格:

string[] parts = slurp.Split(delimiters,StringSplitOptions.RemoveEmptyEntries);

但是,我不知道如何填充数据网格。

TIA

I'm new to C# and I created a WPF GUI using Visual Studio 2010 Ultimate (Windows 7 x64).

I used drag-and-drop technology to databind a datagrid to an SQL Server 2008 database table using Entity Framework technology.

This all works very well, despite my lack of C# skills.

I was able to hide columns using statements like:

dataGridInputEmails.Columns[0].Visibility = Visibility.Hidden;

And I cleared the datagrid using:

dataGridInputEmails.Columns.Clear();

Now I want to populate the datagrid with a string that I created by reading in a text file and using:

string[] parts = slurp.Split(delimiters,StringSplitOptions.RemoveEmptyEntries);

But, I cannot figure out how to populate the datagrid.

TIA

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

何以畏孤独 2024-11-24 23:00:06

试试这个:

dataGridInputEmails.ItemsSource = parts;

您不必首先执行 dataGridInputEmails.Columns.Clear();

Try this:

dataGridInputEmails.ItemsSource = parts;

You shouldn't have to do dataGridInputEmails.Columns.Clear(); first.

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