Skip to content

Commit 0b1d090

Browse files
committed
V3.5: 增加复制文件大小限制;修改开机启动交互逻辑;允许在复制时停止操作
1 parent d1ffb25 commit 0b1d090

31 files changed

+728
-94
lines changed

USBCopyer/Donate.Designer.cs

Lines changed: 209 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

USBCopyer/Donate.cs

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Data;
5+
using System.Diagnostics;
6+
using System.Drawing;
7+
using System.Linq;
8+
using System.Text;
9+
using System.Windows.Forms;
10+
11+
namespace USBCopyer
12+
{
13+
public partial class donateForm : Form
14+
{
15+
public donateForm()
16+
{
17+
InitializeComponent();
18+
Icon = Program.ico;
19+
}
20+
21+
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
22+
{
23+
try
24+
{
25+
Process.Start("explorer.exe", "\"https://github.com/kenvix/USBCopyer\"");
26+
}
27+
catch (Exception ex)
28+
{
29+
MessageBox.Show("打开失败:" + ex.ToString());
30+
}
31+
}
32+
}
33+
}

0 commit comments

Comments
 (0)