發表文章

目前顯示的是 5月, 2017的文章

DLL檔的輸出、參考及使用

圖片
1.建DLL檔方法 2.單一方案輸出多個DLL檔方法 3.參考DLL檔的方法 4.使用DLL檔物件的方法

C#-多表單上下頁功能

以Form2為例         //上一頁         private void button1_Click(object sender, EventArgs e)         {                                 this.Close();                             }         //下一頁         private void button2_Click(object sender, EventArgs e)         {             Form3 f3 = new Form3();             f3.Owner = this;             f3.ShowDialog();         }