Skip to content

Instantly share code, notes, and snippets.

@Ambratolm
Created June 25, 2017 23:26
Show Gist options
  • Save Ambratolm/01741b69447979c1d893e9788c079f89 to your computer and use it in GitHub Desktop.
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.
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