|
011-imGui窗口中的单选框RadioBox
郁金香灬外挂技术
https://www.yjxsoft.com/
本教程视频1920*1080分辩率下观看最佳
VS2017+win10 64位 环境
郁金香老师:扣扣 150330575
欢迎大家参加 郁金香灬技术 游戏安全与外挂的研究学习。
兴趣是我们最好的老师
成长需要过程与循序渐进
兴趣+坚持+时间+优秀的教程会帮助你快速成功
学习目标:
imGui窗口中的单选框RadioBox
RadioBox返回值
// use with e.g. if (RadioButton("one", my_value==1)) { my_value = 1; }
IMGUI_API bool RadioButton(const char* label, bool active);
// shortcut to handle the above pattern when value is an integer
IMGUI_API bool RadioButton(const char* label, int* v, int v_button);
active 为真置选中状态 为假取消选中
返回值 标记了你是否单击了此UI对象。
//方式一
//方式二
|
|