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
Esempio n. 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));
 }
Esempio n. 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));
 }
Esempio n. 3
0
 public unsafe static bool Combo(string label, ref int current_item, string[] items)
 => ImGuiNative.igCombo(label, ref current_item, items, items.Length, 5);