update img & repo url

This commit is contained in:
huiyadanli
2019-07-22 21:36:48 +08:00
parent b935a96bf9
commit c2edab4ba4
5 changed files with 24 additions and 3 deletions

View File

@@ -96,6 +96,7 @@
this.linkLabel1.TabIndex = 7;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "GitHub";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// btnRestore
//

View File

@@ -113,5 +113,10 @@ namespace RevokeMsgPatcher
}
btnRestore.Enabled = File.Exists(patcher.BakPath);
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/huiyadanli/RevokeMsgPatcher");
}
}
}