2011-03-27 38 views
0

我已經給出了一些實際上是帶有Winform模塊的類庫的代碼。顯然,我不能直接運行類庫。c#在類庫winforms中顯示錶單

有無論如何,我可以「運行」它,以便我可以看到運行時窗體的外觀?我需要檢查錨定/停靠等?

感謝

回答

4

建立一個新的WinForms項目,引用模塊,創建窗體的實例,並顯示:

using WfModule; 
namespace WindowsFormsApplication1 
{ 
    static class Program 
    { 
     /// <summary> 
     /// Der Haupteinstiegspunkt für die Anwendung. 
     /// </summary> 
     [STAThread] 
     static void Main() 
     { 
      Application.EnableVisualStyles(); 
      Application.SetCompatibleTextRenderingDefault(false); 
      Application.Run(new WfModuleForm()); 
     } 
    } 
} 

假設你的DLL被稱爲「WfModule.Dll」和形式被稱爲「WfModuleForm」。

1

您應該能夠創建一個新的WinForms項目(一個EXE,而不是一個DLL),添加DLL庫作爲參考,然後實例,並顯示在DLL中定義的形式的一個實例圖書館。