1
我試圖在IsActive
屬性上使用DataTrigger
,但它不起作用。IsActive的DataTrigger不起作用
<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更改?