未重新计算 ActualWidth 的问题

发布于 2024-09-19 02:24:12 字数 160 浏览 6 评论 0原文

为什么 DataGridColumnActualWidth 不受更改其 Width 属性值的影响,但当我更改其最小宽度?换句话说,ActualWidth 如何计算或更改?

How come is the ActualWidth of a DataGridColumn is not affected by changing the value of its Width property but it is when I change the value of its MinWidth? In other words how does ActualWidth get computed or changed ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

少女七分熟 2024-09-26 02:24:12

之间是有区别的

double width = 25.0;
myDataGridColumn.Width = width;

实际上,使用:和:

double width = 25.0;
myDataGridColumn.Width = new DataGridLength(width, DataGridLengthUnitType.Pixel);

,最新的会激活ActualWidth 的重新计算,但第一个不会。

不知道为什么。

There is actually a difference between using:

double width = 25.0;
myDataGridColumn.Width = width;

and:

double width = 25.0;
myDataGridColumn.Width = new DataGridLength(width, DataGridLengthUnitType.Pixel);

The latest activates the recomputing of ActualWidth but not the first one.

Don't know why.

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