广告位联系
返回顶部
分享到

C#实现航班预订系统的介绍

C#教程 来源:互联网 作者:秩名 发布时间:2022-05-27 23:46:55 人浏览
摘要

连接数据库 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 using System; using System.Collections.Generic; using Syste

连接数据库

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Data;

using System.Data.SqlClient;

 

namespace MyTickets

{

    public class DBHelper

    {

        //数据库连接字符串

        public string connString = @"Data Source=.;Initial Catalog=MyTicket;Trusted_Connection=Yes;Connect Timeout=90";

        /// <summary>

        /// 数据库连接对象

        /// </summary>

        private SqlConnection connction;

    public SqlConnection Connction

        {

            get

            {

                if (connction == null)

                {

                    connction = new SqlConnection(connString);

                }

                return connction;

            }

        }

        /// <summary>

        /// 打开数据库连接

        /// </summary>

        public void OpenConnection()

        {

            if (connction.State == ConnectionState.Closed)

            {

                Connction.Open();

            }

            else if (connction.State == ConnectionState.Broken)

            {

                Connction.Close();

                Connction.Open();

            }

            

        }

        /// <summary>

        /// 关闭数据库连接

        /// </summary>

        public void CloseConnection()

        {

            if(connction.State==ConnectionState.Open|| connction.State == ConnectionState.Broken)

            {

                Connction.Close();

            }

        }

 

    }

}

开头动画代码

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

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;

using System.Threading;

 

namespace MyTickets

{

    public partial class 开头 : Form

    {

        public 开头()

        {

            InitializeComponent();

            timer1.Interval = 1000;

            timer1.Start();

            timer1.Tick += new EventHandler(timer1_Tick);

        }

 

 

        private void 开头_Load(object sender, EventArgs e)

        {

            TransparencyKey = BackColor;

             

        }

 

        private void timer1_Tick(object sender, EventArgs e)

        {

            timer1.Stop();

            初始界面 f0 = new 初始界面();

            this.Hide();

            f0.ShowDialog();

        }

    }

}

机票预订界面

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

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;

using System.Data.SqlClient;

 

namespace MyTickets

{

    public partial class 机票预订 : Form

    {

        #region 构造函数

        public 机票预订()

        {

            InitializeComponent();

        }

 

        public 机票预订(string text)

        {

            InitializeComponent();

            usename.Text = text;

        }

        #endregion

 

        #region 方法

 

        #region 绑定cbo

        /// <summary>

        /// 绑定cbo

        /// </summary>

        private void BindCbo()

        {

            DBHelper dbHelper = new DBHelper();

            //sql语句

            string sql = "select * from cityInfo";

            //适配器adapter

            SqlDataAdapter adapter = new SqlDataAdapter(sql, dbHelper.Connction);

            //数据集

            DataSet ds = new DataSet();

            //填充数据集

            adapter.FillSchema(ds, SchemaType.Source, "cityInfo");

            adapter.Fill(ds, "cityInfo");

            //新的一行

            DataRow row = ds.Tables["cityInfo"].NewRow();

            row[0] = -1;

            row[1] = "请选择";

            //插入

            ds.Tables["cityInfo"].Rows.InsertAt(row, 0);

            //获取视图

            DataView dv1 = new DataView(ds.Tables["cityInfo"]);

            DataView dv2 = new DataView(ds.Tables["cityInfo"]);

            //绑定

            this.cboDestinationCity.DataSource = dv1;

            this.cboDestinationCity.DisplayMember = "cityName";

            this.cboDestinationCity.ValueMember = "id";

 

            this.cboLeaveCity.DataSource = dv2;

            this.cboLeaveCity.DisplayMember = "cityName";

            this.cboLeaveCity.ValueMember = "id"; 

        }

        #endregion

 

        #region 绑定dgv

        /// <summary>

        /// 绑定dgv

        /// </summary>

        private void BindDgv()

        {

            DBHelper dbHelper = new DBHelper();

            string sql = string.Format(@"select flightNo,airways,leaveTime,landTime,price

                                        from flightInfo,airwaysInfo

                                        where flightInfo.airwaysId=airwaysInfo.id

                                        and leaveCity={0}

                                        and destinationCity={1}", cboLeaveCity.SelectedValue, cboDestinationCity.SelectedValue);

            SqlDataAdapter adapter = new SqlDataAdapter(sql, dbHelper.Connction);

            DataSet ds = new DataSet();

            adapter.Fill(ds, "flightInfo");

            this.dataGridView1.DataSource = ds.Tables["flightInfo"];

        }

        #endregion

 

        #region 验证预订部分的用户输入

        /// <summary>

        /// 验证预订部分的用户输入

        /// </summary>

        /// <returns></returns>

        private bool ValidateInput()

        {

            if (txtFlightNo.Text == string.Empty)

            {

                MessageBox.Show("请选择一个航班!");

                return false;

            }

            if (dateTimePicker1.Value < DateTime.Now)

            {

                MessageBox.Show("请选择正确的出发日期!");

                dateTimePicker1.Focus();

                return false;

            }

            return true;

        } 

        #endregion

 

        #endregion

 

        #region 事件

        //加载事件

        private void Form1_Load(object sender, EventArgs e)

        {

            BindCbo();

            TransparencyKey = BackColor;

 

        }

        //查询事件

        private void tbnQuery_Click(object sender, EventArgs e)

        {

            if(cboLeaveCity.Text=="请选择"||cboDestinationCity.Text=="请选择")

            {

                MessageBox.Show("请选择出发地与目的地!");

                this.dataGridView1.DataSource = null;

                return;

            }

            BindDgv();

            //清空txt

            foreach (Control c in groupBox2.Controls)

            {

                if(c is TextBox)

                {

                    c.Text = string.Empty;

                }

            }

        }

        //单击dgv

        private void dataGridView1_Click(object sender, EventArgs e)

        {

            if(dataGridView1.Rows.Count>0)

            {

                this.txtFlightNo.Text = dataGridView1.CurrentRow.Cells["flightNo"].Value.ToString();

                this.txtAirways.Text = dataGridView1.CurrentRow.Cells["airways"].Value.ToString();

                this.txtFrom.Text = cboLeaveCity.Text;

                this.txtTo.Text = cboDestinationCity.Text;

                this.txtLeaveTime.Text = dataGridView1.CurrentRow.Cells["leaveTime"].Value.ToString();

                this.txtLandTime.Text = dataGridView1.CurrentRow.Cells["landTime"].Value.ToString();

                this.txtPrice.Text = dataGridView1.CurrentRow.Cells["price"].Value.ToString();

            }

        }

        //点击关闭

        private void button2_Click(object sender, EventArgs e)

        {

            Application.Exit();

        }

 

        //点击预定

        private void button1_Click(object sender, EventArgs e)

        {

            if(ValidateInput())

            {

                Random random = new Random();

                int orderId= random.Next(100000, 9999999);

                string flightNo = this.txtFlightNo.Text;

                string leaveDate = this.dateTimePicker1.Value.ToShortDateString();

                string landTime = this.txtLandTime.Text;

                string price = this.txtPrice.Text;

                int num = (int)this.numNunber.Value;

                string leavePlace = this.txtFrom.Text;

                string landPlace = this.txtTo.Text;

                string usename = this.usename.Text;

                string sql = string.Format(@"insert into orderInfo(orderId,flightNo,leaveDate,landTime,price,Number,leavePlace,landPlace,useId)

                                            values({0},'{1}','{2}','{3}','{4}',{5},'{6}','{7}','{8}')", orderId, flightNo, leaveDate,landTime,price,num, leavePlace, landPlace,usename);

                DBHelper dbHelper = new DBHelper();

                try

                {

                    //执行工具

                    SqlCommand cmd = new SqlCommand(sql, dbHelper.Connction);

                    //打开数据库

                    dbHelper.OpenConnection();

                    //执行

                    int result =cmd.ExecuteNonQuery();

                    //判断

                    if(result>0)

                    {

                        MessageBox.Show("预订成功!订单编号是:" + orderId);

                    }

                    else

                    {

                        MessageBox.Show("预定失败,请重试!");

                    }

                }

                catch(Exception ex)

                {

                    MessageBox.Show("发生错误,请联系管理员,错误原因是:"+ex.Message);

                }

                finally

                {

                    dbHelper.CloseConnection();

                }

            }

        }

 

        #endregion

 

        #region 鼠标移动

        Point mouseOff;//鼠标移动位置变量

        bool leftFlag;//标签是否为左键

        private void 机票预订_MouseDown(object sender, MouseEventArgs e)

        {

            if (e.Button == MouseButtons.Left)

            {

                mouseOff = new Point(-e.X, -e.Y); //得到变量的值

                leftFlag = true;                  //点击左键按下时标注为true;

 

            }

        }

 

        private void 机票预订_MouseMove(object sender, MouseEventArgs e)

        {

            if (leftFlag)

            {

 

                Point mouseSet = Control.MousePosition;

                mouseSet.Offset(mouseOff.X, mouseOff.Y);  //设置移动后的位置

                Location = mouseSet;

            }

        }

 

        private void 机票预订_MouseUp(object sender, MouseEventArgs e)

        {

            if (leftFlag)

            {

                leftFlag = false;//释放鼠标后标注为false;

            }

        }

        #endregion

 

    }

}

订单查询界面

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

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;

using System.Data.SqlClient;

 

namespace MyTickets

{

    public partial class 订单查询 : Form

    {

        public 订单查询(string text)

        {

            InitializeComponent();

            usename.Text = text.ToString();

        }

        #region 鼠标移动

        Point mouseOff;//鼠标移动位置变量

        bool leftFlag;//标签是否为左键

        private void 订单查询_MouseDown(object sender, MouseEventArgs e)

        {

            if (e.Button == MouseButtons.Left)

            {

                mouseOff = new Point(-e.X, -e.Y); //得到变量的值

                leftFlag = true;                  //点击左键按下时标注为true;

 

            }

        }

 

        private void 订单查询_MouseMove(object sender, MouseEventArgs e)

        {

            if (leftFlag)

            {

 

                Point mouseSet = Control.MousePosition;

                mouseSet.Offset(mouseOff.X, mouseOff.Y);  //设置移动后的位置

                Location = mouseSet;

            }

        }

 

        private void 订单查询_MouseUp(object sender, MouseEventArgs e)

        {

            if (leftFlag)

            {

                leftFlag = false;//释放鼠标后标注为false;

            }

        }

        #endregion

 

        private void 订单查询_Load(object sender, EventArgs e)

        {

            DBHelper dbHelper = new DBHelper();

            string sql = string.Format(@"select orderId,flightNo,leaveDate,landTime,leavePlace,landPlace from orderInfo where useId ='{0}'",usename);

            SqlDataAdapter adapter = new SqlDataAdapter(sql, dbHelper.Connction);

            DataSet ds = new DataSet();

            adapter.Fill(ds, "orderInfo");

            this.dataGridView1.DataSource = ds.Tables["orderInfo"];

        }

 

        private void button1_Click(object sender, EventArgs e)

        {

            Application.Exit();

        }

    }

}

登录界面

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

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;

using System.Threading;

using System.Data.SqlClient;

 

 

namespace MyTickets

{

    public partial class 初始界面 : Form

    {

 

        public 初始界面()

        {

            InitializeComponent();

        }

        int count = 0;

 

        #region 鼠标移动

        Point mouseOff;//鼠标移动位置变量

        bool leftFlag;//标签是否为左键

        private void 初始界面_MouseDown(object sender, MouseEventArgs e)

        {

            if (e.Button == MouseButtons.Left)

            {

                mouseOff = new Point(-e.X, -e.Y); //得到变量的值

                leftFlag = true;                  //点击左键按下时标注为true;

 

            }

        }

 

        private void 初始界面_MouseMove(object sender, MouseEventArgs e)

        {

            if (leftFlag)

            {

 

                Point mouseSet = Control.MousePosition;

                mouseSet.Offset(mouseOff.X, mouseOff.Y);  //设置移动后的位置

                Location = mouseSet;

            }

        }

 

        private void 初始界面_MouseUp(object sender, MouseEventArgs e)

        {

            if (leftFlag)

            {

                leftFlag = false;//释放鼠标后标注为false;

            }

        }

        #endregion

 

        #region 打开其他窗口

 

        private void 查询订单btn_Click(object sender, EventArgs e)

        {

            string userid = this.用户名TEXT.Text;

            string psword = this.passwordtxt.Text;

            if (userid.Equals("") || psword.Equals(""))//用户名或密码为空

            {

                MessageBox.Show("用户名或密码不能为空");

            }

            else

            {

                string sql = string.Format(@"select useId,psword from LoginIn where useId = '{0}' and psWord = '{1}'", userid, psword);

                DBHelper dbHelper = new DBHelper();

                SqlCommand cmd = new SqlCommand(sql, dbHelper.Connction);

                dbHelper.OpenConnection();

                SqlDataReader sdr = cmd.ExecuteReader();

 

                if (sdr.Read())

                {

                    MessageBox.Show("信息验证成功");

 

                    //跳转到主页面

                    订单查询 fd = new 订单查询(用户名TEXT.Text);

                    fd.ShowDialog();

                    this.Hide();

                }

                else

                {

                    MessageBox.Show("用户名或密码错误");

                }

            }

        }

        #endregion

 

        #region 轮播

        private void ChangeImage(Image img, int millisecondsTimeOut)

        {

            if (this.IsHandleCreated)

            {

                this.Invoke(new Action(() =>

                {

                    轮播1.Image = img;

                })

                );

            }

            Thread.Sleep(millisecondsTimeOut);

        }

        private void 初始界面_Load(object sender, EventArgs e)

        {

            Thread th;

            th = new Thread

                (

                    delegate ()

                    {

                        // 3就是要循环轮数了

                        for (int i = 0; i < 100; i++)

                        {

                            //调用方法

                            ChangeImage(Properties.Resources.东方航空, 2000);

                            count++;

                            ChangeImage(Properties.Resources.南方航空, 2000);

                            count++;

                            ChangeImage(Properties.Resources.四川航空, 2000);

                            count++;

                            ChangeImage(Properties.Resources.海南航空, 2000);

                            count++;

                        }

                    }

                );

            th.IsBackground = true;

            th.Start();

        }

 

        //关闭

        private void label1_Click(object sender, EventArgs e)

        {

            Application.Exit();

        }

 

        //轮播

        private void pictureBox1_Click(object sender, EventArgs e)

        {

            if (count % 4 == 0)

            {

                System.Diagnostics.Process.Start("http://www.ceair.com/");

            }

            if (count % 4 == 3)

            {

                System.Diagnostics.Process.Start("https://www.hnair.com/");

            }

            if (count % 4 == 1)

            {

                System.Diagnostics.Process.Start("https://www.csair.com/");

            }

            if (count % 4 == 2)

            {

                System.Diagnostics.Process.Start("http://www.sichuanair.com/");

            }

        }

        #endregion

 

        #region 绑定登录

        private void 登录btn_Click(object sender, EventArgs e)

        {

            string userid = this.用户名TEXT.Text;

            string psword = this.passwordtxt.Text;

            if (userid.Equals("") || psword.Equals(""))//用户名或密码为空

            {

                MessageBox.Show("用户名或密码不能为空");

            }

            else

            {

                string sql = string.Format(@"select useId,psword from LoginIn where useId = '{0}' and psWord = '{1}'",userid, psword);

                DBHelper dbHelper = new DBHelper();

                SqlCommand cmd = new SqlCommand(sql, dbHelper.Connction);

                dbHelper.OpenConnection();

                SqlDataReader sdr = cmd.ExecuteReader();

 

                if (sdr.Read())

                {

                    MessageBox.Show("信息验证成功");

 

                    //跳转到主页面

                    机票预订 f2 = new 机票预订(用户名TEXT.Text);

                    this.Hide();

                    f2.ShowDialog();

 

                }

                else

                {

                    MessageBox.Show("用户名或密码错误");

                }

            }

             

 

        }   

        #endregion

         

        #region 绑定注册

        private void 注册btn_Click(object sender, EventArgs e)

        {

            string userid = this.用户名TEXT.Text;

            string psword = this.passwordtxt.Text;

            string sql = string.Format(@"insert into LoginIn(useId,psWord)

                                            values('{0}','{1}')", userid, psword);

            DBHelper dbHelper = new DBHelper();

            try

            {

                //执行工具

                SqlCommand cmd = new SqlCommand(sql, dbHelper.Connction);

                //打开数据库

                dbHelper.OpenConnection();

                //执行

                int result = cmd.ExecuteNonQuery();

                //判断

                if (result > 0)

                {

                    MessageBox.Show("注册成功,请登录!");

                }

                else

                {

                    MessageBox.Show("注册失败,请重试!");

                }

            }

            catch (Exception ex)

            {

                MessageBox.Show("发生错误,请联系管理员,错误原因是:" + ex.Message);

            }

 

        }

        #endregion

 

 

    }

}

下面是一些效果图


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 : https://blog.csdn.net/qq_43182421/article/details/90315820
相关文章
  • WPF实现窗体亚克力效果的代码

    WPF实现窗体亚克力效果的代码
    WPF 窗体设置亚克力效果 框架使用大于等于.NET40。 Visual Studio 2022。 项目使用MIT开源许可协议。 WindowAcrylicBlur设置亚克力颜色。 Opacity设置透
  • C#非托管泄漏中HEAP_ENTRY的Size对不上解析

    C#非托管泄漏中HEAP_ENTRY的Size对不上解析
    一:背景 1. 讲故事 前段时间有位朋友在分析他的非托管泄漏时,发现NT堆的_HEAP_ENTRY的 Size 和!heap命令中的 Size 对不上,来咨询是怎么回事?
  • C#中ArrayList 类的使用介绍
    一:ArrayList 类简单说明 动态数组ArrayList类在System.Collecions的命名空间下,所以使用时要加入System.Collecions命名空间,而且ArrayList提供添加,
  • C#使用BinaryFormatter类、ISerializable接口、XmlSeriali

    C#使用BinaryFormatter类、ISerializable接口、XmlSeriali
    序列化是将对象转换成字节流的过程,反序列化是把字节流转换成对象的过程。对象一旦被序列化,就可以把对象状态保存到硬盘的某个位
  • C#序列化与反序列化集合对象并进行版本控制
    当涉及到跨进程甚至是跨域传输数据的时候,我们需要把对象序列化和反序列化。 首先可以使用Serializable特性。 1 2 3 4 5 6 7 8 9 10 11 12 13 14
  • C#事件中关于sender的用法解读

    C#事件中关于sender的用法解读
    C#事件sender的小用法 开WPF新坑了,看了WPF的炫酷界面,再看看winForm实在是有些惨不忍睹(逃)。后面会开始写一些短的学习笔记。 一、什么
  • 在C#程序中注入恶意DLL的方法

    在C#程序中注入恶意DLL的方法
    一、背景 前段时间在训练营上课的时候就有朋友提到一个问题,为什么 Windbg 附加到 C# 程序后,程序就处于中断状态了?它到底是如何实现
  • 基于C#实现一个简单的FTP操作工具
    实现功能 实现使用FTP上传、下载、重命名、刷新、删除功能 开发环境 开发工具: Visual Studio 2013 .NET Framework版本:4.5 实现代码 1 2 3 4 5 6 7
  • C#仿QQ实现简单的截图功能

    C#仿QQ实现简单的截图功能
    接上一篇写的截取电脑屏幕,我们在原来的基础上加一个选择区域的功能,实现自定义选择截图。 个人比较懒,上一篇的代码就不重新设计
  • C#实现线性查找算法的介绍
    线性查找,肯定是以线性的方式,在集合或数组中查找某个元素。 通过代码来理解线性查找 什么叫线性?还是在代码中体会吧。 首先需要一
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计