diff options
| author | Alee <Alee14498@gmail.com> | 2019-02-11 16:23:17 -0500 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-02-11 16:23:17 -0500 |
| commit | 97c66fb4ea00941c83bbf6c0778fced0daf37c9f (patch) | |
| tree | 85283e6bea4f49643a5f1560122644c6281ec763 /Microbit | |
| parent | bd284418387617e3ac2c3c4bb8c26470266015ea (diff) | |
| download | Microbit-97c66fb4ea00941c83bbf6c0778fced0daf37c9f.tar.gz Microbit-97c66fb4ea00941c83bbf6c0778fced0daf37c9f.tar.bz2 Microbit-97c66fb4ea00941c83bbf6c0778fced0daf37c9f.zip | |
Added appveyor and renamed Form1 to MainMenu
Diffstat (limited to 'Microbit')
| -rw-r--r-- | Microbit/MainMenu.Designer.cs (renamed from Microbit/Form1.Designer.cs) | 2 | ||||
| -rw-r--r-- | Microbit/MainMenu.cs (renamed from Microbit/Form1.cs) | 4 | ||||
| -rw-r--r-- | Microbit/Microbit.csproj | 6 | ||||
| -rw-r--r-- | Microbit/Program.cs | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/Microbit/Form1.Designer.cs b/Microbit/MainMenu.Designer.cs index cf875b3..210b8de 100644 --- a/Microbit/Form1.Designer.cs +++ b/Microbit/MainMenu.Designer.cs @@ -1,6 +1,6 @@ namespace Microbit { - partial class Form1 + partial class MainMenu { /// <summary> /// Required designer variable. diff --git a/Microbit/Form1.cs b/Microbit/MainMenu.cs index 0935cf1..4e585e3 100644 --- a/Microbit/Form1.cs +++ b/Microbit/MainMenu.cs @@ -10,9 +10,9 @@ using System.Windows.Forms; namespace Microbit { - public partial class Form1 : Form + public partial class MainMenu : Form { - public Form1() + public MainMenu() { InitializeComponent(); } diff --git a/Microbit/Microbit.csproj b/Microbit/Microbit.csproj index a2ba09e..e0b35a4 100644 --- a/Microbit/Microbit.csproj +++ b/Microbit/Microbit.csproj @@ -45,11 +45,11 @@ <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> - <Compile Include="Form1.cs"> + <Compile Include="MainMenu.cs"> <SubType>Form</SubType> </Compile> - <Compile Include="Form1.Designer.cs"> - <DependentUpon>Form1.cs</DependentUpon> + <Compile Include="MainMenu.Designer.cs"> + <DependentUpon>MainMenu.cs</DependentUpon> </Compile> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> diff --git a/Microbit/Program.cs b/Microbit/Program.cs index e040909..72ac533 100644 --- a/Microbit/Program.cs +++ b/Microbit/Program.cs @@ -16,7 +16,7 @@ namespace Microbit { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new Form1()); + Application.Run(new MainMenu()); } } } |
