MoS2/Framework/MECF.Framework.UI.Client/ClientBase/Dialog/LoginRequestWaitDialog.xaml
2026-08-19 14:26:19 +08:00

65 lines
2.3 KiB
XML

<Window
x:Class="MECF.Framework.UI.Client.ClientBase.Dialog.LoginRequestWaitDialog"
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:local="clr-namespace:MECF.Framework.UI.Client.ClientBase.Dialog"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Width="400"
Height="220"
d:Background="White"
ResizeMode="NoResize"
WindowStartupLocation="CenterScreen"
mc:Ignorable="d">
<!--<WindowChrome.WindowChrome>
<WindowChrome ResizeBorderThickness="0" CaptionHeight="0"/>
</WindowChrome.WindowChrome>
<Window.Effect>
<DropShadowEffect Color="Gray" BlurRadius="10" Direction="-90" RenderingBias="Quality" ShadowDepth="4"/>
</Window.Effect>-->
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="5" />
<RowDefinition />
</Grid.RowDefinitions>
<Border Background="{StaticResource Color_BG_TopStrip}" />
<Grid Grid.Row="1">
<Grid.RowDefinitions>
<RowDefinition Height="50" />
<RowDefinition />
<RowDefinition Height="70" />
</Grid.RowDefinitions>
<TextBlock
HorizontalAlignment="Center"
VerticalAlignment="Center"
FontSize="24"
Text="Wait Confirmation" />
<StackPanel
Grid.Row="1"
Margin="20,0"
HorizontalAlignment="Center">
<TextBlock
HorizontalAlignment="Center"
VerticalAlignment="Center"
FontSize="14"
Text="The account had already logged in somewhere, please wait for confirmation ..."
TextWrapping="Wrap" />
</StackPanel>
<Button
x:Name="BtnCancel"
Grid.Row="2"
Width="120"
Height="30"
Margin="0,0,5,0"
VerticalAlignment="Center"
Click="BtnCancel_OnClick"
Content="Cancel"
IsCancel="True" />
</Grid>
</Grid>
</Window>