-
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
619ecee
commit 9e51b45
Showing
84 changed files
with
5,876 additions
and
0 deletions.
There are no files selected for viewing
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,29 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2013 | ||
VisualStudioVersion = 12.0.21005.1 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MFASB", "MFASB\MFASB.csproj", "{A2C9B14C-CF8F-45C0-A1E8-C9A1D6DDC369}" | ||
EndProject | ||
Global | ||
GlobalSection(SubversionScc) = preSolution | ||
Svn-Managed = True | ||
Manager = AnkhSVN - Subversion Support for Visual Studio | ||
EndGlobalSection | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{A2C9B14C-CF8F-45C0-A1E8-C9A1D6DDC369}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{A2C9B14C-CF8F-45C0-A1E8-C9A1D6DDC369}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{A2C9B14C-CF8F-45C0-A1E8-C9A1D6DDC369}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{A2C9B14C-CF8F-45C0-A1E8-C9A1D6DDC369}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
VisualSVNWorkingCopyRoot = . | ||
EndGlobalSection | ||
EndGlobal |
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,31 @@ | ||
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.Forms; | ||
|
||
namespace MFASB | ||
{ | ||
public partial class About : Form | ||
{ | ||
public About() | ||
{ | ||
InitializeComponent(); | ||
this.CenterToScreen(); | ||
} | ||
|
||
private void About_Load(object sender, EventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void btnClose_Click(object sender, EventArgs e) | ||
{ | ||
this.Close(); | ||
} | ||
} | ||
} |
Oops, something went wrong.