Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <Window x:Class="Bot.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="MainWindow" Height="432" Width="702" ContentRendered="Window_ContentRendered_1" ResizeMode="NoResize" WindowStyle="None" Background="#01000000">
- <Grid>
- <Rectangle Fill="#FF808080" Height="38" Stroke="#FF000000" Margin="4,4,3.5,0" StrokeThickness="0" VerticalAlignment="Top" />
- <Rectangle Name="rect_Titlebar" RadiusX="4" RadiusY="4" Fill="#FFD3D3D3" Stroke="#FF000000" StrokeThickness="0" Height="25" VerticalAlignment="Top" Margin="0,0,78,0" />
- <Rectangle Fill="#FFD3D3D3" Margin="0,27,0,0" Stroke="#FF000000" StrokeThickness="0" RadiusX="4" RadiusY="4" />
- <Rectangle Name="rect_Close" RadiusX="4" RadiusY="4" Stroke="#FF000000" StrokeThickness="0" Height="25" VerticalAlignment="Top" HorizontalAlignment="Right" Width="24">
- <Rectangle.Style>
- <Style TargetType="{x:Type Rectangle}">
- <Setter Property="Fill" Value="#FFD3D3D3" />
- <Style.Triggers>
- <Trigger Property="IsMouseOver" Value="True">
- <Setter Property="Fill" Value="#FFFF0000" />
- </Trigger>
- </Style.Triggers>
- </Style>
- </Rectangle.Style>
- </Rectangle>
- <Rectangle Name="rect_Maximize" RadiusX="4" RadiusY="4" Stroke="#FF000000" StrokeThickness="0" Height="25" VerticalAlignment="Top" Margin="0,0,26,0" HorizontalAlignment="Right" Width="24" MouseUp="rect_Maximize_MouseUp">
- <Rectangle.Style>
- <Style TargetType="{x:Type Rectangle}">
- <Setter Property="Fill" Value="#FFD3D3D3" />
- <Style.Triggers>
- <Trigger Property="IsMouseOver" Value="True">
- <Setter Property="Fill" Value="#FF0000FF" />
- </Trigger>
- </Style.Triggers>
- </Style>
- </Rectangle.Style>
- </Rectangle>
- <Rectangle Name="rect_Minimize" RadiusX="4" RadiusY="4" Stroke="#FF000000" StrokeThickness="0" Height="25" VerticalAlignment="Top" Margin="0,0,52,0" HorizontalAlignment="Right" Width="24">
- <Rectangle.Style>
- <Style TargetType="{x:Type Rectangle}">
- <Setter Property="Fill" Value="#FFD3D3D3" />
- <Style.Triggers>
- <Trigger Property="IsMouseOver" Value="True">
- <Setter Property="Fill" Value="#FF008000" />
- </Trigger>
- </Style.Triggers>
- </Style>
- </Rectangle.Style>
- </Rectangle>
- <TextBlock Name="txt_Titlebar" HorizontalAlignment="Left" Margin="197.368,1.367,0,0" TextWrapping="Wrap" Text="KIO Chat" VerticalAlignment="Top" TextBlock.FontSize="14" />
- </Grid>
- </Window>
Advertisement
Add Comment
Please, Sign In to add comment