使用使用者控制項:
專案右鍵新增,使用者控制項,選擇使用者控制項cs
在生成的專案中用設計編輯,點選選單欄生成,生成解決方案,然後使用者控制項就可以使用了
製作簡單的qq視窗,根據資料庫自動新增資料
製作使用者控制項:
實體類:(qq,haoyou)
usinghaoyou:包含兩個屬性擴充套件,使顯示暱稱和個性簽名system;
using
system.collections.generic;
using
system.linq;
using
system.text;
namespace
public
string password
public
string nickname
public
string content }}
using資料訪問類:haoyoudatasystem;
using
system.collections.generic;
using
system.linq;
using
system.text;
using
system.data.sqlclient;
namespace
public
string qqnumber
public
string friendqqnumber
public
string
fnickname
conn.close();
return
end;
}
}public
string
fcontent
conn.close();
return
end;}}
}}
usingform1中:system;
using
system.collections.generic;
using
system.linq;
using
system.text;
using
system.data.sqlclient;
namespace
public listselect(string
qqnb)
}conn.close();
return
hlist;
} }}
using生成顯示:using
system;
using
system.collections.generic;
using
system.componentmodel;
using
system.data;
using
system.drawing;
using
system.linq;
using
system.text;
using
system.windows.forms;
namespace
qq }}}
動態新增使用者控制項
本篇教你動態新增使用者控制項。為了讓使用者控制項能asp.net頁面實現動態新增,首先寫乙個介面igetucable,這個介面有乙個函式,返回物件型別是usercontrol。using system using system.collections.generic using system.lin...
動態新增使用者控制項
本篇教你動態新增使用者控制項。為了讓使用者控制項能asp.net頁面實現動態新增,首先寫乙個介面igetucable,這個介面有乙個函式,返回物件型別是usercontrol。view code using system using system.collections.generic using ...
C 動態新增使用者控制項
主要用到兩個類 assembly和activator,分別來自system.reflection和system命名控制項。本文實現動態新增的主要思想是 通過assembly中的getexecutingassembly 方法來獲取包含 當前執行的 的 程式集,進而使用gettype 通過本專案下的使用...