C# 新手:更改使用 WPF 拖放创建的实体框架 DataBound DataGrid
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
您不必首先执行
dataGridInputEmails.Columns.Clear();
。Try this:
You shouldn't have to do
dataGridInputEmails.Columns.Clear();
first.