代码中的 DataGridColumn 绑定
我正在寻找一种简单的方法,通过它我可以将我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案:
dc = DataColumn 属于数据表
它也进行绑定!
I figured out the answer:
dc = DataColumn belonging to a data table
It does the binding too!