会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
新生代农民工
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
10
···
12
下一页
2020年11月4日
c# 类似sql中的isnull()语法
摘要: 需要使用三元操作符: newValue = (oldValue is DBNull) ? null : oldValue;
阅读全文
posted @ 2020-11-04 09:07 RookieBoy666
阅读(1580)
评论(0)
推荐(0)
编辑
2020年10月22日
HttPost HttpGet
摘要: /// <summary> /// formprintquery界面 新增 编辑 /// </summary> /// <returns></returns> [HttpPost] public int InsertOrUpdateFormPrintFile() { HttpContext cont
阅读全文
posted @ 2020-10-22 14:44 RookieBoy666
阅读(135)
评论(0)
推荐(0)
编辑
2020年10月15日
GridControl中事件
摘要: gridView1_CellValueChanged事件在 SetRowCellValue后触发 或者编辑修改后触发 this.gridView1.SetRowCellValue(rowindex, "sqty", sumdt.Rows[0]["quantity"].ToString()); 设置复
阅读全文
posted @ 2020-10-15 10:24 RookieBoy666
阅读(295)
评论(0)
推荐(0)
编辑
2020年10月9日
DEV ListBoxControl
摘要: 获取ListBox项目 数量 ItemCount
阅读全文
posted @ 2020-10-09 13:16 RookieBoy666
阅读(489)
评论(0)
推荐(0)
编辑
2020年9月30日
DEV LookUpEdit 下拉框
摘要: System.Windows.Forms.ComboBox-->DevExpress.XtraEditors.LookUpEdit string defaultvalue = ""; DataTable dtep_tagtype = JsonConvert.DeserializeObject<Dat
阅读全文
posted @ 2020-09-30 14:44 RookieBoy666
阅读(291)
评论(0)
推荐(0)
编辑
2020年9月1日
DataTable GridControl 数据结构
摘要: GridControl int[] rows = this.gridView1.GetSelectedRows(); //获取选中行 gridView1int index=gridView1.FocusedRowHandle;//获取选中行id string id = FRDataGridView.
阅读全文
posted @ 2020-09-01 16:22 RookieBoy666
阅读(634)
评论(0)
推荐(0)
编辑
2020年8月4日
二分查找(折半查找)
摘要: 非递归写法: public static int search(int left, int right, int[] array, int key) { int mid = (left + right) / 2; //不在当前搜索集里面 if (key < array[0] || key > arr
阅读全文
posted @ 2020-08-04 14:03 RookieBoy666
阅读(192)
评论(0)
推荐(0)
编辑
2020年7月31日
String常见属性方法
摘要: 1.String.Join string[] s = { "我", "爱", "中","国" }; string s1=String.Join(" ",s); Console.WriteLine(s1); //输出:我 爱 中 国 Console.WriteLine(s1.Length);//长度为
阅读全文
posted @ 2020-07-31 14:43 RookieBoy666
阅读(214)
评论(0)
推荐(0)
编辑
2020年7月23日
获取DataGridview中某列的所有数据
摘要: /// <summary> /// /// </summary> /// <typeparam name="T"></typeparam> /// <param name="dtSource">数据集</param> /// <param name="filedName">列名</param> //
阅读全文
posted @ 2020-07-23 15:01 RookieBoy666
阅读(2131)
评论(0)
推荐(0)
编辑
2020年7月20日
字符串的处理
摘要: /// <summary> /// 获取字符串中的数字 /// </summary> /// <param name="str">字符串</param> /// <returns>数字</returns> public static decimal GetNumber(string str) { d
阅读全文
posted @ 2020-07-20 17:12 RookieBoy666
阅读(136)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
8
9
10
···
12
下一页