20240801_FJEQ_upperpc/FujianEarthquake_seabed/FujianEarthquake/Views/UserControls/TextDialog.xaml
XuMin 9d9eebd854 海底部分上位机软件:
1 基本框架搭建完成;
2 日志记录展示页面完成;
3 实时数据展示页面和告警记录页面完成部分;
2024-08-22 17:45:36 +08:00

22 lines
1.2 KiB
XML

<UserControl x:Class="FujianEarthquake.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:FujianEarthquake.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"/>
<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>