悟生慧

 

2011年6月23日

C#使用递归算法给TreeView控件绑定数据

摘要: /// <summary> /// 查找根节点(parent_ID为0的节点)的子节点 /// </summary> /// <param name="parent_ID">参数,接收根节点ID即0</param> public void bindtree(string parent_ID) { this.tvgood.Nodes.Clear(); DataTable dt = frmgb.Getdata(parent_ID); if (dt.Rows.Count > 0) { for (int i = 0; i < 阅读全文

posted @ 2011-06-23 11:07 悟生慧 阅读(1567) 评论(0) 推荐(0) 编辑

winfrom中的弹出询问消息框提示

摘要: if (dgvgood.Rows.Count > 0) { switch (MessageBox.Show("单据已经修改,要保存吗?", "询问", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2)) { case DialogResult.Cancel: break; case DialogResult.Yes: { //if (string.IsNullOrEmpty(cbperson.Text)) //{ // M 阅读全文

posted @ 2011-06-23 10:50 悟生慧 阅读(2790) 评论(0) 推荐(0) 编辑

导航