アイテム テンプレートで * 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>