Skip to content

Commit

Permalink
Update Form1.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
XAS-712 committed Mar 3, 2019
1 parent 784def2 commit b5053e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MifareOneTool/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ void default_rpt(object sender, ProgressChangedEventArgs e)
{
SaveFileDialog ofd = new SaveFileDialog();
ofd.AddExtension = true;
ofd.DefaultExt = ".mfd";
//ofd.DefaultExt = ".mfd";
ofd.Title = "请选择MFD文件保存位置及文件名";
ofd.OverwritePrompt = true;
ofd.Filter = "MFD文件|*.mfd|DUMP文件|*.dump";
ofd.Filter = "DUMP文件|*.dump|MFD文件|*.mfd";
if (File.Exists(omfd) && new FileInfo(omfd).Length > 1)
{
if (ofd.ShowDialog() == DialogResult.OK)
Expand Down

0 comments on commit b5053e2

Please sign in to comment.