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