DataTrigger
プロパティで aを使用しようとしましたIsActive
が、機能しません。
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Window.Style>
<Style TargetType="{x:Type Window}">
<Setter Property="Title" Value="Active" />
<Style.Triggers>
<Trigger Property="IsActive" Value="False">
<Setter Property="Title" Value="Not active" />
</Trigger>
</Style.Triggers>
</Style>
</Window.Style>
<Grid>
</Grid>
</Window>
MSDN フォーラム (動作していると報告されている) で見つけたこのサンプル コードをテスト用に使用しなくなりましたが、動作しません。これはバグですか、それとも API の変更のようなものですか?