You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.7 KiB
Plaintext
36 lines
1.7 KiB
Plaintext
3 weeks ago
|
<Application x:Class="SocketExample.App"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:local="clr-namespace:SocketExample"
|
||
|
StartupUri="TCPWindowV2.xaml">
|
||
|
<Application.Resources>
|
||
|
<Style x:Key="BaseButtonStyle" TargetType="Button">
|
||
|
<Setter Property="Foreground" Value="White"/>
|
||
|
<Setter Property="FontWeight" Value="SemiBold"/>
|
||
|
<Setter Property="Padding" Value="8 5"/>
|
||
|
<Setter Property="Margin" Value="5"/>
|
||
|
<Setter Property="BorderThickness" Value="0"/>
|
||
|
<Setter Property="Cursor" Value="Hand"/>
|
||
|
<Setter Property="Template">
|
||
|
<Setter.Value>
|
||
|
<ControlTemplate TargetType="Button">
|
||
|
<Border x:Name="ButtonBorder" Background="{TemplateBinding Background}" CornerRadius="3">
|
||
|
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||
|
</Border>
|
||
|
<ControlTemplate.Triggers>
|
||
|
<Trigger Property="IsMouseOver" Value="True">
|
||
|
<Setter TargetName="ButtonBorder" Property="Opacity" Value="0.8"/>
|
||
|
</Trigger>
|
||
|
<Trigger Property="IsPressed" Value="True">
|
||
|
<Setter TargetName="ButtonBorder" Property="Opacity" Value="0.6"/>
|
||
|
</Trigger>
|
||
|
</ControlTemplate.Triggers>
|
||
|
</ControlTemplate>
|
||
|
</Setter.Value>
|
||
|
|
||
|
</Setter>
|
||
|
|
||
|
</Style>
|
||
|
</Application.Resources>
|
||
|
</Application>
|