gpt4 book ai didi

wpf - 字符串无法转换为长度

转载 作者:行者123 更新时间:2023-12-02 00:10:33 26 4
gpt4 key购买 nike

<Style x:Key="GridColumnDefaultStyle">
<Setter Property="ColumnDefinition.Width" Value="1*"/>
</Style>

上面的代码位于一个 generic.xaml 文件中,页面上的网格将在我的整个应用程序中使用该文件。这在 generic.xaml 中给出了一个设计时“异常”,它指出:

'1*' String cannot be converted to length.

但更糟糕的是,我的页面在 WPF 设计器中的格式不正确并且设计器被禁用(尽管是可视化设计器,而不是 xaml 设计器)。页面设计很烦人...

有人经历过同样的行为吗?有什么解决方案/解决方法吗?

顺便说一句:运行时 -> 没问题,表现符合预期/预期...

最佳答案

这可能对您有帮助:

<Grid>
<Grid.Resources>
<Style x:Key="GridColumnDefaultStyle" TargetType="ColumnDefinition">
<Setter Property="Width" Value="1*"/>
</Style>
</Grid.Resources>
<Grid.ColumnDefinitions>
<ColumnDefinition Style="{StaticResource GridColumnDefaultStyle}"/>
<ColumnDefinition Width="2*"/>
</Grid.ColumnDefinitions>
</Grid>

关于wpf - 字符串无法转换为长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15680737/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com