-
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.
Showing
60 changed files
with
1,629 additions
and
544,843 deletions.
There are no files selected for viewing
Binary file added
BIN
+773 KB
.vs/Nexus Launcher/FileContentIndex/1883c6b1-b0ca-4b7a-ab33-cf6824c86379.vsidx
Binary file not shown.
Binary file removed
BIN
-18.7 KB
.vs/Nexus Launcher/FileContentIndex/3e04019b-4712-4d68-88c3-241a64233356.vsidx
Binary file not shown.
Binary file added
BIN
+21.2 KB
.vs/Nexus Launcher/FileContentIndex/66f26e3b-7590-4abb-9a30-afed4eb93db9.vsidx
Binary file not shown.
Binary file added
BIN
+958 KB
.vs/Nexus Launcher/FileContentIndex/7e0ecd20-23ad-476a-9f99-2285f3df1d57.vsidx
Binary file not shown.
Binary file added
BIN
+320 KB
.vs/Nexus Launcher/FileContentIndex/80d1abde-cd70-405a-a567-179b91272d69.vsidx
Binary file not shown.
Binary file removed
BIN
-10.2 KB
.vs/Nexus Launcher/FileContentIndex/8c2eea45-51cb-459e-9b62-993dc70097f0.vsidx
Binary file not shown.
Binary file removed
BIN
-958 KB
.vs/Nexus Launcher/FileContentIndex/b2e1db2b-50ed-4956-9058-aff7a1e7d410.vsidx
Binary file not shown.
Binary file removed
BIN
-773 KB
.vs/Nexus Launcher/FileContentIndex/ccd6d669-4243-4c01-8b10-511917bfa7ca.vsidx
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,100 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Data; | ||
using System.Drawing; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Documents; | ||
using System.Windows.Forms; | ||
using Nexus_Launcher.Screens; | ||
|
||
namespace Nexus_Launcher | ||
{ | ||
public partial class DebugForm : Form | ||
{ | ||
public DebugForm() | ||
{ | ||
InitializeComponent(); | ||
LoadDefaultPage(new UpdatesPage()); | ||
} | ||
|
||
private void LoadDefaultPage(UserControl page) | ||
{ | ||
panelContent.Controls.Clear(); | ||
page.Dock = DockStyle.Fill; | ||
panelContent.Controls.Add(page); | ||
} | ||
|
||
private void label1_Click(object sender, EventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void label2_Click(object sender, EventArgs e) | ||
{ | ||
Close(); | ||
} | ||
|
||
private void label3_Click(object sender, EventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void panel1_Paint(object sender, PaintEventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void label3_Click_1(object sender, EventArgs e) | ||
{ | ||
LoadDefaultPage(new LaunchPage()); | ||
} | ||
|
||
private void label4_Click(object sender, EventArgs e) | ||
{ | ||
LoadDefaultPage(new SettingsPage()); | ||
} | ||
|
||
private void label5_Click(object sender, EventArgs e) | ||
{ | ||
LoadDefaultPage(new LoginPage()); | ||
} | ||
|
||
private void label6_Click(object sender, EventArgs e) | ||
{ | ||
LoadDefaultPage(new UpdatesPage()); | ||
} | ||
|
||
private void label7_Click(object sender, EventArgs e) | ||
{ | ||
LoadDefaultPage(new LoadingPage()); | ||
} | ||
|
||
private void label8_Click(object sender, EventArgs e) | ||
{ | ||
LoadDefaultPage(new Key()); | ||
} | ||
|
||
private void label9_Click(object sender, EventArgs e) | ||
{ | ||
LoadDefaultPage(new DownloadingAssets()); | ||
} | ||
|
||
private void label10_Click(object sender, EventArgs e) | ||
{ | ||
LoadDefaultPage(new DllInjectionPage()); | ||
} | ||
|
||
private void label11_Click(object sender, EventArgs e) | ||
{ | ||
LoadDefaultPage(new CredditsPage()); | ||
} | ||
|
||
private void label12_Click(object sender, EventArgs e) | ||
{ | ||
LoadDefaultPage(new AboutPage()); | ||
} | ||
} | ||
} |
Oops, something went wrong.