上一页 1 ··· 89 90 91 92 93 94 95 96 97 ··· 128 下一页
摘要: 1、使用ps打开图片 2、图像->图像大小 3、自定义大小 阅读全文
posted @ 2018-05-23 15:36 朱小勇 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 1、在Resources目录新建一个.qrc文件 2、在解决方案的Resource Files中添加这个文件 3、为这个qrc添加资源,建议把资源都放进Resources 阅读全文
posted @ 2018-05-23 14:33 朱小勇 阅读(1158) 评论(0) 推荐(0) 编辑
摘要: 转:https://blog.csdn.net/wxb1553725576/article/details/42042869 在vs环境下用qt进行开发时,常常需要用到各种资源,如图表、样式表等。在这种情况下,使用资源文件是最恰当的选择,使用资源文件可以将资源编译到.exe文件中,即使脱离编译器独立 阅读全文
posted @ 2018-05-23 13:54 朱小勇 阅读(3595) 评论(0) 推荐(0) 编辑
摘要: 转:http://blog.sina.com.cn/s/blog_7f7cd96601013trt.html 在设计可供用户调整大小的窗体时,如何实现该窗体上的控件也应能正确地随窗体的改变而自动调整大小并且能重新定位?下面介绍如何将控件锚定到窗体上。 首先,选择要锚定的控件。然后,在属性窗口中,单击 阅读全文
posted @ 2018-05-23 10:21 朱小勇 阅读(462) 评论(0) 推荐(0) 编辑
摘要: public static String GetLocalIp() { String[] Ips = GetLocalIpAddress(); foreach (String ip in Ips) if (ip.StartsWith("10.80.")) return ip; foreach (S... 阅读全文
posted @ 2018-05-22 15:42 朱小勇 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 1、在类中声明 delegate void setDebugDelegate(string info);//线程访问textbox委托函数 private void setDebug(string info)//实际访问textbox函数 { textBox1.AppendText(IMCout + 阅读全文
posted @ 2018-05-22 11:14 朱小勇 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 转:https://www.cnblogs.com/comsky/p/6020327.html 如果获得当前进程的Id用: Process[] processes = Process.GetProcesses(); foreach(Process process in processes) { if 阅读全文
posted @ 2018-05-21 15:46 朱小勇 阅读(9185) 评论(0) 推荐(0) 编辑
摘要: 转:https://www.cnblogs.com/muyoucai/p/6257213.html Control类提供了一个Invoke方法来给子线程访问主线程的控件,它的原型是酱紫的: method是已创建的委托对象,如果该对象的关联方法有参数,那就放在数组args中,没有就不用传 Invoke 阅读全文
posted @ 2018-05-21 14:26 朱小勇 阅读(382) 评论(0) 推荐(0) 编辑
摘要: public static String GetLocalIp() { String[] Ips = GetLocalIpAddress(); foreach (String ip in Ips) if (ip.StartsWith("10.80.")) return ip; foreach (St 阅读全文
posted @ 2018-05-18 11:42 朱小勇 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 转:https://www.cnblogs.com/lzy575566/p/7718815.html c#结构体和字节流之间的相互转换 结构体转byte数组 1 首先要明白 ,是 在那个命名空间下 System.Runtime.InteropServices; 2 首先得到结构体的大小 2 开辟相应 阅读全文
posted @ 2018-05-17 17:27 朱小勇 阅读(1221) 评论(0) 推荐(0) 编辑
上一页 1 ··· 89 90 91 92 93 94 95 96 97 ··· 128 下一页