代码搜索结果

找到约 8,819 项符合 RGB 的代码

untitled-25.txt

54 MFC Windows程序设计(第2版) 所有用来创建画刷的CBrush构造函数都会产生资源异常问题,因而也就不能创建画刷了。 将阴影线索引和 COLORREF值传送给 CBrush的构造函数或调用 CBrush:: CreateHatch Brush都能创建一个阴影线画刷。语句 CBrush brush(HS.DIAGCROSS, RGB(255

字体对话框颜色.txt

CFontDialog弹出时颜色为黑色,如何改变呢? CFontDialog dlg; dlg.m_cf.rgbColors=RGB(0,0,255); dlg.DoModal();

som_colorcode.html

SOM Toolbox / som_colorcode

sample.ico

# # Example icon file # screen width 640 screen height 480 screen colors 16 screen background 0 screen map rgb 0 0 0 is . # Black rgb 0 0 170 is 1 # Blue rgb 0 170 0 is 2 # Green rg

gamedlg.cpp

// gameDlg.cpp : implementation file // #include "stdafx.h" #include "game.h" #include "gameDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__;

diffusefilter.cpp

///////////////////////////////////////////////////////////////////////////////// // // DiffuseFilter.cpp: implementation of the CDiffuseFilter class. // //////////////////////////////////////////

specialdetectionfilter.cpp

///////////////////////////////////////////////////////////////////////////////// // // SpecialDetectionFilter.cpp: implementation of the CSpecialDetectionFilter class. // ////////////////////////

egg.h

/***************************************************************************** 版权所有 (C) 2005-2005 Sun Zhigang (http://egg.sunner.cn) 该系统是自由软件;您可以按照自由软件基金会所公布的GNU通用公共许可证(GPL)进行 修改或重新发布;许可证

common.cpp

#include "stdafx.h" #include "math.h" #include "Common.h" double Slope(CPoint pt1,CPoint pt2) { double x,y; y = pt2.y - pt1.y; x = pt2.x - pt1.x; if(x) { return y/x; } else {