Skip to content

Commit

Permalink
Fixed the issue with splatoon and sarc Padding
Browse files Browse the repository at this point in the history
  • Loading branch information
smb123w64gb committed Oct 31, 2016
1 parent 87d569a commit b4453e6
Show file tree
Hide file tree
Showing 67 changed files with 14,571 additions and 91 deletions.
Binary file added .vs/Uwizard/v14/.suo
Binary file not shown.
20 changes: 20 additions & 0 deletions Backup/Uwizard.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Uwizard", "Uwizard\Uwizard.csproj", "{9B33E2BA-0929-4260-B19E-40F9501F09B3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9B33E2BA-0929-4260-B19E-40F9501F09B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9B33E2BA-0929-4260-B19E-40F9501F09B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9B33E2BA-0929-4260-B19E-40F9501F09B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9B33E2BA-0929-4260-B19E-40F9501F09B3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
199 changes: 199 additions & 0 deletions Backup/Uwizard/AboutBox1.Designer.cs

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

32 changes: 32 additions & 0 deletions Backup/Uwizard/AboutBox1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Reflection;

namespace Uwizard {
partial class AboutBox1:Form {
public AboutBox1(Form1 userform) {
InitializeComponent();
labelCopyright.Text = userform.uwiz_langtext[126];
linkLabel1.Text = userform.uwiz_langtext[127];
linkLabel1.Links.Add(linkLabel1.Text.IndexOf("wiiubrew.net"), 12);
textBoxDescription.Text = userform.uwiz_langtext[147];
this.Text = userform.uwiz_langtext[101];
labelVersion.Text = "Version: " + Form1.getVerText(Form1.myversion);
}

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) {
System.Diagnostics.Process.Start((string) linkLabel1.Tag);
}

private void logoPictureBox_Click(object sender, EventArgs e) {
System.Diagnostics.Process.Start("http://gbatemp.net/members/mr-mysterio.354138/");
}

private void pictureBox1_Click(object sender, EventArgs e) {
System.Diagnostics.Process.Start("https://www.paypal.com/us/cgi-bin/webscr?cmd=_flow&SESSION=GvptKGufGZx-O_7ZzSAFTII_Vo28cAVbniwqJkBF95FeTTU0meTbQaL5FPK&dispatch=5885d80a13c0db1f8e263663d3faee8d99e4111b56ef0eae45e68b8988f5b2dd");
}
}
}
Loading

0 comments on commit b4453e6

Please sign in to comment.