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.
32 lines
2.1 KiB
32 lines
2.1 KiB
<Window x:Class="DyeingComputer.Windows.UserCall"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:DyeingComputer.Windows"
|
|
xmlns:lang="clr-namespace:DyeingComputer.Properties"
|
|
WindowStartupLocation="CenterScreen"
|
|
Loaded ="Window_Loaded"
|
|
ResizeMode="NoResize"
|
|
mc:Ignorable="d"
|
|
Title="SUNLIGHT 800" Height="400" Width="400">
|
|
<Grid>
|
|
<TextBox x:Name="INF_DATA" Margin="5,5,5,150" TextWrapping="Wrap" FontSize="30" IsReadOnly="True" />
|
|
|
|
<Image Height="100" Width="100" VerticalAlignment="Bottom" FlowDirection="LeftToRight"
|
|
HorizontalAlignment="Left" Margin="25,0,0,27" Source="/Lmage/FxemojiRingingbell.png"/>
|
|
<Image x:Name="NOT" Height="100" Width="100" VerticalAlignment="Bottom" FlowDirection="LeftToRight"
|
|
HorizontalAlignment="Left" Margin="25,0,0,27" Source="/Lmage/FxemojiBellcancellation.png"/>
|
|
<TextBox x:Name="TIME_" HorizontalAlignment="Right" Height="40" Margin="0,0,20,80"
|
|
TextWrapping="Wrap" VerticalAlignment="Bottom" Width="134" FontSize="30" IsReadOnly="True"
|
|
BorderBrush="{x:Null}" />
|
|
<TextBox HorizontalAlignment="Right" Height="40" Margin="0,0,150,80" Text="{x:Static lang:Resources.Time}"
|
|
TextWrapping="Wrap" VerticalAlignment="Bottom" Width="80" FontSize="25" IsReadOnly="True"
|
|
Background="{x:Null}" Foreground="Black" BorderBrush="{x:Null}" />
|
|
|
|
<Button Content="{x:Static lang:Resources.Muffling}" HorizontalAlignment="Right" Height="35" Margin="50,70,150,20"
|
|
VerticalAlignment="Bottom" Width="80" Click="Muffling_Click" Name="Muffling_"/>
|
|
<Button Content="{x:Static lang:Resources.YES}" HorizontalAlignment="Right" Height="35" Margin="50,70,20,20"
|
|
VerticalAlignment="Bottom" Width="80" Click="YES_Click"/>
|
|
</Grid>
|
|
</Window>
|
|
|