-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c8df50e
commit 10286fd
Showing
126 changed files
with
34,001 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"CurrentProjectSetting": null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"ExpandedNodes": [ | ||
"" | ||
], | ||
"PreviewInSolutionExplorer": false | ||
} |
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Data; | ||
using System.Drawing; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Windows.Forms; | ||
|
||
namespace JelloEditor | ||
{ | ||
public partial class About : Form | ||
{ | ||
public About() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
System.Diagnostics.Process.Start("https://www.walaber.com/"); | ||
} | ||
|
||
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
System.Diagnostics.Process.Start("https://www.adamenglish.net/"); | ||
} | ||
|
||
private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
System.Diagnostics.Process.Start("https://www.meloncarrot.tk/"); | ||
} | ||
|
||
private void linkLabel4_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
System.Diagnostics.Process.Start("https://www.datacenter.pangit.net/DOCS/JE3/"); | ||
} | ||
|
||
private void button1_Click(object sender, EventArgs e) | ||
{ | ||
this.Hide(); | ||
} | ||
} | ||
} |
Oops, something went wrong.