花店售卖系统主要是为了熟悉CS结构开发,和C#中一些方法的使用,并不设计实用,故逻辑并不严谨,了解用法即可。
配送界面:点击之后进入配送对话框,输入各种信息后,即可返回配送信息。
代码:
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Threading.Tasks; 9 using System.Windows.Forms; 10 11 namespace BS结构用户界面 12 { 13 public partial class send : Form 14 { 15 public send() 16 { 17 InitializeComponent(); 18 } 19 20 private void label1_Click(object sender, EventArgs e) 21 { 22 23 } 24 25 private void button1_Click(object sender, EventArgs e) 26 { 27 string name = this.textBox1.Text; 28 string phone = this.textBox2.Text; 29 string ass = this.textBox3.Text; 30 string beizhu = this.richTextBox1.Text; 31 MessageBox.Show("收货人:" +name + "先生/女士" + ",联系电话是:"+phone + ",地址是" + ass + ",附加备注:"+beizhu); 32 } 33 34 private void send_Load(object sender, EventArgs e) 35 { 36 37 } 38 } 39 }
界面设计:
输入信息后:
点击确定: