前提・実現したいこと
XAMLでデータテーブルをItemSourceとした表があります。
特定の値の時に、色を付けるのはDataTrigerにて実現出来たのですが。
付与する色を固定ではなくBindingで指定しようとすると、うまく行きません。
Bindingを使いたい理由は、作成しているアプリではユーザー側のConfig設定で色を決定する為、
XAMLで直接色を指定するのではなく、処理内(C#)で色を指定したい為です。
以下ソースではForegroundColorはXAML側で色を指定している為、動作しますが、
BackgroundColorはBindingで指定している為、動作しないのです。
適切な方法がありましたらご教授頂けないでしょうか。
よろしくお願いいたします。
該当のソースコード
XAML
1<Window x:Class="WpfApplication1.Window1" 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 4 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 5 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 6 xmlns:local="clr-namespace:WpfApplication1" 7 mc:Ignorable="d" 8 Title="Window1" Height="450" Width="800"> 9 <Grid> 10 <DataGrid x:Name="DataGrid1" HorizontalAlignment="Left" Grid.Row="1"> 11 <DataGrid.ItemContainerStyle> 12 <Style TargetType="DataGridRow"> 13 <Style.Triggers> 14 <DataTrigger Binding="{Binding B}" Value="2"> 15 <Setter Property="Background" Value="{Binding Bkcol}" /> 16 <Setter Property="Foreground" Value="Aqua" /> 17 </DataTrigger> 18 </Style.Triggers> 19 </Style> 20 </DataGrid.ItemContainerStyle> 21 </DataGrid> 22 </Grid> 23</Window>
C#
1using System; 2using System.Data; 3using System.Windows; 4using System.Windows.Media; 5 6namespace WpfApplication1 7{ 8 public partial class Window1 : Window 9 { 10 public Window1() 11 { 12 InitializeComponent(); 13 14 Bkcol = new SolidColorBrush(Colors.Red); 15 16 DataTable dt = new DataTable(); 17 dt.Columns.Add("A", Type.GetType("System.String")); 18 dt.Columns.Add("B", Type.GetType("System.Int32")); 19 20 for (int i = 0; i < 4; i++) 21 dt.Rows.Add(i.ToString(), i); 22 23 this.DataGrid1.ItemsSource = dt.DefaultView; 24 } 25 26 public SolidColorBrush Bkcol { get; private set; } 27 } 28} 29
補足情報(FW/ツールのバージョンなど)
.NetFramework 4.5
回答1件
あなたの回答
tips
プレビュー