会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
蓝瑟黄昏
博客园
首页
新随笔
联系
订阅
管理
2022年12月1日
在UI线程上异步执行Action,不阻止在调用线程上执行。
摘要: /// <summary> /// Executes the Action asynchronously on the UI thread, does not block execution on the calling thread. /// </summary> /// <param name=
阅读全文
posted @ 2022-12-01 15:31 蓝瑟黄昏
阅读(42)
评论(0)
推荐(0)
2022年7月6日
Winform窗体美化
摘要: CSKin、DSKin HZHControls MetroModernUI SunnyUI 搜索 复制
阅读全文
posted @ 2022-07-06 10:20 蓝瑟黄昏
阅读(227)
评论(0)
推荐(0)
2021年12月21日
带参数访问ApiController
摘要: public string GetData(string methodName, string data) { try { //地址 string url = "http://localhost:8080/api/AndroidEAGV/GetAGVScreenAndCarInfo?LoaclIP=
阅读全文
posted @ 2021-12-21 09:49 蓝瑟黄昏
阅读(175)
评论(0)
推荐(0)
2021年8月9日
devexpress gridview样式设置
摘要: //序号列宽度 gridView1.IndicatorWidth = 60; //行不可编辑 gridView1.OptionsBehavior.Editable = false; //复选框多选 gridView1.OptionsSelection.MultiSelect = true; grid
阅读全文
posted @ 2021-08-09 16:03 蓝瑟黄昏
阅读(215)
评论(0)
推荐(0)
2020年3月24日
VS代码提示自动高亮
摘要: Ctrl+Alt+空格 启动建议模式
阅读全文
posted @ 2020-03-24 09:05 蓝瑟黄昏
阅读(298)
评论(0)
推荐(0)
2019年12月20日
winform当前屏幕大小
摘要: 当前的屏幕除任务栏外的工作域大小 this.Width = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width; this.Height = System.Windows.Forms.Screen.PrimaryScreen.Wor
阅读全文
posted @ 2019-12-20 14:00 蓝瑟黄昏
阅读(907)
评论(0)
推荐(0)
2019年11月18日
动态增删改控件
摘要: private void AddGroup() { for (int i = 0; i < 5; i++) { GroupBox gbox = new GroupBox(); gbox.Name = "gbox" + i; gbox.Text = i + "号清洗机"; gbox.Size = ne
阅读全文
posted @ 2019-11-18 14:08 蓝瑟黄昏
阅读(155)
评论(0)
推荐(0)
2018年3月8日
datagridveiw样式
摘要: private void datagridveiw_style() { System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle
阅读全文
posted @ 2018-03-08 17:42 蓝瑟黄昏
阅读(118)
评论(0)
推荐(0)
2017年3月21日
sql 语句 提取中文的首字母
摘要: --先执行上述语句然后调用select dbo.f_GetPy('中国')
阅读全文
posted @ 2017-03-21 15:51 蓝瑟黄昏
阅读(1111)
评论(0)
推荐(0)
2016年7月30日
按键监听及重写
摘要: 一、PreviewKeyDown、KeyDown、KeyPress、KeyUp相关:http://blog.csdn.net/jiankunking/article/details/20611383 需要焦点在控件上才能监听按键。 二、以下代码是重写事件来监听左右键,取消点击回车在datagridv
阅读全文
posted @ 2016-07-30 15:06 蓝瑟黄昏
阅读(349)
评论(0)
推荐(0)
下一页
公告