Bu örneğimizde daha önceden yapmış olduğumuz Türkçe-İngilizce sözlük örneğine ek olarak eklediğimiz radiobutton seçeneğine göre İngilizce-Türkçe çevirisini de yapan bir uygulama oluşturacağız. Yani kullanıcının seçimine göre Türkçe-İngilizce yada İngilizce-Türkçe Sözlük örneğini oluşturacağız. Form görüntüsü ve kodlar aşağıdaki gibi olacaktır.
Kodlar:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.OleDb; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace sozluk { public partial class Form1 : Form { public Form1() { InitializeComponent(); } OleDbConnection con; OleDbDataAdapter da; DataSet ds; private void Form1_Load(object sender, EventArgs e) { con = new OleDbConnection("Provider=Microsoft.ACE.Oledb.12.0;Data Source=dbSozluk.accdb"); da = new OleDbDataAdapter("SElect *from sozluk", con); ds = new DataSet(); con.Open(); da.Fill(ds, "sozluk"); } private void textBox1_TextChanged(object sender, EventArgs e) { DataView dv = ds.Tables[0].DefaultView; listBox1.Items.Clear(); textBox2.Clear(); if (radioButton1.Checked) { dv.RowFilter = "turkce Like '" + textBox1.Text + "%'"; if (dv.Count > 0) { for (int i = 0; i < dv.Count; i++) { listBox1.Items.Add(dv[i].Row["turkce"]); } } } else { listBox1.Items.Clear(); textBox2.Clear(); dv.RowFilter = "ingilizce Like '" + textBox1.Text + "%'"; if (dv.Count > 0) { for (int i = 0; i < dv.Count; i++) { listBox1.Items.Add(dv[i].Row["ingilizce"]); } } } //dv.RowFilter = string.Format("Ad LIKE '{0}%'", textBox5.Text); } private void listBox1_SelectedIndexChanged(object sender, EventArgs e) { DataView dv = ds.Tables[0].DefaultView; if(radioButton1.Checked) { dv.RowFilter = "turkce ='" + listBox1.SelectedItem.ToString() + "'"; textBox2.Text = dv[0].Row["ingilizce"].ToString(); } else { dv.RowFilter = "ingilizce ='" + listBox1.SelectedItem.ToString() + "'"; textBox2.Text = dv[0].Row["turkce"].ToString(); } } } } |
Ekran Çıktısı:
Merhaba verdiğin projede özel durum oluştu hatası var bunu nasıl çözebilirim?
Arkadaşlar Yardıma ihtiyacım var
C# Form da dışarıdan girilen bir sayının 2 Adet class kullanılarak asal sayı olup olmadıgını bulmamız isteniyor 2.Classta Asal olup olamdıgı kontrol edilmesi gerekiyor 1. Class a gönderilecek ve messagebox ile uyarı verilmesi isteniyor 1 class ile okulda gösterilmişti Math. işlemlerini ama 2 class ile yapamıyorum