-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBatchReplaceWindow.xaml
26 lines (21 loc) · 1.15 KB
/
BatchReplaceWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Window x:Class="FileManagementApp.BatchReplaceWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:FileManagementApp"
Title="Replace" Height="400" Width="350">
<Grid>
<StackPanel Margin="20">
<TextBlock Text="旧学校名称:" Margin="0,0,0,5"/>
<TextBox x:Name="TxtOldSchoolName" Margin="0,0,0,25"/>
<TextBlock Text="新学校名称:" Margin="0,0,0,5"/>
<TextBox x:Name="TxtNewSchoolName" Margin="0,0,0,25"/>
<TextBlock Text="旧日期:" Margin="0,0,0,5"/>
<TextBox x:Name="TxtOldDate" Margin="0,0,0,25"/>
<TextBlock Text="新出库日期:" Margin="0,0,0,5"/>
<TextBox x:Name="TxtNewDate" Margin="0,0,0,25"/>
<Button Content="开始替换" Click="BtnStartReplace_Click" Width="100" Height="30" HorizontalAlignment="Center" Margin="0,0,0,10"/>
<ProgressBar x:Name="ProgressBar" Height="20" Minimum="0" Maximum="100" Value="0"/>
<!-- 进度条 -->
</StackPanel>
</Grid>
</Window>