2011年5月12日

QString 与中文问题(转)

摘要: 来源:http://hi.baidu.com/cyclone/blog/item/9d7293130e5a498d6538dbf1.html首先呢,声明一下,QString 是不存在中文支持问题的,很多人遇到问题,并不是本身 QString 的问题,而是没有将自己希望的字符串正确赋给QString。很简单的问题,"我是中文"这样写的时候,它是传统的 char 类型的窄字符串,我们需要的只不过是通过某种方式告诉QString 这四个汉字采用的那种编码。而问题一般都出在很多用户对自己当前的编码没太多概念,于是一个简 单的 Qt 程序下面这个小程序,估计大家会感到比较亲切。似乎有 阅读全文

posted @ 2011-05-12 18:15 大宝pku 阅读(992) 评论(0) 推荐(1) 编辑

Professional C# - Graphics with GDI+

摘要: 来源:http://www.codeproject.com/KB/books/1861004990.aspxGraphics with GDI+This is the second of the two chapters in this book that covers the elements of interacting directly with the user, that is displaying information on the screen and accepting user input via the mouse or keyboard. In Chapter 9 we 阅读全文

posted @ 2011-05-12 16:28 大宝pku 阅读(1277) 评论(0) 推荐(0) 编辑

C# 自定义鼠标形状

摘要: 核心代码using System;using System.Runtime.InteropServices;using System.Windows.Forms;using System.Drawing;namespace Dabaoku{ class CursorGenerator { [DllImport("user32.dll")] [return: MarshalAs(UnmanagedType.Bool)] public static extern bool GetIconInfo(IntPtr hIcon, ref IconInfo pIconInfo); [D 阅读全文

posted @ 2011-05-12 10:22 大宝pku 阅读(2649) 评论(0) 推荐(0) 编辑

JQuery小记

摘要: 访问dom元素$代表整个dom tree$("#content")$("p")$("li .red")字符串转换为json对象$.parseJSONajax $.ajax({ type: "post", url: "GetUser.ashx", success: function (data) { var t = ""; var json = $.parseJSON(data); $.each(json, function (k, v) { t += k + ":& 阅读全文

posted @ 2011-05-12 08:05 大宝pku 阅读(290) 评论(0) 推荐(0) 编辑

C#绘图双缓冲技术总结(转)

摘要: 来源:http://blog.csdn.net/ifooler/archive/2007/05/06/1598447.aspxGDI+的双缓冲问题终于搞定了, 真是松了一口气!一直以来的误区:.net1.1 和 .net 2.0 在处理控件双缓冲上是有区别的。.net 1.1 中,使用:this.SetStyle(ControlStyles.DoubleBuffer, true);.net 2.0中,使用:this.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);怪不说老是提示参数无效,一直也不知道是这个问题,呵呵要知道,图元无闪烁的实现 阅读全文

posted @ 2011-05-12 08:04 大宝pku 阅读(475) 评论(0) 推荐(0) 编辑

导航