5

我有一个返回真或假的方法。

我希望将此方法绑定到我的 DataTrigger

       <DataGrid ItemsSource="{Binding Source={StaticResource SmsData}, XPath=conv/sms}">
        <DataGrid.RowStyle>
            <Style TargetType="{x:Type  DataGridRow}">
                <Style.Triggers>
                    <DataTrigger Binding="{Binding Path=check}" Value="true">
                        <Setter Property="Foreground" Value="Black" />
                        <Setter Property="Background" Value="Blue" />
                    </DataTrigger>
                </Style.Triggers>
            </Style>
        </DataGrid.RowStyle>
    </DataGrid>

如果返回值为“true”,则执行 setter ...

我的代码:

public MainWindow()
{
    DataContext = this;
    InitializeComponent();
}


public string check
{
    get
    {
       return "true";
    }
}

我怎样才能得到这个工作?我现在收到一个错误(在运行时,而不是让我的程序崩溃):BindingExpression 路径错误:在 'object' ''XmlElement' 上找不到 'check' 属性

4

1 回答 1

4

RowStyle 的 DataContext 是 DataGrid 的 ItemsSource 中的一项。在您的情况下,这是一个 XMLElement。要绑定到DataGrid的DataContext,必须通过ElementName引用DataGrid,Path就是元素的DataContext。像这样:

   <DataGrid Name="grid" ItemsSource="{Binding ... 
    <DataGrid.RowStyle>
        <Style TargetType="{x:Type DataGridRow}">
            <Style.Triggers>
                <DataTrigger Binding="{Binding ElementName=grid, Path=DataContext.check}" Value="true">
                    <Setter Property="Foreground" Value="Black" />
                    <Setter Property="Background" Value="Blue" />
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </DataGrid.RowStyle>
</DataGrid>
于 2012-12-19T15:33:00.537 回答