Accueil quit V2 Proff OK
This commit is contained in:
parent
115f20211b
commit
da7582e3c8
|
@ -90,7 +90,6 @@
|
|||
this.MinimizeBox = false;
|
||||
this.Name = "EcranAccueil";
|
||||
this.Text = "Bienvenue, welcome,...";
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.EcranAccueil_FormClosing);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
|
|
@ -35,23 +35,9 @@ namespace COURS01
|
|||
}
|
||||
}
|
||||
|
||||
private void EcranAccueil_FormClosing(object sender, FormClosingEventArgs e)
|
||||
{
|
||||
if (MessageBox.Show("Voulez-vous vraiment quiter ?", "Souhait", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||||
{
|
||||
e.Cancel = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
e.Cancel = true;
|
||||
}
|
||||
}
|
||||
|
||||
private void btnEntrez_Click(object sender, EventArgs e)
|
||||
{
|
||||
EcranPrincipal f = new EcranPrincipal(this);
|
||||
this.Hide();
|
||||
f.ShowDialog();//Bloque la fenetre parrent alors que show ne bloque pas le parent
|
||||
Close();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -109,7 +109,7 @@
|
|||
this.MinimizeBox = false;
|
||||
this.Name = "EcranPrincipal";
|
||||
this.Text = "Ecran Principal";
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.mQuitter_Click);
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.EcranAccueil_FormClosing);
|
||||
this.menuStrip1.ResumeLayout(false);
|
||||
this.menuStrip1.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
|
|
|
@ -27,35 +27,29 @@ namespace COURS01
|
|||
}
|
||||
private void mQuitter_Click(object sender, EventArgs e)
|
||||
{
|
||||
if(parentToCloseF)
|
||||
{
|
||||
parentToClose.Close();
|
||||
if (parentToClose.IsDisposed)
|
||||
Close();
|
||||
}
|
||||
else
|
||||
Close();
|
||||
}
|
||||
|
||||
private void mQuitter_Click(object sender, FormClosingEventArgs e)
|
||||
{
|
||||
if (parentToCloseF)
|
||||
{
|
||||
parentToClose.Close();
|
||||
if (parentToClose.IsDisposed)
|
||||
{
|
||||
e.Cancel = false;
|
||||
}
|
||||
else
|
||||
e.Cancel = true;
|
||||
}
|
||||
else
|
||||
e.Cancel = false;
|
||||
Close();
|
||||
}
|
||||
|
||||
private void mNDef_Click(object sender, EventArgs e)
|
||||
{
|
||||
MessageBox.Show("Fonctionnalité non implémentée");
|
||||
}
|
||||
|
||||
private void EcranAccueil_FormClosing(object sender, FormClosingEventArgs e)
|
||||
{
|
||||
if (MessageBox.Show("Voulez-vous vraiment quiter ?", "Souhait", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||||
{
|
||||
e.Cancel = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
e.Cancel = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,6 +17,7 @@ namespace COURS01
|
|||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new EcranAccueil());
|
||||
Application.Run(new EcranPrincipal());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -8,3 +8,4 @@ C:\Users\Adrien\source\repos\COURS01\COURS01\obj\Debug\COURS01.csproj.CoreCompil
|
|||
C:\Users\Adrien\source\repos\COURS01\COURS01\obj\Debug\COURS01.exe
|
||||
C:\Users\Adrien\source\repos\COURS01\COURS01\obj\Debug\COURS01.pdb
|
||||
C:\Users\Adrien\source\repos\COURS01\COURS01\obj\Debug\COURS01.EcranPrincipal.resources
|
||||
C:\Users\Adrien\source\repos\COURS01\COURS01\obj\Debug\COURS01.csprojResolveAssemblyReference.cache
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue