有没有办法将 GridViewColumn 的宽度设置为 Auto?
在代码中的某个地方,我必须将 GridViewColumn 的宽度设置为 0,而在另一个地方,我想将其设置为 "Auto"
就像在 xaml 中一样,而不是重新定义 xaml 在使用 "Auto"
时所做的事情。
关于如何在代码中执行此操作有什么想法吗?
Somewhere in code I have to set the width of a GridViewColumn
to 0, and in another place I want to set it to "Auto"
just like in the xaml, instead of reinventing what the xaml is doing when using "Auto"
.
Any ideas on how to do this in code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在这里找到了答案。
这实际上是默认值,因此如果您不设置宽度,则默认情况下该列将自动调整大小。
I found the answer here.
That's actually the default value, so if you don't set Width, the column will be auto-sized by default.