WPF DataGridColumn 不允许我设置“.width = double.NaN”用于自动调整列大小。 “价值不应该是无穷大”错误?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我相信您可以简单地使用
DataGridLength.Auto
将宽度设置回Auto
I believe you can simply use
DataGridLength.Auto
to set your width back toAuto
在 .Net 4.0 之前的版本中,设置了数据网格列的宽度,因为
我不确定 .Net 4.0 中的宽度是什么。
In versions prior to .Net 4.0, the width of a datagrid column is set as
I am not sure what is it in .Net 4.0.
对于所有 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?