ImGuiNET / ImGui.NET

An ImGui wrapper for .NET.
MIT License
1.8k stars 298 forks source link

ImGui not showing on my whole screen #472

Closed GamingBonejon closed 2 months ago

GamingBonejon commented 2 months ago

Im having this issue with every project that uses ImGui and I cannot find the solution, I even wiped my computer and it stilled had the issue.

heres my code program.cs ` using ConsoleApp1;

Rend renderer = new Rend(); Thread renderThread = new Thread(new ThreadStart(renderer.Start().Wait)); renderThread.Start(); `

Rend.cs ` using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ClickableTransparentOverlay; using ImGuiNET;

namespace ConsoleApp1 { public class Rend : Overlay { //testing var bool booltest;

    protected override void Render()
    {
        ImGui.Begin("rendtest");
        ImGui.Checkbox("bool test", ref booltest);
    }
}

} `

1: Screenshot 2024-04-10 071431 2: Screenshot 2024-04-10 071437

zaafar commented 2 months ago

issue is not in imgui.net library, closing issue.