在数据模板WPF中使用*大小调整

时间:2013-01-11 12:18:36

标签: c# wpf itemtemplate

我正在尝试在项目模板中设置* 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>

1 个答案:

答案 0 :(得分:2)

重点是高度是Double数据类型,而不是GridLength,例如网格行和列。

只有GridLength支持星号。