1
這個問題是關於c#。情景是,當我點擊按鈕像文件閱讀,數據處理和文件傾銷行動將發生。每個操作完成後,我會更新狀態(即,文件讀取完畢,數據操作完成),其中在UI(FORM-frmTesting)標籤代表和活動?
按鈕點擊事件是
namespace frmTesting
{
public partial class Form1 : Form
{
private void button1_Click_1(object sender, EventArgs e)
{
class1 l_objClass1 = new class1();
l_objClass1.DoOperation();
}
}
public class class1
{
public int DoOperation()
{
ReadTextFile();
ParsingData();
SaveTextFile();
return 0;
}
private int ReadTextFile()
{
//Read the text File
return 0;
}
private int ParsingData()
{
// Data manipulation
return 0;
}
private int SaveTextFile()
{
// save the file
return 0;
}
}
}
是否有可能通過委託和事件....如果你有任何疑問plz回覆我
喜,賈斯汀.....你能告訴我的順序呼叫button_click事件 – user374191 2010-06-23 12:27:40
使用@ user374191 - 我不知道你的意思是什麼。 – 2010-06-23 12:32:12
FileRead(EventArgs.Empty); -----怎麼可能......只需要一個參數 – user374191 2010-06-23 12:37:38