1234567891011121314151617181920212223242526272829 |
- <UserControl
- x:Class="ShakerManger.View.ProgressView"
- 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:ShakerManger.View"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:vm="clr-namespace:ShakerManger.ViewModel"
- d:DataContext="{d:DesignInstance {x:Type vm:ProgressViewModel}}"
- d:DesignHeight="450"
- d:DesignWidth="800"
- DataContext="{Binding Source={x:Static vm:ProgressViewModel.Default}}"
- mc:Ignorable="d">
- <StackPanel
- Width="620"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Orientation="Vertical">
- <ProgressBar
- Height="32"
- FontSize="24"
- Foreground="{StaticResource ButtonNomalColor}"
- Value="{Binding Progress}" />
- <TextBlock
- FontSize="24"
- Foreground="Black"
- Text="{Binding Message}" />
- </StackPanel>
- </UserControl>
|