カスタム UserControl を作成しました。カスタム依存関係プロパティがあります。スタイルには、そのプロパティを使用するデータ トリガーがあります。フォームが読み込まれると、ExpectsFunction.get() が 2 回呼び出されます。次に、ExpectsFunction を外部で true に設定します。セッターにブレークポイントを設定すると、SetValue が適切に呼び出され、プロパティ ExpectsFunction が「true」になることがわかります。ただし、DataTrigger は変更に反応していないようです。追加のイベントを実装する必要がありますか、それとも INotifyPropertyChanged を実装し、DependencyProperty のコールバックから手動で PropertyChanged をトリガーする必要がありますか? DataTrigger が DependencyProperty をサブスクライブすると思っていましたが、そうではないようです :/
public partial class MatlabScriptSettings : UserControl
{
public static readonly DependencyProperty ExpectsFunctionProperty =
DependencyProperty.Register("ExpectsFunctionProperty", typeof(bool), typeof(MatlabScriptSettings), new PropertyMetadata(false));
public bool ExpectsFunction
{
get
{
return (bool)GetValue(ExpectsFunctionProperty);
}
set
{
SetValue(ExpectsFunctionProperty, value);
}
}
}
<UserControl x:Class="PlatformManager.UI.Configuration.MatlabScriptSettings"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="400" d:DesignWidth="350"
x:Name="_this">
<UserControl.Resources>
<Style x:Key="ArgumentsStyle" TargetType="{x:Type TextBox}">
<Style.Triggers>
<DataTrigger Binding="{Binding ElementName=_this, Path=ExpectsFunction}" Value="True">
<Setter Property="IsReadOnly" Value="False" />
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlLightLightBrushKey}}" />
</DataTrigger>
<DataTrigger Binding="{Binding ElementName=_this, Path=ExpectsFunction}" Value="False">
<Setter Property="IsReadOnly" Value="True" />
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlLightBrushKey}}" />
</DataTrigger>
</Style.Triggers>
</Style>
</UserControl.Resources>
...
<TextBox Name="ScriptArguments" Grid.Row="1" Grid.Column="1" VerticalAlignment="Center" Margin="5,5,0,0" Text="{Binding Path=ScriptArguments}" Style="{StaticResource ResourceKey=ArgumentsStyle}" />
...
ありがとう!