close

新增一個<類別庫>的專案

image

加入System.Windows.Form參考

image

image

===========================================================================

image

加入剛才類別庫 FactoryPattern_lib

image

加入一個comboBox和一個button

image

 

private void button1_Click(object sender, EventArgs e)
{
     string fileFormat = comboBox1.Text;
     if(fileFormat!="")
     {
         var fileProc = FileProcessorFactory.getInstance(fileFormat);
         string fileType = fileProc.Open();
         MessageBox.Show(fileType);
         fileProc.Close();
     }
                 
}

全站熱搜
創作者介紹
創作者 me1237guy 的頭像
me1237guy

天天向上

me1237guy 發表在 痞客邦 留言(0) 人氣()