まだWPFをいじり、私が進むにつれて学んでいます。ここで、コントロールの動的グループ化(主にボタンですが、チェックボックスなどが含まれる場合があります)を構築しようとしています。
これを行うための最良の方法がわからなかったため、ItemsControlスタイルを作成してから、WrapPanel内のItemsPresenterに項目を追加しました。 ItemsHostとして配置しない限り、実際にはWrapPanel内にないため、ラップされないことにすぐに気付きました。このような:
<Style x:Key="ButtonPanelGroup" TargetType="{x:Type ItemsControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ItemsControl}">
<Border CornerRadius="5"
BorderBrush="{StaticResource DarkColorBrush}"
BorderThickness="1"
Margin="5">
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<WrapPanel IsItemsHost="True" FlowDirection="LeftToRight">
<ItemsPresenter />
</WrapPanel>
<ContentPresenter ContentSource="Name" Grid.Row="1" />
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
これは進行中の作業であり、まだ実装する必要のある多くのスタイリング効果があることに注意してください。ここで私はそれを使います:
<UniformGrid Rows="1">
<ItemsControl Name="Group1" Style="{StaticResource ButtonPanelGroup}">
<Button>Button1</Button>
<Button>Button2</Button>
<CheckBox>TickBox</CheckBox>
</ItemsControl>
<ItemsControl Name="Group2" Style="{StaticResource ButtonPanelGroup}">
<Button>Button3</Button>
<Button>Button4</Button>
<Button>Button5</Button>
</ItemsControl>
<ItemsControl Name="Group3" Style="{StaticResource ButtonPanelGroup}">
<Button>Button6</Button>
<Button>Button7</Button>
<Button>Button8</Button>
</ItemsControl>
</UniformGrid>
また、UniformGridはここに行く方法ではないので、まだ進行中の作業であり、マージンも面倒になる可能性があります(マージンが重複していないか?)。
今本当の問題に。これは機能しません。エラーが発生します。
「ItemsPresenter」オブジェクトは「WrapPanel」に追加できません。 ItemsControlのItemsPanelとして使用されるPanelのChildrenコレクションを明示的に変更することはできません。 ItemsControlはPanelの子要素を生成します。オブジェクト 'System.Windows.Controls.ItemsPresenter'でエラーが発生しました。
だから、このようなことをするための最良の方法は何ですか(ボタンやその他のコントロールをItemControlと実際のニースのラインナップに投げるだけでいいのですが)。コントロールをある種のコレクションに入れて繰り返すのが良いでしょう。
うまくやりたいのですが、私のWPFスキルはまだ不足しています。基本を超えて教え、プロが実際にそれを行う方法を示すWPF本はありますか?
ItemsPanel プロパティを確認することをお勧めします。
アイテムのレイアウトを制御するパネルを定義するテンプレートを取得または設定します。
例:
<ItemsControl>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
また、次のようにスタイルで設定できます。
<Style TargetType="ItemsControl">
<Setter Property="ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<WrapPanel />
</ItemsPanelTemplate>
</Setter.Value>
</Setter>
</Style>
手掛かりプロパティIsItemsHost = "True"の定義を忘れないでください。そうでない場合、ItemsControlはアイテムを表示しません。
<ListBox ItemsSource="{Binding MyItemsSource}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate >
<WrapPanel IsItemsHost="True"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ListBox>
ここに、遅いDataGrid/xceed datagridおよびWrapPanelソリューションのもう1つの簡単な代替方法があります。大量のデータまたはテーブル全体が編集のみの場合に役立つことがあります。 ItemsControl + Grid.IsSharedSizeScope = "True"の使用
詳細はこちら: https://wpf.2000things.com/tag/issharedsizescope/ +パフォーマンスのためのItemsControl仮想化: ItemsControlの仮想化?
<Grid Grid.IsSharedSizeScope="True" Margin="0,30,0,0">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition MinWidth="50" Width="Auto" SharedSizeGroup="Id" />
<ColumnDefinition MinWidth="50" Width="Auto" SharedSizeGroup="Time" />
</Grid.ColumnDefinitions>
<Border Grid.Column="0" >
<TextBlock VerticalAlignment="Center" TextWrapping="NoWrap" Text="Header1" />
</Border>
<Border Grid.Column="1" >
<TextBlock VerticalAlignment="Center" TextWrapping="NoWrap" Text="Header2" />
</Border>
</Grid>
<ItemsControl Grid.Row="1" ItemsSource="{Binding RunInstance.ConcentrationGradient.Steps}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition MinWidth="50" Width="Auto" SharedSizeGroup="Id" />
<ColumnDefinition MinWidth="50" Width="Auto" SharedSizeGroup="Time" />
</Grid.ColumnDefinitions>
<Border Grid.Column="0">
<TextBlock VerticalAlignment="Center" TextWrapping="NoWrap" Text="{Binding Index, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}" />
</Border>
<Border Grid.Column="1">
<TextBlock VerticalAlignment="Center" TextWrapping="NoWrap" Text="{Binding Time, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}" />
</Border>
</Grid>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Grid>