C++ MFC 关于点击按钮更改按钮名字的问题
按钮默认名字为1点一下变成2再点一下又变成1..很简单吧~新手=x=有很多不懂的地方最好留个QQ以后有不懂的方便问哦!...
按钮默认名字为1 点一下变成2 再点一下又变成1
..很简单吧~
新手=x= 有很多不懂的地方 最好留个QQ 以后有不懂的方便问哦! 展开
..很简单吧~
新手=x= 有很多不懂的地方 最好留个QQ 以后有不懂的方便问哦! 展开
2个回答
展开全部
按钮的click消息函数:
OnClick()
{
CString str;
this->GetWindowText(str);
if (str == "1")
this->SetWindowText(_T("2"));
else
this->SetWindowText(_T("1"));
}
OnClick()
{
CString str;
this->GetWindowText(str);
if (str == "1")
this->SetWindowText(_T("2"));
else
this->SetWindowText(_T("1"));
}
追问
这个可以的 不过我想改的是按钮的caption属性 不是标题的。。 能再麻烦下吗
按钮ID:IDC_BUTTON1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
CString str;
GetDlgIem(IDC_BUTTON1)->GetWindowText(str);
if (str == "1")
this->SetWindowText(_T("2"));
else
GetDlgIem(IDC_BUTTON1)->SetWindowText(_T("1"));
GetDlgIem(IDC_BUTTON1)->GetWindowText(str);
if (str == "1")
this->SetWindowText(_T("2"));
else
GetDlgIem(IDC_BUTTON1)->SetWindowText(_T("1"));
追问
0.0 好像有点错误
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询