igTreeNode() private method

private igTreeNode ( string str_label_id ) : bool
str_label_id string
return bool
コード例 #1
0
ファイル: ImGui.cs プロジェクト: unnamed44/TeraCompass
 public static unsafe bool TreeNode(string label)
 {
     fixed(byte *bytes = System.Text.Encoding.UTF8.GetBytes(label))
     {
         return(ImGuiNative.igTreeNode(bytes));
     }
 }
コード例 #2
0
 public static bool TreeNode(string label)
 {
     return(ImGuiNative.igTreeNode(label));
 }
コード例 #3
0
ファイル: ImGui.cs プロジェクト: se5a/ImGuiCS
 public static bool TreeNode(string label)
 => ImGuiNative.igTreeNode(label);