禁用 GridView 列调整大小
有什么方法可以在 WPF 中禁用 GridViewColumn 调整大小吗?我不想设置控件的样式。
Is there any way by which I can disable GridViewColumn resize in WPF? I don't want to style the control.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅此链接:ListView 中的固定宽度列:一列无法调整大小
See this link: Fixed-Width Column in ListView: A Column that cannot be resized
您能详细解释一下吗?请给我您的代码。
如果要禁用 GridView 的列,可以使用
网格的第 0 列变为禁用,并且网格的另一列自动调整大小。
Could you explain me in detail and please give me your code.
If you want to disable the column of a GridView , you can use
then column 0 of the grid become disable and the other column of the grid resize automatically.