using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace _231024_ders4 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } #region Boş private void groupBox1_Enter(object sender, EventArgs e) { } private void label3_Click(object sender, EventArgs e) { } #endregion #region Hesap private void BtnTopla_Click(object sender, EventArgs e) { int s1 = int.Parse(textBox1.Text); int s2 = int.Parse(textBox2.Text); int Toplam = s1 + s2; label3.Text = Toplam.ToString(); } private void BtnCikar_Click(object sender, EventArgs e) { int s1 = int.Parse(textBox1.Text); int s2 = int.Parse(textBox2.Text); int Cikar = s1 - s2; label3.Text = Cikar.ToString(); } private void BtnCarp_Click(object sender, EventArgs e) { int s1 = int.Parse(textBox1.Text); int s2 = int.Parse(textBox2.Text); int Carp = s1 * s2; label3.Text = Carp.ToString(); } private void BtnBol_Click(object sender, EventArgs e) { float s1 = float.Parse(textBox1.Text); float s2 = float.Parse(textBox2.Text); float Bol = s1 / s2; label3.Text = Bol.ToString(); } private void BtnOrtalama_Click(object sender, EventArgs e) { float s1 = float.Parse(textBox1.Text); float s2 = float.Parse(textBox2.Text); float Ort = (s1 + s2)/2; label3.Text = Ort.ToString(); } private void BtnTemizle_Click(object sender, EventArgs e) { textBox1.Clear(); textBox2.Clear(); label3.Text = ""; } #endregion #region Yaş Kontrol private void BtnYasKntrl_Click(object sender, EventArgs e) { int yas = int.Parse(TxtResit.Text); if (yas < 18) { MessageBox.Show("Reşit değilsiniz"); } else { MessageBox.Show("Reşitsiniz"); } } #endregion #region Büyük Küçük private void button1_Click(object sender, EventArgs e) { int s1 = int.Parse(TxtSayi1.Text); int s2 = int.Parse(TxtSayi2.Text); if (s1 < s2) { MessageBox.Show("2. Sayı Daha Büyük"); } else { MessageBox.Show("1. Sayı Daha Büyük"); } } #endregion #region Pozitif Negatif private void BtnPztfNgtf_Click(object sender, EventArgs e) { int S1 = int.Parse(TxtPztfNgtf.Text); if (S1 < 0) { MessageBox.Show("Sayı Negatif"); } else if (S1 == 0) { MessageBox.Show("Sıfır"); } else { MessageBox.Show("Sayı Pozitif"); } } #endregion #region Yas Yorumla private void button2_Click(object sender, EventArgs e) { int yas = int.Parse(TxtYasYorumla.Text); if (yas <= 3) { MessageBox.Show("Bebek"); } else if(yas > 3 & yas <= 15) { MessageBox.Show("Çocuk"); } else if (yas > 15 & yas <= 30) { MessageBox.Show("Genç"); } else if (yas > 30 & yas <= 60) { MessageBox.Show("Orta Yaşlı"); } else { MessageBox.Show("İhtiyar"); } } #endregion #region Ehliyet private void BtnEhliyet_Click(object sender, EventArgs e) { int Yas = int.Parse(TxtEhliyet.Text); if (Yas >= 18 & Yas < 65) { MessageBox.Show("Yaşınız Ehliyet Almak İçin İdeal"); } else { MessageBox.Show("Yaşınız Ehliyet Almak için Uygun Değil"); } } #endregion #region FormRenk private void button3_Click(object sender, EventArgs e) { if (RbKirmizi.Checked)//RadioButton Seçili ise { this.BackColor = Color.Red; } if (RbMavi.Checked)//RadioButton Seçili ise { this.BackColor = Color.Blue; } if (RbSari.Checked)//RadioButton Seçili ise { this.BackColor = Color.Yellow; } } #endregion #region Mevsimler private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) { listBox1.Items.Clear(); if (comboBox1.SelectedIndex == 0) //İlk eleman seçildi ise { listBox1.Items.Add("Mart"); listBox1.Items.Add("Nisan"); listBox1.Items.Add("Mayıs"); } else if (comboBox1.SelectedIndex == 1) { listBox1.Items.Add("Haziran"); listBox1.Items.Add("Temmuz"); listBox1.Items.Add("Ağustos"); } else if (comboBox1.SelectedIndex == 2) { listBox1.Items.Add("Eylül"); listBox1.Items.Add("Ekim"); listBox1.Items.Add("Kasım"); } else if (comboBox1.SelectedIndex == 3) { listBox1.Items.Add("Aralık"); listBox1.Items.Add("Ocak"); listBox1.Items.Add("Şubat"); } } #endregion } }