GetCheckedRadioButton函数!!

GetCheckedRadioButton函数!!,第1张

一下是MFC的实现,看得出是循环迭代,找出档团被check的button,楼主有时可以查看MFC的实行凳橘现粗纤来学习。

int CWnd::GetCheckedRadioButton(int nIDFirstButton, int nIDLastButton) const

{

for (int nID = nIDFirstButtonnID <= nIDLastButtonnID++)

{

if (IsDlgButtonChecked(nID))

return nID// id that matched

}

return 0// invalid ID

}

win32的基本控件通常只要包含windows.h即可

Process process = new Process()//实例

process.StartInfo.CreateNoWindow = true/穗薯/设定不显示窗口

process.StartInfo.UseShellExecute = false

process.StartInfo.FileName = "cmd.exe"//设定程序名

process.StartInfo.RedirectStandardInput = true //猜拦者重定向标准输入

process.StartInfo.RedirectStandardOutput = true //重定向标准输出

process.StartInfo.RedirectStandardError = true//重定向衡橘错误输出

process.Start()

process.StandardInput.WriteLine("ipconfig")//执行的命令

process.StandardInput.WriteLine("exit")

process.WaitForExit()

process.Close()

return process.StandardOutput.ReadToEnd()

P.S. 顺便执行 ipconfig ,并返回执行结果。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8233378.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-14
下一篇 2023-04-14

发表评论

登录后才能评论

评论列表(0条)

保存