33 lines
1.8 KiB
Plaintext
33 lines
1.8 KiB
Plaintext
|
|
<controls:MaterialWindow x:Class="Szmedi.RevitToolkit.Approval.Controls.ProgressWrapper.ProgressMonitorView"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:controls="clr-namespace:Szmedi.RevitToolkit.Approval.Controls"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
xmlns:wrap="clr-namespace:Szmedi.RevitToolkit.Approval.Controls.ProgressWrapper"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
Width="350"
|
||
|
|
Height="150"
|
||
|
|
WindowStyle="None"
|
||
|
|
d:DataContext="{d:DesignInstance Type=wrap:ProgressMonitorViewModel}"
|
||
|
|
ResizeMode="NoResize"
|
||
|
|
Style="{DynamicResource SZMEDIWindowStyle}"
|
||
|
|
Title="{Binding Title}"
|
||
|
|
WindowStartupLocation="CenterScreen">
|
||
|
|
<controls:MaterialWindow.Resources>
|
||
|
|
<ResourceDictionary Source="pack://application:,,,/Szmedi.RevitToolkit.Approval;component/SZMEDIResources.xaml" />
|
||
|
|
</controls:MaterialWindow.Resources>
|
||
|
|
<StackPanel Margin="10">
|
||
|
|
<TextBlock Text="{Binding CurrentContext}" />
|
||
|
|
<Separator />
|
||
|
|
<ProgressBar Width="300"
|
||
|
|
Height="23"
|
||
|
|
Value="{Binding CurrentValue}"
|
||
|
|
Maximum="{Binding MaxValue}" />
|
||
|
|
<Separator />
|
||
|
|
<Button x:Name="btnCancel"
|
||
|
|
HorizontalAlignment="Right"
|
||
|
|
Content="取消"
|
||
|
|
IsCancel="True" />
|
||
|
|
</StackPanel>
|
||
|
|
</controls:MaterialWindow>
|