WPF DataGridColumn 不允许我设置“.width = double.NaN”用于自动调整列大小。 “价值不应该是无穷大”错误?

发布于 2024-12-07 20:33:01 字数 289 浏览 0 评论 0原文

我有一个 WPF DataGrid,我正在后面的代码中手动设置列。我尝试使用以下代码将列大小设置为自动:

customBoundColumn.Width = double.NaN;

但在运行时我收到以下错误:

值不应为无穷大。 参数名称:值

我在很多地方读到 double.NaN 是用来将列大小设置为 auto 的。我做错了什么?

PS customBoundColumn 是 DataGridBoundColumn 的实例

I have a WPF DataGrid and I am setting up columns manually in code behind. I am trying to set the column size to Auto with the following code:

customBoundColumn.Width = double.NaN;

But then at run-time I get the following error:

Value should not be infinity.
Parameter name: value

I read in many places that double.NaN is what is used to set the column size to auto. What am I doing wrong?

P.S. customBoundColumn is an instance of DataGridBoundColumn

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

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

发布评论

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

评论(3

姐不稀罕 2024-12-14 20:33:01

我相信您可以简单地使用 DataGridLength.Auto 将宽度设置回 Auto

customBoundColumn.Width = DataGridLength.Auto;

I believe you can simply use DataGridLength.Auto to set your width back to Auto

customBoundColumn.Width = DataGridLength.Auto;
满栀 2024-12-14 20:33:01

在 .Net 4.0 之前的版本中,设置了数据网格列的宽度,因为

         customBoundColumn.Width = new DataGridLength(0, DataGridLengthUnitType.Auto);

我不确定 .Net 4.0 中的宽度是什么。

In versions prior to .Net 4.0, the width of a datagrid column is set as

         customBoundColumn.Width = new DataGridLength(0, DataGridLengthUnitType.Auto);

I am not sure what is it in .Net 4.0.

南烟 2024-12-14 20:33:01

对于所有 FrameworkElement 派生类,默认宽度和高度都是 Auto,对于 dataGrid 列也是如此。那么,为什么需要在代码后面显式设置它呢?

Deafult width and height is Auto for all FrameworkElement-derived classes and so is for dataGrid columns. So, why do you need to set it explicitly in code behind?

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