我试图DataTrigger
在IsActive
属性上使用 a 但它不起作用。
<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 更改的东西?