我想爲我的應用程序創建一個自定義標題欄。我不知道如何添加窗口最大化或最小化圖標到按鈕。我希望我的圖標Ø類似於此WPF如何獲得最大化/最小化按鈕圖標 - 自定義標題欄
這裏是我的我的按鈕XAML
<Button Command="{x:Static SystemCommands.MaximizeWindowCommand}" Content="+" Canvas.Left="1020" Height="30" Width="30">
<Button.Style>
<Style TargetType="{x:Type Button}">
<Setter Property="Background" Value="Black"/>
<Setter Property="TextBlock.Foreground" Value="White"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border Background="{TemplateBinding Background}">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#403c47"/>
</Trigger>
</Style.Triggers>
</Style>
</Button.Style>
</Button>
<Button Command="{x:Static SystemCommands.MinimizeWindowCommand}" Content="" Canvas.Left="990" Height="30" Width="30" >
<Button.Style>
<Style TargetType="{x:Type Button}">
<Setter Property="Background" Value="Black"/>
<Setter Property="TextBlock.Foreground" Value="White"/>
<Setter Property="FontSize" Value="24"/>
<Setter Property="TextBlock.LineHeight" Value="5"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border Background="{TemplateBinding Background}">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#403c47"/>
</Trigger>
</Style.Triggers>
</Style>
</Button.Style>
</Button>
任何援助表示讚賞:)
只是得到一些不錯的圖標/圖片,並使用圖像元素爲您的按鈕內容 – Carsten
我不想使用圖標/圖片時,已經有一個內置到窗口。 –
爲什麼你不只是使用一個窗口呢? – Noctis