回憶碼農這一道、基本可以用正文的**概括。
現遭遇1年之癢,有些迷茫,有些疲憊。求大神指引。
看別人共享的**和論道,感覺都好有深度哦~~。
大二///
*****************大二時候碼的*************************
protected
void button1_click(object sender, eventargs e)
大四畢設
///*****************大四畢業設計時候用的*******************
protected
void button1_click(object sender, eventargs e)
剛入職///
*******************入職培訓後用的******************
#region 事件
#region 根據檢索條件檢索使用者資訊
//////
根據檢索條件檢索使用者資訊
///protected
void btnsearchuserinfo_click(object sender, eventargs e)
%' and vcdepartment like '%% '
#endregion
轉正///
*******************轉正後碼的******************
#region 事件
#region 根據檢索條件檢索使用者資訊
//////
根據檢索條件檢索使用者資訊
///protected
void btnsearchuserinfo_click(object sender, eventargs e)
{try
{string strusername = txtusername.text.trim();//
使用者姓名
string strdepartmentid = ddldepartment.selectedvalue;//
使用者所屬部門id
datatable dtuser = searchuserinfo(strusername, strdepartmentid);//
獲取使用者資料
bindgridview(dtuser);//
繫結使用者資料到gridview
#endre
現在///
*******************畢業一年後的現在*********************
#region 事件
#region 根據檢索條件檢索使用者資訊
//////
根據檢索條件檢索使用者資訊
///protected
void btnsearchuserinfo_click(object sender, eventargs e)
{try
{string stremployeename = txtemployeename.text.trim();//
員工姓名
string stremployeeid = txtemployeeid.text.trim();//
員工編號
string strdepartmentid = ddldepartment.selectedvalue;//
使用者所屬部門id
string strage= txtage.text.trim();//
年齡d_1_entity d_1_entity = new d_1_entity();//
使用者實體初始化
d_1_entity._employeename = stremployeename;
d_1_entity._employeeid = stremployeeid;
d_1_entity._departmentid = strdepartmentid;
d_1_entity._age = strage;
datatable dtuser = d_1_entity.getdata();//
獲取使用者資料
bindgridview(dtuser);//
繫結使用者資料到gridview
#endregion
評教,這一路
週六日評教,這兩天自己是一點也沒閒著。隨著昨天評教的結束,自己也總算是感覺放下了乙個沉甸甸的擔子,回想評教的這一路,走的有些不容易。回想評教的這一路,自己將從下面幾個階段來與大家分享。一 評教之業務了解每個學期,學生在離考試周的前乙個月,會被安排一次對自己上課的老師進行一次教學評價,也就是我們說的評...
二叉樹求單一路徑總和
給定乙個二叉樹和乙個目標和,判斷該樹中是否存在根節點到葉子節點的路徑,這條路徑上所有節點值相加等於目標和。說明 葉子節點是指沒有子節點的節點。給定如下二叉樹,以及目標和 sum 22,5 4 8 11 13 4 7 2 1返回 true,因為存在目標和為 22 的根節點到葉子節點的路徑 5 4 11...
Qt初學者,一路磕絆,將兩天來心得發一下聊以遣懷。
初來乍到水平有限,想到啥說啥,不要見笑。1 凡是使用訊號槽的類,都必須是由qobject派生,否則編譯直接報錯。2 mainwindow.obj error lnk2019 無法解析的外部符號 private void thiscall cmainwindow slotreaddataout voi...