Skip to content

Commit

Permalink
fix: 关于->查看最新版本 报错
Browse files Browse the repository at this point in the history
  • Loading branch information
nopdan committed Oct 20, 2024
1 parent 159ca58 commit 30a67ea
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/IME WL Converter Win/Forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -474,13 +474,18 @@ private void ToolStripMenuItemChineseTransConfig_Click(object sender, EventArgs

private void ToolStripMenuItemAccessWebSite_Click(object sender, EventArgs e)
{
Process.Start("https://github.com/studyzy/imewlconverter/releases");
Process.Start(
new ProcessStartInfo("https://github.com/studyzy/imewlconverter/releases")
{
UseShellExecute = true
}
);
}

private void ToolStripMenuItemDonate_Click(object sender, EventArgs e)
{
new DonateForm().ShowDialog();
//Process.Start("https://github.com/studyzy/imewlconverter/wiki/Donate");
//Process.Start(new ProcessStartInfo"https://github.com/studyzy/imewlconverter/wiki/Donate") { UseShellExecute = true });
}

private void btnAbout_Click(object sender, EventArgs e)
Expand Down

0 comments on commit 30a67ea

Please sign in to comment.