WPF:xceed datagrid,如何在运行时调整列宽?
我正在尝试在运行时调整 xceed 数据网格,但找不到相关设置,有人有这方面的经验吗?
I'm trying to adjust the xceed datagrid at runtime and cannot find a setting for this, anyone have any experience with it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我正在使用 Xceed 的 DataGridControl,它与 Matt 所描绘的完全一样。如果您的控件名为 dgCtrl,则后面的代码将如下所示:
您还可以使用列名称(FieldName 属性)来访问列:
Xceed 的网格提供了各种选项来调整列的宽度在运行时自动执行。有关详细信息,请参阅他们的在线文档。
I am using Xceed's DataGridControl and its exactly as Matt sketched it. If your control is named dgCtrl, the code behind would look like this:
You can also use the column names (FieldName property) to access the Columns:
Xceed's grid offers various options to adjust the width of the columns automatically at run-time. Refer to their online documentation for more info.
我没有使用过 xceed datagrid,但是它没有像普通数据网格那样的 columns 属性吗?
I haven't used the xceed datagrid, but does it not have a columns property like the normal one?