mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
100 lines
3.4 KiB
C#
100 lines
3.4 KiB
C#
using System;
|
|
using System.Drawing;
|
|
using System.Runtime.InteropServices;
|
|
using System.Windows.Forms;
|
|
using Raylib;
|
|
using rl = Raylib.Raylib;
|
|
using Color = Raylib.Color;
|
|
|
|
namespace Test.NetFX
|
|
{
|
|
public partial class RayForms : Form
|
|
{
|
|
private Panel gamePanel;
|
|
private bool windowAttached = false;
|
|
|
|
#region WinAPI Entry Points
|
|
|
|
[DllImport("user32.dll")]
|
|
private static extern IntPtr SetWindowPos(IntPtr handle, IntPtr handleAfter, int x, int y, int cx, int cy, uint flags);
|
|
[DllImport("user32.dll")]
|
|
private static extern IntPtr SetParent(IntPtr child, IntPtr newParent);
|
|
[DllImport("user32.dll")]
|
|
private static extern IntPtr ShowWindow(IntPtr handle, int command);
|
|
|
|
#endregion
|
|
|
|
public RayForms()
|
|
{
|
|
Size = new Size(1024, 700);
|
|
Text = "Rayforms";
|
|
|
|
gamePanel = new Panel();
|
|
gamePanel.Size = new Size(800, 500);
|
|
gamePanel.Location = new Point(50, 50);
|
|
|
|
Button button = new Button();
|
|
button.Text = "Attach window";
|
|
button.Size = new Size(150, 20);
|
|
button.Location = new Point(
|
|
(Size.Width / 2) - (button.Size.Width / 2),
|
|
gamePanel.Location.Y + gamePanel.Size.Height + 10
|
|
);
|
|
button.Click += new EventHandler(ClickedButton);
|
|
Controls.Add(button);
|
|
Controls.Add(gamePanel);
|
|
}
|
|
|
|
private void ClickedButton(object sender, EventArgs e)
|
|
{
|
|
if (!windowAttached)
|
|
{
|
|
// new Thread(Test).Start();
|
|
Test();
|
|
}
|
|
}
|
|
|
|
private void Test()
|
|
{
|
|
rl.SetConfigFlags(ConfigFlag.FLAG_WINDOW_UNDECORATED);
|
|
rl.InitWindow(800, 480, "Rayforms test");
|
|
rl.SetTargetFPS(60);
|
|
|
|
IntPtr winHandle = rl.GetWindowHandle();
|
|
Invoke(new Action(() =>
|
|
{
|
|
SetWindowPos(winHandle, Handle, 0, 0, 0, 0, 0x0401 /*NOSIZE | SHOWWINDOW */);
|
|
SetParent(winHandle, gamePanel.Handle);
|
|
ShowWindow(winHandle, 1);
|
|
windowAttached = true;
|
|
}));
|
|
|
|
while (!rl.WindowShouldClose()) // Detect window close button or ESC key
|
|
{
|
|
// Update
|
|
//----------------------------------------------------------------------------------
|
|
// TODO: Update your variables here
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Draw
|
|
//----------------------------------------------------------------------------------
|
|
rl.BeginDrawing();
|
|
rl.ClearBackground(Color.RAYWHITE);
|
|
|
|
rl.DrawText("Congrats! You created your first window!", 190, 200, 20, Color.MAROON);
|
|
rl.DrawText(rl.GetFrameTime().ToString(), 100, 10, 15, Color.MAROON);
|
|
rl.DrawFPS(10, 10);
|
|
|
|
rl.EndDrawing();
|
|
//----------------------------------------------------------------------------------
|
|
}
|
|
rl.CloseWindow();
|
|
}
|
|
|
|
public static void Run()
|
|
{
|
|
Application.Run(new RayForms());
|
|
}
|
|
}
|
|
}
|