WM_PAINT添加消息处理函数void CDialog6::OnPaint(){CPaintDC dc(this);// device context for paintingCRect rect;GetClientRect(&rect);CDC dcMem;dcMem.CreateCompati...
分类:
其他好文 时间:
2015-03-04 12:27:41
阅读次数:
191
Problem FLighting SystemDesignInput: StandardInputOutput: StandardOutput You are given the task to designa lighting system for a huge conference hall....
分类:
其他好文 时间:
2015-03-04 00:55:24
阅读次数:
149
结构体struct我们应该不会陌生,从我们刚开始接触C语言的时候就一直学这个,OC中也有,swift的结构体和C和OC的结构体类似;
当我们定义一个结构体的时候,格式如下:
struct Rect {
var width : Double = 0.0
var height : Double = 0.0
}
我们这边定义了一个Rect结构体,里面有两个变量,初始值都为0.0,...
分类:
编程语言 时间:
2015-02-28 18:50:15
阅读次数:
202
首先 需要创建一个 状态栏对象:
CStatusBar m_Statusbar; //状态栏
然后在初始化程序中
//创建状态栏
m_Statusbar.Create(this);
m_Statusbar.SetIndicators(indicators,sizeof(indicators)/sizeof(UINT));
CRect rect;
GetWindowRe...
分类:
编程语言 时间:
2015-02-27 22:57:09
阅读次数:
222
效果实现:1、用四块LayerColor拼凑实现遮罩,新手导航那种:http://cn.cocos2d-x.org/tutorial/show?id=2318成果:能看到遮罩拼成的Rect高亮范围。问题:1、高亮Rect有点怪,不知背景黑色有无关系。2、点击范围和遮罩范围不一致。3、Scene切换过...
分类:
其他好文 时间:
2015-02-26 16:13:46
阅读次数:
138
本人的个人博客为: www.ourd3js.com csdn博客为: blog.csdn.net/lzhlzz 转载请注明出处,谢谢。 在前面几节中重复出现了例如以下代码: svg.selectAll("rect") .data(dataset) ...
分类:
Web程序 时间:
2015-02-25 18:35:09
阅读次数:
201
Problem DescriptionAt the entrance to the university, there is a huge rectangular billboard of size h*w (h is its height and w is its width). The board is the place where all possible announcements are...
分类:
其他好文 时间:
2015-02-24 11:28:39
阅读次数:
138
6.4.8区域 android.graphics.Region与Region.Op在Canvas的绘画时,我们可能碰到止需要显示半个矩形,或者显示一部分图片,那么我们就要用到Canvas的设置区域的方法,有clipRect(Rect rect,Region.Op op)、clipRegion(Region region)这两个方法。Region表示的是一个区域和Rect不同的是,它可以表示的一个不...
分类:
其他好文 时间:
2015-02-24 10:18:42
阅读次数:
297
【狗刨学习网】
class FrameAnimation
{
private float fps = 10.0f;
private Rect drawPos;
private float time = 0;
private int currentIndex = 0;
public void DrawFrameAnimation(T...
分类:
编程语言 时间:
2015-02-22 12:18:33
阅读次数:
289
回弹的ScrollView网上看到的通常是ElasticScrollView,
有一个Bug:点击子控件滑动时,滑动无效,
所以针对此问题,我对ElasticScrollView做了改进。 原理图代码我在注释中做了详细的说明import android.content.Context;
import android.graphics.Rect;
import android.util.Attr...
分类:
移动开发 时间:
2015-02-17 23:39:07
阅读次数:
240