代码中的 DataGridColumn 绑定

发布于 2024-10-20 18:38:06 字数 142 浏览 2 评论 0原文

我正在寻找一种简单的方法,通过它我可以将我的 DataGridColumn 与动态数据表列绑定。我还应该能够定义每列的宽度。

示例:-

如果我的程序在数据表中生成 5 列,那么 DataGrid 应该能够显示 5 列,每列具有不同的列宽。

I am searching a simple method through which i can bind my DataGridColumn with a Datatable columns on the fly. I should also be able to define the width of each column.

Example :-

If My program generates 5 columns in a datatable, so the DataGrid should be able to dispaly 5 columns with each having different column width.

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

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

发布评论

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

评论(1

深者入戏 2024-10-27 18:38:06

我找到了答案:

dtgrdAtlas.Columns.Add(
                        new DataGridTextColumn
                        {
                            Header = dc.ColumnName,
                            Width = 100,
                            IsReadOnly = true,
                            Binding = new Binding(string.Format("[{0}]", dc.ColumnName))
                        });

dtgrdAtlas = DataGrid

dc = DataColumn 属于数据表

它也进行绑定!

I figured out the answer:

dtgrdAtlas.Columns.Add(
                        new DataGridTextColumn
                        {
                            Header = dc.ColumnName,
                            Width = 100,
                            IsReadOnly = true,
                            Binding = new Binding(string.Format("[{0}]", dc.ColumnName))
                        });

dtgrdAtlas = DataGrid

dc = DataColumn belonging to a data table

It does the binding too!

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