Tue, 03 Oct 2023 14:18:25 +0200
add main tabview based on WinUI TabView
#pragma once #include "toolkit.h" typedef void(*UIdrawfunc)(void *gc, void *event, int width, int height); public ref class DrawEventWrapper { public: UIdrawfunc callback = NULL; void *eventdata = NULL; void *gc; Action<int,int> ^action; DrawEventWrapper(void *gc, UIdrawfunc callback, void *eventdata); void Callback(int width, int height); };