Checkbox Ozellikleri

  • June 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Checkbox Ozellikleri as PDF for free.

More details

  • Words: 186
  • Pages: 2
VB.NET 2005 WINDOWS KONTROLLERİ

CHECKBOX

Belli seçeneklerin seçili olup olmadıklarını belirtmeye yarar. Appearance Özelliği

: CheckBox kontrolünün görünümünü ayarlar. Normal veya Buton değerlerini alır. Aşağıda gösterilmiştir. (Resim1)

Resim 1

Checked

: İşaretleme kutusunun çalışma anında seçili olup olmamasını ayarlar. (True:seçili, False:seçili değil)

CheckAlign

: İşaret kutusunun metne göre duracağı yeri belirler. Alacağı pozisyonlardan bazıları resim2’de

gösterilmiştir.

Resim 2 Resim2’deki hizalama görüntüsünü kod ile yapmak istersek bunu aşağıdaki kodları form_load olayına yazarak elde edebiliriz. CheckBox1.CheckAlign CheckBox2.CheckAlign CheckBox3.CheckAlign CheckBox7.CheckAlign CheckState

= = = =

ContentAlignment.BottomCenter ContentAlignment.BottomLeft ContentAlignment.BottomRight ContentAlignment.TopCenter

‘kutu ‘kutu ‘kutu ‘kutu

solda sağda altta üstte

: Kutunun işaret durumunu belirlememizi sağlar 3 değer alır. Bunlar;

0 : İşaretsiz  unchecked 1 : İşaretli  checked 2 : Belirsiz  indeterminate



Kararsızlık durumu. Birden fazla özellik kontrol edildiğinde meydana gelir. Ör. Bir metinde küçük harf büyük harf kontrolü yapılsın. Bu metinde hem büyük hem küçük harf var ise bu durum oluşur.

Uygulama 1 Aşağıdaki kodları buton1_click() ‘e yazarak projemizi çalıştıralım ve işaret kutusu seçili iken veya seçili değilken butona basalım. If CheckBox1.Checked = True Then TextBox1.Text = "Kutu seçili" Else TextBox1.Text = "Kutu seçili değil" End If

Related Documents

Checkbox Ozellikleri
June 2020 7
Checkbox
November 2019 14
Checkbox
November 2019 11
Control Checkbox
July 2020 13