当前位置:网站首页>BCG 使用之CBCGPProgressDlgCtrl進度條使用
BCG 使用之CBCGPProgressDlgCtrl進度條使用
2022-07-04 19:37:00 【春蕾夏荷_728297725】
CBCGPProgressDlgCtrl進度條的使用跟MFC一樣,拖入進度條控件,然後定義成員變量,CBCGPProgressDlgCtrl m_progressCtrl;
在使用的比特置處:
m_progressCtrl.SetRange32(0, 1000);//設置進度條的最小值和最大值
int nFirstStep = m_progressCtrl.SetStep(10);//設置步長,返回原來步長,默認是最大值的1%
for (int x = 1; x <= 1000; x++)
{
m_progressCtrl.SetPos(x);
int a = m_progressCtrl.StepIt();//在原比特置上增加一個步長距離,配合SetStep使用,先設置步長才能使用這個
}
類似於MFC 這裏不再贅述
边栏推荐
- 92.(cesium篇)cesium楼栋分层
- To sort out messy header files, I use include what you use
- 一文掌握数仓中auto analyze的使用
- 爬虫(6) - 网页数据解析(2) | BeautifulSoup4在爬虫中的使用
- Explicit random number
- 如何使用Async-Awati异步任務處理代替BackgroundWorker?
- PolyFit软件介绍
- Hough transform Hough transform principle
- 函数式接口
- Opencv functions and methods related to binary threshold processing are summarized for comparison and use
猜你喜欢
BCG 使用之新建向导效果
To sort out messy header files, I use include what you use
There are multiple divs in the large div, which are displayed on the same line. After overflow, scroll bars are generated without line breaks
Comment utiliser async awati asynchrone Task Handling au lieu de backgroundworker?
OpenCV的二值化处理函数threshold()详解
node_ Exporter deployment
"Only one trip", active recommendation and exploration of community installation and maintenance tasks
The 300th weekly match of leetcode (20220703)
在线SQL转Excel(xls/xlsx)工具
BI技巧丨权限轴
随机推荐
项目中遇到的线上数据迁移方案1---总体思路整理和技术梳理
PointNeXt:通过改进的模型训练和缩放策略审视PointNet++
大div中有多个div,这些div在同一行显示,溢出后产生滚动条而不换行
牛客小白月赛7 E Applese的超能力
FPGA timing constraint sharing 01_ Brief description of the four steps
牛客小白月赛7 I 新建 Microsoft Office Word 文档
2022CoCa: Contrastive Captioners are Image-Text Fountion Models
Leetcode ransom letter C # answer
Pytorch学习(四)
1002. A+B for Polynomials (25)(PAT甲级)
How test engineers "attack the city" (Part I)
An example of multi module collaboration based on NCF
92.(cesium篇)cesium楼栋分层
PolyFit软件介绍
Nebula importer data import practice
Online sql to excel (xls/xlsx) tool
BCG 使用之CBCGPProgressDlgCtrl进度条使用
HDU 1097 A hard puzzle
LeetCode 赎金信 C#解答
Unity编辑器扩展C#遍历文件夹以及子目录下的所有图片