You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.9 KiB
35 lines
1.9 KiB
<UserControl x:Class="WhackerLinkConsoleV2.Controls.AlertTone"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Height="55" Width="105"
|
|
MouseLeftButtonDown="AlertTone_MouseLeftButtonDown"
|
|
MouseMove="AlertTone_MouseMove"
|
|
MouseRightButtonDown="AlertTone_MouseRightButtonDown"
|
|
DataContext="{Binding RelativeSource={RelativeSource Self}}" Background="#FF848484">
|
|
<Grid Margin="1,1,1,1" Background="#FF00BC48">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="31*"/>
|
|
<RowDefinition Height="39*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Button Click="PlayAlert_Click" VerticalContentAlignment="Bottom" HorizontalAlignment="Left" Margin="46,21,0,0" VerticalAlignment="Top" Height="28" Width="48" BorderBrush="#FFC1C1C1" BorderThickness="1,1,1,1" FontSize="10" FontFamily="Arial" Grid.RowSpan="2">
|
|
<Button.Resources>
|
|
<Style TargetType="{x:Type Border}">
|
|
<Setter Property="CornerRadius" Value="2"/>
|
|
</Style>
|
|
</Button.Resources>
|
|
<Button.Background>
|
|
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
<GradientStop Color="#FFF0F0F0" Offset="0.485"/>
|
|
<GradientStop Color="#FFE3E3E3" Offset="0.517"/>
|
|
</LinearGradientBrush>
|
|
</Button.Background>
|
|
<Image Height="40" Width="63" Source="/page.png" Margin="0,-8,0,0"/>
|
|
</Button>
|
|
<TextBox HorizontalAlignment="Center" FontWeight="Bold" FontSize="10" TextWrapping="Wrap" Text="{Binding AlertFileName}" TextAlignment="Center" VerticalAlignment="Top" Width="100" Background="{x:Null}" BorderThickness="0,0,0,0" Height="24" Margin="0,4,0,0" Grid.RowSpan="2" TextChanged="TextBox_TextChanged" Foreground="White"/>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|
|
|