20240301_JSEQ_upperpc/JiangsuEarthquakeNow/JiangsuEarthquake/Views/UserControls/TextDialog.xaml
XuMin 3b6c570800 1 经过电控腔测试和升压站测试;
2 解决了后一个通信连接会影响前一个通信连接的问题;
3 测试过程中存在的问题修改;
2024-09-03 16:30:34 +08:00

28 lines
1.6 KiB
XML

<UserControl x:Class="JiangsuEarthquake.Views.UserControls.TextDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:JiangsuEarthquake.Views.UserControls"
xmlns:hc="https://handyorg.github.io/handycontrol"
mc:Ignorable="d"
Background="{DynamicResource RegionBrush}"
FontFamily="{StaticResource DigitalDisplay}"
Height="250"
Width="400">
<hc:SimplePanel>
<TextBlock Name="textBlock" Style="{StaticResource TextBlockLargeBold}"
Text="Please Wait..." TextWrapping="Wrap" Margin="0,0,0,20"
Foreground="White"/>
<!-- BtnClose.Command = ControlCommands.Close; -->
<!--<Button Width="24" Height="24" Style="{StaticResource ButtonIcon}"
Foreground="{DynamicResource PrimaryBrush}"
hc:IconElement.Geometry="{StaticResource ErrorGeometry}"
Padding="0" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="4"
Command="hc:ControlCommands.Close"/>-->
<Button Width="100" Height="40" Background="#2614273A" Foreground="White"
Content="OK" HorizontalAlignment="Center" VerticalAlignment="Bottom"
Margin="0,0,0,20" Command="hc:ControlCommands.Close"/>
</hc:SimplePanel>
</UserControl>