Newer
Older
Correlator / Correlator / Dialog / LoadingDialog.xaml
<Window
    x:Class="Correlator.Dialog.LoadingDialog"
    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"
    Title="相关仪"
    Width="400"
    Height="120"
    Background="White"
    ResizeMode="NoResize"
    ShowInTaskbar="False"
    WindowStartupLocation="CenterOwner"
    mc:Ignorable="d">

    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition />
            <RowDefinition Height="Auto" />
        </Grid.RowDefinitions>

        <TextBlock
            Grid.Row="0"
            Margin="10"
            FontSize="16"
            Text="数据计算中,请稍后......" />

        <ProgressBar
            Grid.Row="1"
            Margin="10"
            IsIndeterminate="True"
            Style="{StaticResource ProgressBarPrimaryStripe}" />
    </Grid>
</Window>