本文主要介紹C#窗體裡調用,包括介紹在窗體裡放置兩個命令按鈕等方面。
有了壓縮和解壓縮的類以後,就要在C#窗體裡調用了。怎麼?是新手,不會調用?ok,接著往下看如何在C#窗體裡調用。首先在窗體裡放置兩個命令按鈕(不要告訴我你不會放啊~)。
編寫以下源碼:
///
<summary>
/// 調用源碼
///
</summary>
private void button2_Click_1(object sender, System.EventArgs e)
{
string []FileProperties=new string[2];
FileProperties[0]="C:\\unzipped\\";//待壓縮文件目錄
FileProperties[1]="C:\\zip\\a.zip"; //壓縮後的目標文件
ZipClass Zc=new ZipClass();
Zc.ZipFileMain(FileProperties);
}
private void button2_Click(object sender, System.EventArgs e)
{
string []FileProperties=new string[2];
FileProperties[0]="C:\\zip\\test.zip";//待解壓的文件
FileProperties[1]="C:\\unzipped\\";//解壓後放置的目標目錄
UnZipClass UnZc=new UnZipClass();
UnZc.UnZip(FileProperties);
}
好了,到此為止,如何壓縮和解壓縮的類都已經完成了,需要的朋友直接拿走調吧。