Created
June 25, 2017 23:26
-
-
Save Ambratolm/01741b69447979c1d893e9788c079f89 to your computer and use it in GitHub Desktop.
Créer une application qui permet d’afficher le texte « Ma première application évènementielle » au chargement du formulaire.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public partial class Form1 : Form | |
{ | |
public Form1() | |
{ | |
InitializeComponent(); | |
} | |
private void Form1_Load(object sender, EventArgs e) | |
{ | |
label1.Text = "Ma première application évènementielle"; | |
this.BackColor = Color.LightBlue; | |
label1.Font = new Font("Comic Sans MS", 17); | |
label1.ForeColor = Color.Green; | |
MessageBox.Show("Ma première application évènementielle"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment