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 に答える