有没有办法将 GridViewColumn 的宽度设置为 Auto?

发布于 2024-10-30 10:29:42 字数 168 浏览 0 评论 0原文

在代码中的某个地方,我必须将 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 技术交流群。

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

发布评论

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

评论(1

薯片软お妹 2024-11-06 10:29:42

我在这里找到了答案。

col.Width = Double.NaN;

这实际上是默认值,因此如果您不设置宽度,则默认情况下该列将自动调整大小。

I found the answer here.

col.Width = Double.NaN;

That's actually the default value, so if you don't set Width, the column will be auto-sized by default.

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