这两个函数经常一起使用,所以放到一起讲:1
AdjustWindowRect函数功能:该函数依据所需客户矩形的大小,计算需要的窗口矩形的大小。计算出的窗口矩形随后可以传递给CreateWindow函数,用于创建一个客户区所需大小的窗口。函数原型:BOOL
AdjustWindowRect(LPREC...
继续上次的例子,对于list才说只有行,讨论列是没有意义的。 bool insertRows(int
row, int count, const QModelIndex &parent); bool removeRows(int row, int
count, const QModel...
分类:
Web程序 时间:
2014-05-27 01:25:29
阅读次数:
296
字体 成员函数 1、CFont( );
构造一个CFont对象。此对象在使用之前应该先使用CreateFont、CreateFontIndirect、CreatePointFont或CreatePointFontIndirect初始化。
2、 BOOL CreateFont( int nHeight...
分类:
其他好文 时间:
2014-05-23 22:01:02
阅读次数:
567
public interface IBankAccount
//只能加public修饰符,或者什么都不加 { void Playin(decimal money); //函数前不加任何修饰符号 bool
WithDrew(decimal money); ...
分类:
其他好文 时间:
2014-05-19 16:08:19
阅读次数:
253
>__ 2 class CMyApp:public CWinApp 3 { 4 public:
5 virtual BOOL InitInstance(); 6 }; 7 class CMainWindow:public CFrameWnd 8 { 9
public:10 CMain...
分类:
其他好文 时间:
2014-05-19 14:55:06
阅读次数:
400
>__ 2 class CMyApp:public CWinApp 3 { 4 public:
5 virtual BOOL InitInstance(); 6 }; 7 class CMainWindow:public CFrameWnd 8 { 9
public:10 CMain...
分类:
其他好文 时间:
2014-05-19 14:51:43
阅读次数:
364
最近写代码,无意中发现了一个坑,关于自定义比较函数的stl
sort函数的坑,于是记录下来。先贴代码: 1 #include 2 #include 3 #include 4 5 struct finder 6 { 7
bool operator()(int first, in...
分类:
其他好文 时间:
2014-05-19 14:47:48
阅读次数:
319
>__ 2 class CMyApp :public CWinApp 3 { 4 public:
5 virtual BOOL InitInstance(); 6 }; 7 class CMainWindow:public CFrameWnd 8 { 9
protected:10 B...
分类:
其他好文 时间:
2014-05-19 13:15:24
阅读次数:
215
#includeusing namespace std;bool solver(const int
a[],const int n, int & num){ if(NULL == a || 0>= n) return false;
////注意,是小写~ int count = 0; ...
分类:
其他好文 时间:
2014-05-19 12:11:20
阅读次数:
335
1.判断邮箱格式是否正确的代码://利用正则表达式验证-(BOOL)isValidateEmail:(NSString*)email{NSString*emailRegex
=@"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}";NSPredicat...
分类:
移动开发 时间:
2014-05-19 12:09:15
阅读次数:
539