Skip to content

Commit

Permalink
Add project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
oSerenity committed Feb 3, 2022
1 parent fd5fac6 commit 590fa1f
Show file tree
Hide file tree
Showing 93 changed files with 10,765 additions and 0 deletions.
25 changes: 25 additions & 0 deletions XexToolGUI.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32014.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XexToolGUI", "XexToolGUI\XexToolGUI.csproj", "{FD59B95A-89FE-4796-96E4-A8D1ACBE9862}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FD59B95A-89FE-4796-96E4-A8D1ACBE9862}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FD59B95A-89FE-4796-96E4-A8D1ACBE9862}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FD59B95A-89FE-4796-96E4-A8D1ACBE9862}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FD59B95A-89FE-4796-96E4-A8D1ACBE9862}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3AE018F1-5BD1-4B3D-924E-C000C03E20E4}
EndGlobalSection
EndGlobal
Binary file added XexToolGUI/$this.Icon.ico
Binary file not shown.
189 changes: 189 additions & 0 deletions XexToolGUI/About.Designer.cs

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

120 changes: 120 additions & 0 deletions XexToolGUI/About.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace XexToolGUI
{
partial class About : Form
{
System.Media.SoundPlayer player { get; set; }
public About()
{
InitializeComponent();
player = new System.Media.SoundPlayer(new MemoryStream(Properties.Resources.About_sound));
player.PlayLooping();
this.Text = "Info XexTool GUI";
this.labelProductName.Text = "XexToolGUI for xorloser's xextool";
this.labelVersion.Text = String.Format("Version {0}", AssemblyVersion);
this.labelCopyright.Text = "Copyright © Serenity 2022";
this.labelCompanyName.Text = "Thanks to:";
this.textBoxDescription.Text = "xorloser for your Program and your Hard work" + "\r\n" + "Open Sourced By Serenity." + "\r\n" + "Copyright © mLoaD 2011";
}

#region Assembly Attribute Accessors

public string AssemblyTitle
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false);
if (attributes.Length > 0)
{
AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0];
if (titleAttribute.Title != "")
{
return titleAttribute.Title;
}
}
return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase);
}
}

public string AssemblyVersion
{
get
{
return Assembly.GetExecutingAssembly().GetName().Version.ToString();
}
}

public string AssemblyProduct
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false);
if (attributes.Length == 0)
{
return "";
}
return ((AssemblyProductAttribute)attributes[0]).Product;
}
}

public string AssemblyCopyright
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false);
if (attributes.Length == 0)
{
return "";
}
return ((AssemblyCopyrightAttribute)attributes[0]).Copyright;
}
}

public string AssemblyCompany
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false);
if (attributes.Length == 0)
{
return "";
}
return ((AssemblyCompanyAttribute)attributes[0]).Company;
}
}
#endregion

private void okButton_Click(object sender, EventArgs e)
{
Close();
Program.xexgui.Show();
Program.About = null;
if(player != null)
{
player.Stop();
player = null;
}
}

private void About_FormClosing(object sender, FormClosingEventArgs e)
{
Program.xexgui.Show();
Program.About = null;

if (player != null)
{
player.Stop();
player = null;
}
}
}
}
Loading

0 comments on commit 590fa1f

Please sign in to comment.