C# contentcontrol中datatemplate的绑定后台

C# contentcontrol中datatemplate的绑定后台,c#,wpf,xaml,C#,Wpf,Xaml,我正在尝试绑定文本框的背景色并使用转换器。但是,由于TextBox位于DataTemplate和ContentControl中,我无法找出正确的绑定 除非我将绑定路径从path=StateColor设置为path=。 以下是xaml: <GridViewColumn Header="Value" Width="{Binding SelectedDeviceCol2, Source={x:Static properties:Settings.Default}, Mode=TwoWay}" &

我正在尝试绑定
文本框的背景色
并使用转换器。但是,由于
TextBox
位于
DataTemplate
ContentControl
中,我无法找出正确的绑定

除非我将绑定路径从
path=StateColor
设置为
path=。

以下是xaml:

<GridViewColumn Header="Value" Width="{Binding SelectedDeviceCol2, Source={x:Static properties:Settings.Default}, Mode=TwoWay}" >
<GridViewColumn.CellTemplate>
    <DataTemplate>
        <ContentControl Content="{Binding Path=Value, Mode=TwoWay}" IsEnabled="{Binding Path=ReadOnly, Converter={StaticResource readOnlyToEnabledConverter}}">
            <ContentControl.Resources>
                <DataTemplate DataType="{x:Type viewModels:VMDeviceCommand}">
                    <Button Content="{Binding Name}" Height="24" IsEnabled="True" Click="Button_Click_GetObjectProperty"/>
                </DataTemplate>
                <DataTemplate DataType="{x:Type System:DateTime}">
                    <DatePicker SelectedDate="{Binding Path=.}"
                            SelectedDateFormat="Short"
                            FirstDayOfWeek="Monday"  
                            IsTodayHighlighted="True" >
                    </DatePicker>
                </DataTemplate>
                <DataTemplate DataType="{x:Type System:String}">
                    <TextBox Text="{Binding Path=.}" TextChanged="TextBox_OnTextChanged">
                        <TextBox.Background>
                            <SolidColorBrush Color="{Binding RelativeSource={RelativeSource AncestorType=ContentControl}, Path=StateColor, Converter={StaticResource DebuggingConverter}}"/>
                        </TextBox.Background>
                    </TextBox>
                </DataTemplate>                 
                <DataTemplate DataType="{x:Type System:UInt16}">
                    <xctk:IntegerUpDown  Text="{Binding Path=.}" ValueChanged="UpDownBase_OnValueChanged" >
                    </xctk:IntegerUpDown>
                </DataTemplate>
                <DataTemplate DataType="{x:Type System:Boolean}">
                    <CheckBox IsChecked="{Binding Path=.}" Click="CheckBox_Click"/>
                </DataTemplate>
            </ContentControl.Resources>
        </ContentControl>
    </DataTemplate>
</GridViewColumn.CellTemplate>


ContentControl没有
StateColor
属性,因此绑定永远不会获取其值,也永远不会向转换器传递任何内容

如果ContentControl的DataContext具有
StateColor
属性,则很容易:

<SolidColorBrush 
    Color="{Binding DataContext.StateColor, RelativeSource={RelativeSource AncestorType=ContentControl}, Converter={StaticResource DebuggingConverter}}"
    />