Skip to content

Commit

Permalink
Works :)
Browse files Browse the repository at this point in the history
  • Loading branch information
EndangeredNayla committed Oct 19, 2019
1 parent 0649664 commit 7383c1b
Show file tree
Hide file tree
Showing 14 changed files with 2,446 additions and 5 deletions.
Binary file modified Compiled/master/mednafen-netplay.exe
Binary file not shown.
9 changes: 9 additions & 0 deletions GUI/src/BugGUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Form2.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form2.Designer.cs">
<DependentUpon>Form2.cs</DependentUpon>
</Compile>
<Compile Include="GameListForm.cs">
<SubType>Form</SubType>
</Compile>
Expand All @@ -76,6 +82,9 @@
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Form2.resx">
<DependentUpon>Form2.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="GameListForm.resx">
<DependentUpon>GameListForm.cs</DependentUpon>
</EmbeddedResource>
Expand Down
14 changes: 9 additions & 5 deletions GUI/src/Form1.Designer.cs

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

6 changes: 6 additions & 0 deletions GUI/src/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,5 +132,11 @@ private void updateEmulatorToolStripMenuItem_Click(object sender, EventArgs e)
{
Process.Start("AutoUpdater.bat");
}

private void aboutMednafenRNOEditonToolStripMenuItem_Click(object sender, EventArgs e)
{
Form2 m = new Form2();
m.Show();
}
}
}
3 changes: 3 additions & 0 deletions GUI/src/Form1.resx
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@
<metadata name="menuStrip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
Expand Down
111 changes: 111 additions & 0 deletions GUI/src/Form2.Designer.cs

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

25 changes: 25 additions & 0 deletions GUI/src/Form2.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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 BugGUI
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}

private void pictureBox1_Click(object sender, EventArgs e)
{

}
}
}
Loading

0 comments on commit 7383c1b

Please sign in to comment.