123456789101112131415161718192021222324252627282930313233343536 |
- <Window x:Class="Flyinsono.Server.Deployment.Tool.ModalActionWindow"
- 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:extensions="clr-namespace:Flyinsono.Server.Deployment.Tool.Extensions"
- mc:Ignorable="d"
- Title="{Binding Title}"
- Background="Transparent"
- WindowStartupLocation="CenterOwner"
- ResizeMode="NoResize"
- WindowStyle="None"
- ShowInTaskbar="False"
- AllowsTransparency="True"
- Width="350"
- Height="150">
- <StackPanel Margin="10" >
- <StackPanel>
- <ProgressBar Style="{StaticResource progress-bar-info}"
- Visibility="{Binding IsBusy, Converter={extensions:BoolToVisibilityConverter}}"
- MinWidth="180"
- MinHeight="21"
- IsIndeterminate="True" />
- </StackPanel>
- <TextBlock Margin="7"
- Grid.Row="1" Text="{Binding Description}"
- FontWeight="SemiBold"
- Foreground="#ADD8E6"
- FontSize="20"
- TextWrapping="Wrap"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- />
- </StackPanel>
- </Window>
|