会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小了白了兔666
博客园
首页
新随笔
联系
订阅
管理
2025年8月26日
触摸键盘注册表项
摘要: 计算机\HKEY_CURRENT_USER\Software\Microsoft\InputMethod\Settings\CommonInputPanelPageLastOpenTimeTouchKeyboardHasEverShown
阅读全文
posted @ 2025-08-26 09:59 小了白了兔666
阅读(30)
评论(0)
推荐(0)
2024年9月27日
openkylin安装任务管理器(系统监视器)
摘要: sudo apt install gnome-system-monitor
阅读全文
posted @ 2024-09-27 10:13 小了白了兔666
阅读(31)
评论(0)
推荐(0)
2020年9月18日
初始化控件panel大小和相对父容器居中
摘要: /// <summary> /// 初始化界面大小 /// </summary> protected void InitForm() { int winwith = Screen.PrimaryScreen.Bounds.Width;//获取显示器宽像素 int winheight = Screen
阅读全文
posted @ 2020-09-18 13:30 小了白了兔666
阅读(286)
评论(0)
推荐(0)
2020年9月11日
datagridview 标题设置背景图片
摘要: private void dgvCaozuoList_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { if (e.RowIndex == -1)//标题行 { int X = e.CellBounds.X; int
阅读全文
posted @ 2020-09-11 16:57 小了白了兔666
阅读(690)
评论(0)
推荐(0)
2020年8月31日
array copy() 的简单使用
摘要: 源码: public static native void arraycopy(Object src, int srcPos, Object dest, int destPos,int length); 参数: src:要复制的数组(源数组) srcPos:复制源数组的起始位置 dest:目标数组
阅读全文
posted @ 2020-08-31 14:14 小了白了兔666
阅读(958)
评论(0)
推荐(0)
C#中OUT的用法
摘要: out 就是一个输出参数!具体请看实例 一个方法有多个返回值时,返回值类型相同可以返回一个数组 1.不用Out的示例: static void Main(string[] args) { int[] nums = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; int[] res
阅读全文
posted @ 2020-08-31 14:10 小了白了兔666
阅读(25267)
评论(0)
推荐(5)
2020年8月28日
c# 在自定义类中控制form窗体中的控件 赋值或修改属性
摘要: c# 在自定义类中控制form窗体中的控件 赋值或修改属性 首先在 自定义类 的外面 声明一个 委托模块 //声明一个委托模块 用来改变form1 窗体中的控件值 public delegate void setStatusDelegate(string requestInfo);//参数的类型可以
阅读全文
posted @ 2020-08-28 14:09 小了白了兔666
阅读(4093)
评论(0)
推荐(0)
公告