22 Temmuz 2013 Pazartesi

c# da Kayıt olma sayfası



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 kaydolmasayfasi
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (textBox1.Text == "" || textBox2.Text == "" || textBox3.Text == "") MessageBox.Show("Alanları Eksiksiz Doldurunuz ");
            else MessageBox.Show("Kayıt Tamamdır");
        }
    }
}

Share: