ui/wpf/UIwrapper/UIwrapper/window.cpp

Mon, 23 Jan 2017 12:17:34 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Mon, 23 Jan 2017 12:17:34 +0100
changeset 138
d781436e2490
parent 135
b9dc9cdfa23a
permissions
-rw-r--r--

adds scrolledwindow and tabview container (WPF)



#include "stdafx.h"
#include <stdio.h>

#include "window.h"

#using "UIcore.dll"

UI_EXPORT void* __stdcall UIwindow(char *title, void *uiobj) {
	UI::MainWindow ^window = gcnew UI::MainWindow(gcnew String(title), IntPtr(uiobj));
	gcroot<UI::MainWindow^> *ptr = new gcroot<UI::MainWindow^>();
	*ptr = window;
	return ptr;
}

mercurial