熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

.NET上根據字符串動態創建控件

2022-06-13   來源: .NET編程 

  首先利用SystemTypeGetType方法獲得字符串中指定的控件的類型實例

  這裡需要注意這個字符串的語法根據msdn的解釋

  按名稱和簽名隱藏會考慮簽名的所有部分包括自定義修飾符返回類型參數類型標記和非托管調用約定這是二進制比較

  對於反射屬性和事件按名稱和簽名隱藏如果基類中有同時帶 get 訪問器和 set 訪問器的屬性但派生類中僅有 get 訪問器則派生類屬性隱藏基類屬性並且您將無法訪問基類的設置程序

  自定義特性不是通用類型系統的組成部分

  不對數組或 COM 類型執行搜索除非已將它們加載到可用類表中

  typeName 可以是簡單的類型名包含命名空間的類型名或是包含程序集名稱規范的復雜名稱

  如果 typeName 只包含 Type 的名稱則此方法先是在調用對象的程序集中進行搜索然後在 mscorlibdll 程序集中進行搜索如果 typeName 用部分或完整的程序集名稱完全限定則此方法在指定的程序集中進行搜索

  AssemblyQualifiedName 可以返回完全限定的類型名稱(包含嵌套類型和程序集名稱)所有支持公共語言運行庫的編譯器將發出嵌套類的簡單名稱並且當被查詢時反射依照下列約定構造一個 mangled 名稱

  例如類的完全限定名可能類似於如下形式

  TopNamespaceSubNameSpaceContainingClass+NestedClassMyAssembly

  但是直接使用TypeGetType(SystemWindowsFormsTextBox)獲得Type是Null這是因為WindowsForms程序集是公有的程序集是位於程序集緩存中的而這個程序集有不同的版本為了確定使用的版本我們不僅要提供程序集的名稱還要提供程序集的版本和強名稱照這個思路在使用的net Framework 將這一句寫成TypeGetType(SystemWindowsFormsCheckBox SystemWindowsForms Version= Culture=neutral PublicKeyToken=bace現在運行就沒有問題了問題是我們如何取得所用WindowsForms程序集的版本和強名稱?可以用GetType(CheckBox)AssemblyQualifiedName這樣的語法一旦得到了這些信息我們就可以將這些信息用於其它任何控件因為他們都來自於同一個版本WindowsForms程序集

  利用上面說到的方法現在就可以使用SystemActivatorCreateInstance方法來創建一個TextBox控件了

  public static void CreateControl(string controlType Form form int positionX int positionY)

{

try



string assemblyQualifiedName =  typeof(SystemWindowsFormsForm)AssemblyQualifiedName;

string assemblyInformation = assemblyQualifiedNameSubstring(assemblyQualifiedNameIndexOf());

Type ty = TypeGetType(controlType + assemblyInformation);

Control newControl = (Control)SystemActivatorCreateInstance(ty);

formSuspendLayout();

newControlLocation = new SystemDrawingPoint(positionX positionY);

newControlName = tyName + formControlsCountToString();

formControlsAdd(newControl);

formResumeLayout();

}

catch(Exception ex)

{

throw ex;

}

}

  調用: CreateControl(SystemWindowsFormsTextBox this );


From:http://tw.wingwit.com/Article/program/net/201311/12930.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.