You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
2.4 KiB
39 lines
2.4 KiB
<Window x:Class="KPlan.Forms.KBgWorker2"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
mc:Ignorable="d" Icon="/EPLAN.EplAddin.KPlan;component/Resources/logo_16.ico" Background="{x:Null}" Visibility="Visible" WindowStartupLocation="CenterOwner"
|
|
MouseDown="Window_MouseDown" Height="90" Width="288" FontFamily="Microsoft YaHei" Foreground="{x:Null}" TextOptions.TextFormattingMode="Display" AllowsTransparency="True" WindowStyle="None" ResizeMode="NoResize" Padding="0">
|
|
<!--<Window.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="KStyle.xaml"/>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Window.Resources>-->
|
|
<Grid Margin="0,0,-2,-2">
|
|
<Rectangle Fill="#FFFBFBFB" RadiusX="8" RadiusY="8" Margin="10,10,10,10">
|
|
<Rectangle.Effect>
|
|
<DropShadowEffect BlurRadius="10" ShadowDepth="-5" Opacity="0.8" Direction="0" Color="#FF303030"/>
|
|
</Rectangle.Effect>
|
|
</Rectangle>
|
|
<Label Name="lable" Content="正在执行:" HorizontalAlignment="Left" Margin="23,25,0,0" VerticalAlignment="Top"/>
|
|
<Grid Margin="23,20,23,0" Height="18" VerticalAlignment="Center">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
<ProgressBar Grid.Column="0" Name="progressBar" HorizontalAlignment="Stretch" Height="12" VerticalAlignment="Center"/>
|
|
<TextBlock Grid.Column="1" x:Name="tb_cancel" HorizontalAlignment="Center" TextAlignment="Center" TextWrapping="NoWrap" Width="30" VerticalAlignment="Center">
|
|
<Hyperlink Click="CancelWork">取消</Hyperlink>
|
|
</TextBlock>
|
|
</Grid>
|
|
|
|
<!--<ProgressBar Name="progressBar" HorizontalAlignment="Stretch" Height="12" Margin="23,50,23,0" VerticalAlignment="Top"/>
|
|
<TextBlock HorizontalAlignment="Right" Margin="0,47,23,0" TextWrapping="NoWrap" Visibility="Hidden" VerticalAlignment="Top">
|
|
<Hyperlink Click="CancelWork">取消</Hyperlink>
|
|
</TextBlock>-->
|
|
</Grid>
|
|
</Window>
|