🙂 İNSANLARIN EN HAYIRLISI INSANLARA FAYDALI OLANDIR 🙂

Burak HABER / C# / UcusRezervasyonSistemi

1-) C# -

UcusRezervasyonSistemi


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 UcusRezervasyonSistemi

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

 

        private void button1_Click(object sender, EventArgs e)

        {

            listBox1.Items.Add("rota: " + comboBox1.Text + " - " + comboBox2.Text + " tarih "

                + dateTimePicker1.Text + " saat " + maskedTextBox1.Text

                + " yolcu ad soyad " + textBox1.Text + " TC " + maskedTextBox2.Text

                + " telefon " + maskedTextBox3.Text);

            MessageBox.Show("yolcu kaydı yapıldı");

        }

 

        private void button2_Click(object sender, EventArgs e)

        {

            label9.Text = comboBox2.Text;

            comboBox2.Text = comboBox1.Text;

            comboBox1.Text = label9.Text;

        }

    }

}



Label9 Properties Visible false

 2021 Mart 11 Perşembe
 361