1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| <Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
WindowStyle="None"
AllowsTransparency="True"
Background="Transparent"
Height="350" Width="525">
<Border CornerRadius="10" Background="White">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="5">
<Button x:Name="btReduce" Click="btReduce_Click" Margin="0,0,5,0">
<Button.Template>
<ControlTemplate>
<Image Source="reduce.png" Width="16" Height="17" />
</ControlTemplate>
</Button.Template>
</Button>
<Button x:Name="btClose" Click="btClose_Click">
<Button.Template>
<ControlTemplate>
<Image Source="close.png" Width="16" Height="17" />
</ControlTemplate>
</Button.Template>
</Button>
</StackPanel>
</Grid>
</Border>
</Window> |
Partager