Skip to content

Commit d324813

Browse files
committed
恢复 MD5 查找功能
1 parent eda521f commit d324813

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/MainWindow.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
<CheckBox Name="ChkFileName" Foreground="{DynamicResource FontForeground}" Margin="0,2,0,5">文件名</CheckBox>
111111
<CheckBox Name="ChkFileSize" Foreground="{DynamicResource FontForeground}" Margin="0,0,0,5">文件大小</CheckBox>
112112
<CheckBox Name="ChkFileLastWriteTimeUtc" Foreground="{DynamicResource FontForeground}" Margin="0,0,0,5">文件修改时间</CheckBox>
113-
<CheckBox Name="ChkMD5" Click="ChkMD5_Click" Foreground="{DynamicResource FontForeground}">MD5(速度慢,准确性高)</CheckBox>
113+
<CheckBox Name="ChkMD5" Foreground="{DynamicResource FontForeground}">MD5(速度慢,准确性高)</CheckBox>
114114
</StackPanel>
115115
</Border>
116116
</Grid>

src/MainWindow.xaml.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -672,10 +672,5 @@ private void ChkOnlyFileName_Unchecked(object sender, RoutedEventArgs e)
672672
TxtOnlyFileNames.IsEnabled = false;
673673
}
674674

675-
private void ChkMD5_Click(object sender, RoutedEventArgs e)
676-
{
677-
ChkMD5.IsChecked = false;
678-
MessageBox.Show("改功能暂不可用", "重复文件查找", MessageBoxButton.OK, MessageBoxImage.Warning);
679-
}
680675
}
681676
}

0 commit comments

Comments
 (0)