Đề: Thiết kế Form Theo Mẫu
Code xử lý:
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 cong_ty_du_lich
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void label5_Click(object sender, EventArgs e)
{
}
private void textBox4_TextChanged(object sender, EventArgs e)
{
}
private void label6_Click(object sender, EventArgs e)
{
}
private void label2_Click(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
hienthi.Height = 70;
hienthi.Width = 200;
hienthi.Multiline = true;
diemdi.Items.Add("TPHCM");
diemdi.Items.Add("Hà Nội");
diemdi.Items.Add("Vũng Tàu");
diemden.Items.Add("Hàn Quốc");
diemden.Items.Add("Thái Lan");
diemden.Items.Add("Úc");
}
private void button1_Click(object sender, EventArgs e)
{
if (khach.Text == "")
{
MessageBox.Show("bạn cần nhập tên", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
else if(ns.Text=="")
{
MessageBox.Show("bạn cần nhập ngày, tháng, năm sinh", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
else if (dc.Text == "")
{
MessageBox.Show("bạn cần nhập địa chỉ", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
else
{
hienthi.Text = "khách hàng:" + khach.Text + " \r\n" +
"ngày sinh:" + ns.Text + " \r\n" +
"địa chỉ:" + dc.Text + " \r\n" +
"địa điểm đi:" + diemdi.SelectedItem + " \r\n" +
"địa điểm đến:" + diemden.SelectedItem + " \r\n";
tong.Text = Convert.ToInt32((ngayve.Value - ngaydi.Value).TotalDays).ToString();
}
}
private void button2_Click(object sender, EventArgs e)
{
khach.Text="";
ns.Text = "";
dc.Text = "";
tong.Text = "";
hienthi.Text = "";
diemdi.Text=DateTime.Now.ToString("dd/MM/yyy");
diemden.Text = DateTime.Now.ToString("dd/MM/yyy");
}
private void button3_Click(object sender, EventArgs e)
{
DialogResult thongbao;
thongbao = (MessageBox.Show("bạn có muốn thoát", "chú ý", MessageBoxButtons.YesNo, MessageBoxIcon.Warning));
if (thongbao == DialogResult.Yes)
{
Application.Exit();
}
}
}
}
0 comments:
Post a Comment