Skip to content

Commit

Permalink
[+] About tab page
Browse files Browse the repository at this point in the history
  • Loading branch information
huiyadanli committed Oct 5, 2017
1 parent 17ce6c8 commit 7830ed9
Show file tree
Hide file tree
Showing 9 changed files with 107 additions and 191 deletions.
46 changes: 13 additions & 33 deletions PasteEx/FormSetting.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions PasteEx/FormSetting.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ private void Set()
private void FormSetting_Load(object sender, EventArgs e)
{
Get();

// About Tab Page
linkLabel1.Links.Add(28, 10, @"https://huiyadanli.github.io/");
linkLabel1.Links.Add(53, 6, @"https://github.com/huiyadanli/PasteEx/issues");
linkLabel1.Links.Add(81, 18, @"mailto:huiyadanli@126.com");
}

[Obsolete]
Expand Down Expand Up @@ -126,5 +131,10 @@ private void txtAutoExtRuleValidate(object sender, EventArgs e)
lblTipError.Visible = true;
}
}

private void linkLabels_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start(e.Link.LinkData as string);
}
}
}
Loading

0 comments on commit 7830ed9

Please sign in to comment.