0

我正在尝试在项目模板中设置 * height 属性,但我不断收到错误消息

'50*' string cannot be converted to Length.

我不确定我想做的事情是否可行。

如果您需要更多信息,请告诉我。

这是我的 Xaml:

<ItemsControl Name="lstMain" ItemsSource="{Binding Sections}">
                <ItemsControl.ItemTemplate>
                    <DataTemplate>
                        <GroupBox Header="{Binding Section.SectionName}" Height="50*">
                            <StackPanel>
                                <ItemsControl ItemsSource="{Binding SubSections}" ItemTemplate="{StaticResource BinderTemplate}" />
                            </StackPanel>
                        </GroupBox>
                    </DataTemplate>
                </ItemsControl.ItemTemplate>
            </ItemsControl>
4

1 回答 1

2

关键是 Height 是一种Double数据类型,而不是GridLength,例如网格行和列。

只有 GridLength 支持星号大小。

于 2013-01-11T12:25:58.213 回答