我想创建一个窗口样式的自定义关闭按钮,它依赖于窗口的关闭命令。我写了这样的东西:
<Style x:Key="WindowsGeneralStyle" TargetType="Window">
...
<Setter Property="Template" >
<Setter.Value>
<ControlTemplate TargetType="{x:Type Window}">
<Grid>
...
<Button x:Name="closebtn" Command={Binding Close} ... />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
但它没有用。这是怎么做的?