A Beef language binding for libui-ng
Below example displays a blank window.
using libui;
using System;
namespace libuitest1;
class Program
{
static int32 OnClosing(__IntPtr w, __IntPtr data)
{
ui.UiQuit();
return 1;
}
static int Main()
{
var o = scope UiInitOptions();
var err = ui.UiInit(o);
if (err != null) {
Console.Error.WriteLine("Error initializing libui-ng: {0}", scope String(err));
ui.UiFreeInitError(err);
return 1;
}
defer ui.UiUninit();
// Create a new window
var w = ui.UiNewWindow("Hello World!", 300, 200, 0);
ui.UiWindowOnClosing(w, scope => OnClosing, null);
ui.UiControlShow((UiControl)w);
ui.UiMain();
return 0;
}
}
- Windows x86
- Windows x64
- Linux x64 (GNOME)
- Windows
controlgallery | ||
![]() |
![]() |
![]() |
drawtext | histogram | edittable |
![]() |
![]() |
![]() |
- Ubuntu Linux
controlgallery | ||
![]() |
![]() |
![]() |
drawtext | histogram | edittable |
![]() |
![]() |
![]() |