首页上一页 1 下一页尾页 1 条记录 1/1页
《C#开发实战宝典》进销存管理
发表在C#图书答疑
2011-03-16
是否精华
是
否
版块置顶:
是
否
老师您好:
《C#开发实战宝典》进销存管理中的往来对账窗体:
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 EMS.BuyStock
{
public partial class frmCurrentAccountBook : Form
{
public frmCurrentAccountBook()
{
InitializeComponent();
}
private void frmCurrentAccountBook_Load(object sender, EventArgs e)
{
}
private void tlbtnExit_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
其中的private void frmCurrentAccountBook_Load(object sender, EventArgs e)
{
}
中没有相关代码,如何显示信息呢?请老师指教,谢谢。
《C#开发实战宝典》进销存管理中的往来对账窗体:
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 EMS.BuyStock
{
public partial class frmCurrentAccountBook : Form
{
public frmCurrentAccountBook()
{
InitializeComponent();
}
private void frmCurrentAccountBook_Load(object sender, EventArgs e)
{
}
private void tlbtnExit_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
其中的private void frmCurrentAccountBook_Load(object sender, EventArgs e)
{
}
中没有相关代码,如何显示信息呢?请老师指教,谢谢。