[idd] helper: add simple static widget implementation

This commit is contained in:
Quantum
2025-09-15 03:56:26 -04:00
committed by Geoffrey McRae
parent 042450a708
commit 85e728b59e
7 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#pragma once
#include "CWidget.h"
class CStaticWidget : public CWidget
{
public:
CStaticWidget(LPCWSTR title, DWORD style, HWND parent);
void setText(LPCWSTR text);
};