mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
17 lines
244 B
C++
17 lines
244 B
C++
#include "IconTest.h"
|
|
|
|
IconTest::IconTest()
|
|
{
|
|
CtrlLayout(*this, "Icon Test");
|
|
|
|
String path = GetDataFile("test.png");
|
|
img = StreamRaster::LoadFileAny(path);
|
|
|
|
imgctrl.SetImage(img);
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
IconTest().Run();
|
|
}
|
|
|