PropertyGrid successfully implemented.

This commit is contained in:
MusicalProgrammer
2018-10-22 14:19:51 -04:00
parent bd37f8e22d
commit 09d9af492f
6 changed files with 105 additions and 59 deletions

12
PropertyWindow.h Normal file
View File

@@ -0,0 +1,12 @@
#pragma once
class PropertyWindow {
public:
PropertyWindow(int x, int y, int sx, int sy, HMODULE hThisInstance);
bool onCreate(int x, int y, int sx, int sy, HMODULE hThisInstance);
void onResize();
private:
HWND _propGrid;
HWND _hwndProp;
void _redraw(HWND hwnd);
};