Forum
Bildirimler
Hepsini Temizle
Yazılım Genel
2
Yazılar
2
Üyeler
0
Reactions
502
Görüntüleme
Konu başlatıcı
herkese selamlar
form daki datagridin 18 sütununa nokta ve harf girmeyi engelleyerek sadece rakam ve virgül nasıl girebilirim.
bunu kodla yapmam gerekli edit columns tan değil.
şimdiden teşekkürle
Gönderildi : 02/08/2016 12:20
merhaba cell formatting kullanabılırsınız ornek olarak asagıdakı kod parcası ısınıze yarayacaktır. ornekte renk degısımı ıcın ayarlanmıstır sız o kısma kendı formatlarınızı yada kurallarınızı uygulayabılıorsınız .
saygılar
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
// Compare the column to the column you want to format
if (this.dataGridView1.Columns[e.ColumnIndex].Name == "ColumnName")
{
//get the IChessitem you are currently binding, using the index of the current row to access the datasource
IChessItem item = sourceList[e.RowIndex];
//check the condition
if (item == condition)
{
e.CellStyle.BackColor = Color.Green;
}
}
}
ProfectSoft Yazılım ve Danışmanlık Hizmetleri
LogPusher & Bifyou E-Commerce System
www.profectsoft.com
Gönderildi : 02/08/2016 14:06