Tags-Etiketler
Bu kısımda sitemizde etiketlenmiş makaleleri toplu olarak bulabilirsiniz...
[ unselect ] /
Makaleler-Article(s)
unselect ile ilgili toplam 1 makale bulundu ! (A total of 1 article(s) about unselect was(were) found in all of articles!)
Article |
---|
CheckBox Select-Unselect Olayları Bu örnekte checkbox ın seçili, seçili olmama durumlarındaki olayları inceleyeceğiz. Formunuza 3 adet checkbox, 1 adet label ekleyin. Aşağıdaki şekil1 i inceleyin.
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.boldCheckBox.CheckedChanged += new System.EventHandler(this.boldCheckBox_CheckedChanged);
this.italicCheckBox.CheckedChanged += new System.EventHandler(this.italicCheckBox_CheckedChanged);
this.underlineCheckBox.CheckedChanged += new System.EventHandler(this.underlineCheckBox_CheckedChanged);
this.label1.Text = "www.bahadirsam.somee.com";
}
private void boldCheckBox_CheckedChanged(object sender, System.EventArgs e)
{
label1.Font = new Font(label1.Font.Name, label1.Font.Size,label1.Font.Style ^ FontStyle.Bold);
}
private void italicCheckBox_CheckedChanged(object sender, System.EventArgs e)
{
label1.Font = new Font(label1.Font.Name,label1.Font.Size, label1.Font.Style ^ FontStyle.Italic);
}
private void underlineCheckBox_CheckedChanged(object sender, System.EventArgs e)
{
label1.Font = new Font(label1.Font.Name, label1.Font.Size, label1.Font.Style ^ FontStyle.Underline);
}
}
}
//Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN
|
|
        Sitede yayınlanan makaleleri
Blog sitemizden de takip edebilirsiniz.
Sitemizdeki makaleleri RSS olarak takip edebilirsiniz.