Yazı Font Küçült Yazı Font Büyült

if Döngüsü, MessageBox Örnek

Bu yazımızda, if döngüsüne ve MessageBox kullanımına basit bir örnek vereceğiz.Formunuza 3 adet textBox ve 1 adet button ekleyin.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int a, b, c;

            if (textBox1.Text == "" || textBox2.Text == "")
            {
                MessageBox.Show("TextBox a lütfen rakam giriniz...", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            else
            {

                a = (int.Parse(textBox1.Text));

                b = (int.Parse(textBox2.Text));

                c = a + b;

                textBox3.Text = c.ToString();
            }
        }
    }
}

//Bir sonraki makalede görüşmek üzere. Bahadır