Skip to content

Yeah WinForm can be "embedded" into SDL2 / GLFW3 #835

Discussion options

You must be logged in to vote

Small update

I have replaced Form with Panel because moving window looks better like real.

        SysWMInfo wm_info = new SysWMInfo();
        sdl.GetWindowWMInfo(window, &wm_info);
        nint winhandle = wm_info.Info.Win.Hwnd;

        // Woohooo that is realistic GUI inside SDL2 like Half-Life Gui :D :D
        System.Drawing.Point p = new System.Drawing.Point();
        int draggable = 0;
        Panel Form = new Panel
        {
            BackColor = System.Drawing.Color.DimGray,
            Text = "WinForm under SDL2",
        };
        Form.MouseDown += (o, s) =>
        {
            p.X = s.X;
            p.Y = s.Y;
            draggable = 1;
        };

        Form.MouseMov…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by Perksey
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant