标签:列表 cbe line 单选框 comment 控件 单选 文件 sharp
1、IDC_EDIT 编辑控件
获取编辑控件的整数数值
int HRoberts = GetDlgItemInt(H_Roberts);
设置编辑控件上的整数数值
SetDlgItemInt(H_Roberts,12);
2、控制台打印调试信息
添加一个头文件
#include <conio.h>
在需要开启控制台窗口的地方调用
AllocConsole();
//注意检查返回值
在需要输出调试的时候调用_cprintf等函数
如_cprintf(
"i=%d\n"
, i);
3、单选框
2、从控件得到选定的Item
假设在控件列表中已经选定某项,现在要得到被选定项的内容,首先要得到该项的位置,然后得到对应位置的内容。这里会用到两个函数,如:
int nIndex = m_cbExample.GetCurSel();
CString strCBText;
m_cbExample.GetLBText( nIndex, strCBText);
这样,得到的内容就保存在 strCBText 中。
若要选取当前内容,可调用函数GetWindowText(strCBText)。
标签:列表 cbe line 单选框 comment 控件 单选 文件 sharp
原文地址:https://www.cnblogs.com/flyingjun/p/9807254.html