igRadioButtonBool() private method

private igRadioButtonBool ( string label, bool active ) : bool
label string
active bool
return bool
示例#1
0
 public static bool RadioButtonBool(string label, bool active)
 {
     return(ImGuiNative.igRadioButtonBool(label, active));
 }
示例#2
0
文件: ImGui.cs 项目: se5a/ImGuiCS
 public static bool RadioButtonBool(string label, bool active)
 => ImGuiNative.igRadioButtonBool(label, active);