refactor
This commit is contained in:
		
							parent
							
								
									bf5b9b7665
								
							
						
					
					
						commit
						e6aec4e63f
					
				@ -57,16 +57,16 @@
 | 
				
			|||||||
    </Reference>
 | 
					    </Reference>
 | 
				
			||||||
  </ItemGroup>
 | 
					  </ItemGroup>
 | 
				
			||||||
  <ItemGroup>
 | 
					  <ItemGroup>
 | 
				
			||||||
    <Compile Include="Form1.cs">
 | 
					    <Compile Include="MainForm.cs">
 | 
				
			||||||
      <SubType>Form</SubType>
 | 
					      <SubType>Form</SubType>
 | 
				
			||||||
    </Compile>
 | 
					    </Compile>
 | 
				
			||||||
    <Compile Include="Form1.Designer.cs">
 | 
					    <Compile Include="MainForm.Designer.cs">
 | 
				
			||||||
      <DependentUpon>Form1.cs</DependentUpon>
 | 
					      <DependentUpon>MainForm.cs</DependentUpon>
 | 
				
			||||||
    </Compile>
 | 
					    </Compile>
 | 
				
			||||||
    <Compile Include="Program.cs" />
 | 
					    <Compile Include="Program.cs" />
 | 
				
			||||||
    <Compile Include="Properties\AssemblyInfo.cs" />
 | 
					    <Compile Include="Properties\AssemblyInfo.cs" />
 | 
				
			||||||
    <EmbeddedResource Include="Form1.resx">
 | 
					    <EmbeddedResource Include="MainForm.resx">
 | 
				
			||||||
      <DependentUpon>Form1.cs</DependentUpon>
 | 
					      <DependentUpon>MainForm.cs</DependentUpon>
 | 
				
			||||||
    </EmbeddedResource>
 | 
					    </EmbeddedResource>
 | 
				
			||||||
    <EmbeddedResource Include="Properties\Resources.resx">
 | 
					    <EmbeddedResource Include="Properties\Resources.resx">
 | 
				
			||||||
      <Generator>ResXFileCodeGenerator</Generator>
 | 
					      <Generator>ResXFileCodeGenerator</Generator>
 | 
				
			||||||
 | 
				
			|||||||
@ -1,6 +1,6 @@
 | 
				
			|||||||
namespace FaceRecognizer
 | 
					namespace FaceRecognizer
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    partial class Form1
 | 
					    partial class MainForm
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        /// <summary>
 | 
					        /// <summary>
 | 
				
			||||||
        /// Required designer variable.
 | 
					        /// Required designer variable.
 | 
				
			||||||
@ -10,9 +10,9 @@ using System.Windows.Forms;
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
namespace FaceRecognizer
 | 
					namespace FaceRecognizer
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    public partial class Form1 : Form
 | 
					    public partial class MainForm : Form
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        public Form1()
 | 
					        public MainForm()
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            InitializeComponent();            
 | 
					            InitializeComponent();            
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
@ -16,7 +16,7 @@ namespace FaceRecognizer
 | 
				
			|||||||
        {
 | 
					        {
 | 
				
			||||||
            Application.EnableVisualStyles();
 | 
					            Application.EnableVisualStyles();
 | 
				
			||||||
            Application.SetCompatibleTextRenderingDefault(false);
 | 
					            Application.SetCompatibleTextRenderingDefault(false);
 | 
				
			||||||
            Application.Run(new Form1());
 | 
					            Application.Run(new MainForm());
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user