0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【WPF】DataTemplate.TriggerでAlternationIndexを動的に設定した件

Last updated at Posted at 2022-05-18

やりたいこと

タイトルにあるようにItemsControlのDataTemplateにAlternationIndexを条件としたTriggerをセットした。

View.xaml
            <ItemsControl
                AlternationCount="{x:Static s:Int32.MaxValue}"
                ItemsSource="{Binding List}">
                <ItemsControl.ItemTemplate>
                    <DataTemplate>
                        <Label
                            x:Name="label"
                            Content="{Binding Text, Mode=TwoWay}"/>
                        <DataTemplate.Triggers>
                            <Trigger Property="ItemsControl.AlternationIndex" Value="5">
                                <Setter TargetName="label" Property="Foreground" Value="black" />
                            </Trigger>
                        </DataTemplate.Triggers>
                    </DataTemplate>
                </ItemsControl.ItemTemplate>
            </ItemsControl>

スクリーンショット 2022-05-18 160953.jpg
AlternationIndexを条件にすることで、Valueで設定したItemだけプロパティを設定できる。このValueを動的にしたい。。

試行錯誤の結果

Xaml上ではうまくいかず。。
DataTemplateをコードビハインドにすべて移すことでなんとかなった。

View.xaml.cs
                //Trigger作成
                var trigger = new Trigger();
                trigger.Property = ItemsControl.AlternationIndexProperty;
                trigger.Value = value;//ここをコードビハインドで設定できる
                trigger.Setters.Add(new Setter(Label.ForegroundProperty, new SolidColorBrush(Colors.Black), "label1"));

                //Labelコントロールのフレームワークを作成
                var label = new FrameworkElementFactory(typeof(Label));
                Binding binding = new Binding("Text");
                label.SetBinding(Label.ContentProperty, binding);
                label.Name = "label1";

                //TriggerとLabelをDataTemplateにセット
                var dataTemplate = new DataTemplate(typeof(ItemsControl));
                dataTemplate.VisualTree = label;
                dataTemplate.Triggers.Add(trigger);
                Items.ItemTemplate = dataTemplate;

Xamlのみで完結できる方法探してます。。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?