igCombo() private method

private igCombo ( string label, int &current_item, string items, int items_count, int height_in_items ) : bool
label string
current_item int
items string
items_count int
height_in_items int
return bool
コード例 #1
0
 public unsafe static bool Combo(string label, ref int current_item, string[] items)
 {
     return(ImGuiNative.igCombo(utf8String(label), ref current_item, items, items.Length, 5));
 }
コード例 #2
0
 public unsafe static bool Combo(string label, ref int current_item, string[] items, int heightInItems)
 {
     return(ImGuiNative.igCombo(label, ref current_item, items, items.Length, heightInItems));
 }
コード例 #3
0
ファイル: ImGui.cs プロジェクト: se5a/ImGuiCS
 public unsafe static bool Combo(string label, ref int current_item, string[] items)
 => ImGuiNative.igCombo(label, ref current_item, items, items.Length, 5);