当前位置:网站首页>BCG 使用之CBCGPProgressDlg进度条使用
BCG 使用之CBCGPProgressDlg进度条使用
2022-07-04 18:32:00 【春蕾夏荷_728297725】
1、代码如下所示
CBCGPProgressDlg dlg;
CBCGPProgressDlgParams params;
params.m_nRangeMax = 0;
params.m_nRangeMax = 10000;
params.m_strCaption = L"进度条标题";
params.m_strMessage = L"测试";
params.m_strMessage2 = L"测试1";
dlg.Create(params, theApp.GetMainWnd());
for (int nIndex = 0; nIndex < 10000; nIndex++)
{
if (dlg.IsCancelled())
{
}
dlg.SetPos(nIndex);
}
2、效果图如下:
边栏推荐
- Shell 编程核心技术《一》
- LeetCode 赎金信 C#解答
- 反射(一)
- 1005 Spell It Right(20 分)(PAT甲级)
- Leetcode ransom letter C # answer
- ftp、sftp文件传输
- 26. Delete the duplicate item C solution in the ordered array
- Lenovo explains in detail the green smart city digital twin platform for the first time to solve the difficulties of urban dual carbon upgrading
- Shell programming core technology "four"
- There are multiple divs in the large div, which are displayed on the same line. After overflow, scroll bars are generated without line breaks
猜你喜欢
Master the use of auto analyze in data warehouse
读写关闭的channel是啥后果?
92.(cesium篇)cesium楼栋分层
整理混乱的头文件,我用include what you use
用实际例子详细探究OpenCV的轮廓绘制函数drawContours()
大div中有多个div,这些div在同一行显示,溢出后产生滚动条而不换行
redis分布式锁的8大坑总结梳理
Detailed explanation of the binary processing function threshold() of opencv
在线SQL转Excel(xls/xlsx)工具
Opencv functions and methods related to binary threshold processing are summarized for comparison and use
随机推荐
添加命名空间声明
Shell 编程核心技术《一》
Detailed explanation of issues related to SSL certificate renewal
The latest progress of Intel Integrated Optoelectronics Research promotes the progress of CO packaging optics and optical interconnection technology
. Net ORM framework hisql practice - Chapter 2 - using hisql to realize menu management (add, delete, modify and check)
Hough Transform 霍夫变换原理
There are multiple divs in the large div, which are displayed on the same line. After overflow, scroll bars are generated without line breaks
数组中的第K个最大元素
Don't just learn Oracle and MySQL!
Unity adds a function case similar to editor extension to its script, the use of ContextMenu
Stream stream
Pointnet/Pointnet++点云数据集处理并训练
How to use async Awati asynchronous task processing instead of backgroundworker?
线上数据库迁移的几种方法
PointNeXt:通过改进的模型训练和缩放策略审视PointNet++
Shell programming core technology "four"
大div中有多个div,这些div在同一行显示,溢出后产生滚动条而不换行
Wireshark网络抓包
Generate XML elements
1009 Product of Polynomials(25 分)(PAT甲级)