This commit is contained in:
HeshamTB 2018-09-18 08:43:19 +03:00
parent bf5b9b7665
commit e6aec4e63f
5 changed files with 9 additions and 9 deletions

View File

@ -57,16 +57,16 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Form1.cs">
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>

View File

@ -1,6 +1,6 @@
namespace FaceRecognizer
{
partial class Form1
partial class MainForm
{
/// <summary>
/// Required designer variable.

View File

@ -10,9 +10,9 @@ using System.Windows.Forms;
namespace FaceRecognizer
{
public partial class Form1 : Form
public partial class MainForm : Form
{
public Form1()
public MainForm()
{
InitializeComponent();
}

View File

@ -16,7 +16,7 @@ namespace FaceRecognizer
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
Application.Run(new MainForm());
}
}
}