Skip to content

Commit

Permalink
Upload everything
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatDumbPan committed Nov 4, 2023
1 parent c8df50e commit 10286fd
Show file tree
Hide file tree
Showing 126 changed files with 34,001 additions and 0 deletions.
Binary file added .vs/JE3_Src/v16/.suo
Binary file not shown.
Binary file added .vs/JelloEditor/v16/.suo
Binary file not shown.
Binary file added .vs/JelloEditor_ClassicSrc/v16/.suo
Binary file not shown.
Binary file added .vs/JellyEditor3/v16/.suo
Binary file not shown.
3 changes: 3 additions & 0 deletions .vs/ProjectSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}
6 changes: 6 additions & 0 deletions .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"ExpandedNodes": [
""
],
"PreviewInSolutionExplorer": false
}
Binary file added .vs/slnx.sqlite
Binary file not shown.
162 changes: 162 additions & 0 deletions JelloEditor/About.Designer.cs

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

44 changes: 44 additions & 0 deletions JelloEditor/About.cs
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();
}
}
}
Loading

0 comments on commit 10286fd

Please sign in to comment.