17 lines
873 B
Plaintext
17 lines
873 B
Plaintext
|
|
<Window x:Class="Common.TipMessageWindow"
|
||
|
|
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
xmlns:local="clr-namespace:Common"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
WindowStartupLocation="CenterScreen" Topmost="True" WindowStyle="None"
|
||
|
|
Height="250" Width="480">
|
||
|
|
<Grid>
|
||
|
|
<StackPanel Margin="20,10">
|
||
|
|
<TextBlock x:Name="MessageTextBlock" HorizontalAlignment="Center" FontSize="16" Height="80" Width="400" TextWrapping="Wrap" TextAlignment="Left" Margin="0,40,0,20" />
|
||
|
|
<ProgressBar IsIndeterminate="True" Height="30" Width="320" Margin="20"/>
|
||
|
|
</StackPanel>
|
||
|
|
</Grid>
|
||
|
|
</Window>
|