以下のコードに示すように、2つのComboBoxをレイアウトパネル内に追加しようとしています。XAML - LayoutPanelプロパティ 'Content'が複数回設定されています
私はエラーが発生しました。「プロパティ 'Content'が複数回設定されています」。レイアウト内に2つのコンボボックスを追加するにはどうすればよいですか?
<!--User Control Layout-->
<dxdo:LayoutGroup x:Name="LayoutGroupTopLevel">
<dxdo:LayoutGroup x:Name="GridViews" ItemWidth="1*" Orientation="Vertical" AllowClose="True" AllowDock="True" AllowFloat="True" AllowHide="True">
<dxdo:LayoutPanel x:Name="Layers" Caption="User Control" ItemHeight="1*">
<dxdo:LayoutGroup>
<dxlc:LayoutItem Label="Plan Type">
<dxe:ComboBoxEdit Height="25" VerticalAlignment="Top" Width="200" Name="BoxEdit">
<dxe:ComboBoxEditItem Content="3 month"/>
<dxe:ComboBoxEditItem Content="2 year"/>
</dxe:ComboBoxEdit>
</dxlc:LayoutItem>
<dxlc:LayoutItem Label="Site">
<dxe:ComboBoxEdit Height="25" VerticalAlignment="Top" Width="200" Name="BoxEdit1"/>
</dxlc:LayoutItem>
</dxdo:LayoutGroup>
</dxdo:LayoutPanel>
<dxdo:LayoutPanel x:Name="LayoutPanel" Caption="Properties" ItemHeight="1*">
<dxlc:LayoutItem Label="Site">
<dxe:ComboBoxEdit Height="25" VerticalAlignment="Stretch" Width="200" Name="ComboBoxEdit"/>
<dxe:ComboBoxEdit Height="25" VerticalAlignment="Stretch" Width="200" Name="ComboBoxEdit1"/>
</dxlc:LayoutItem>
</dxdo:LayoutPanel>
</dxdo:LayoutGroup>
誰でも私が間違っていることを指摘できますか?
私は、コードを変更し、私も上にそれを編集しました。しかし、私はまだこのエラーが発生します - "タイプ 'LayoutItem'の値は、 'BaseLayoutItemCollection'タイプのコレクションまたはディクショナリに追加できません。 – Dazzler
はい私はDevExpress WPFコントロールスイートを使用しています。 – Dazzler
ありがとう、魅力的に働いた:) – Dazzler