ImGui.NET
ImGui.NET copied to clipboard
An ImGui wrapper for .NET.
I can't seem to find the overload frame_padding as described in this thread: https://github.com/ocornut/imgui/issues/1254#issuecomment-318958196 I am essentially trying to put an image in a cell of a table and make...
Hello, I would like to use the ImNodes library in my project to display the structure of a database. However, integrating the ImNodes.NET library makes it impossible to execute my...
Mac cimgui binaries for arm64 architecture are not available.
big thanks for making this so that can use C# instead of C++ for ImGui . Do the view ports (ImGui windows outside the main window) work ? Also Im...
I can't figure out what I did wrong.... https://github.com/ImGuiNET/ImGui.NET/blob/master/src/ImGui.NET.SampleProgram/ImGuiController.cs (i use this for example)  Code: ``` _window = VeldridStartup.CreateWindow(new WindowCreateInfo(50, 50, Settings.Config!.windowWidth, Settings.Config.windowHeight, Settings.Config.WindowState, "test")); _gd = VeldridStartup.CreateGraphicsDevice(_window,new GraphicsDeviceOptions(false,...
Im trying to use ImGuiController and its just not working or showing at all. When i use the ObjectBrowser it doesnt appear there either.
In the docking branch, if the main veldrid window is out of focus, scrolling right click etc does not work in ImGui windows outside of the the viewport.
Recently, I encountered a problem when develop my library [ImGui.SdlCs](https://github.com/YTomTJ/ImGui.SdlCs/tree/dev2) to render the UI with SdlRenderer. The major problem is that the widgets couldn't be rendered entirely like following. ...
Hello, `ImGuiIOPtr` becomes `ImGuiIO*` And I find wrong like example `io.SetClipboardTextFn` as unmanaged delegator example `public static delegate* unmanaged[Cdecl] ClipboardTextFn;` But It should in struct like in C# just `ImGuiIO.SetClipboardTextFn(delegate*...
I was implementing imgui into Monogame with an eye on reducing the amount of `unsafe` code that the library needs, and I was able to remove just about every instance...