22 lines
1.2 KiB
XML
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>
|