11 changed files with 129 additions and 2 deletions
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 4.3 KiB |
@ -0,0 +1,31 @@ |
|||||
|
<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" |
||||
|
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> |
@ -0,0 +1,66 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Data; |
||||
|
using System.Drawing; |
||||
|
using System.Linq; |
||||
|
using System.Net; |
||||
|
using System.Text; |
||||
|
using System.Threading.Tasks; |
||||
|
using System.Windows; |
||||
|
using System.Windows.Controls; |
||||
|
using System.Windows.Data; |
||||
|
using System.Windows.Documents; |
||||
|
using System.Windows.Input; |
||||
|
using System.Windows.Markup; |
||||
|
using System.Windows.Media; |
||||
|
using System.Windows.Media.Animation; |
||||
|
using System.Windows.Media.Imaging; |
||||
|
using System.Windows.Shapes; |
||||
|
using System.Windows.Threading; |
||||
|
using System.Xml.Linq; |
||||
|
using static DyeingComputer.UserClass.SqliteHelper; |
||||
|
using static DyeingComputer.Windows.ViewStep; |
||||
|
|
||||
|
namespace DyeingComputer.Windows |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// ViewProgram.xaml 的交互逻辑
|
||||
|
/// </summary>
|
||||
|
public partial class UserCall : Window |
||||
|
{ |
||||
|
DateTime times = DateTime.Now; |
||||
|
TimeSpan timeSpan5=new TimeSpan(0,0,0,5); |
||||
|
|
||||
|
public UserCall() |
||||
|
{ |
||||
|
InitializeComponent(); |
||||
|
NOT.Visibility =Visibility.Collapsed; |
||||
|
Muffling_.IsEnabled = false; |
||||
|
|
||||
|
DispatcherTimer disTimer = new DispatcherTimer |
||||
|
{ |
||||
|
Interval = TimeSpan.FromMilliseconds(950) //毫秒
|
||||
|
}; |
||||
|
disTimer.Tick += DisTimer_1S; |
||||
|
disTimer.Start();//计时开始
|
||||
|
} |
||||
|
void DisTimer_1S(object sender, EventArgs e) |
||||
|
{ |
||||
|
TimeSpan timeSpan = DateTime.Now - times; |
||||
|
TIME_.Text = timeSpan.ToString(@"hh\:mm\:ss"); |
||||
|
|
||||
|
if (timeSpan>timeSpan5) Muffling_.IsEnabled=true;//5秒后允许禁英
|
||||
|
} |
||||
|
|
||||
|
private void YES_Click(object sender, RoutedEventArgs e)//确认
|
||||
|
{ |
||||
|
this.Close(); //关闭窗口
|
||||
|
} |
||||
|
|
||||
|
private void Muffling_Click(object sender, RoutedEventArgs e)//
|
||||
|
{ |
||||
|
NOT.Visibility = Visibility.Visible; |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
} |
Loading…
Reference in new issue