28 lines
1.6 KiB
XML
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>
|