物流管理系统,添加,删除,修改。全部
sql server数据库
namespace WindowsFormsApplication1 {
public partial class DepotList : Form {
public DepotList() {
InitializeComponent();
}
private void toolStripLabel1_Click(object sender, EventArgs e) {
DepotAddAndEdit daa=new DepotAddAndEdit();
daa.Show();
}
private void toolStripLabel2_Click(object sender, EventArgs e) {
DepotAddAndEdit daa = new DepotAddAndEdit();
daa.Show();
}
}
}
评论