22 Temmuz 2013 Pazartesi

c# da Burca Göre Yorum Yapan Program

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

        private void textBox1_TextChanged(object sender, EventArgs e)
        {

        }

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (comboBox1.Text == "İkizler")
            {
                textBox1.Text = "ikizler mutlu";
                pictureBox1.ImageLocation = "ikizler.jpg";
            }
            if (comboBox1.Text == "Oğlak") textBox1.Text = "oglak umutlu";
        }
    }
}

Share: