aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-mzying2001-sw/project/main.cpp
blob: 8c9197e9d8f5256235923eef8ae98d78914503b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <sw/SimpleWindow.h>
int main()
{
   sw::Window wnd;
   sw::Button btn;
   wnd.SetLayout<sw::FillLayout>();
   btn.AddHandler(sw::ButtonBase_Clicked,
      [](sw::UIElement& sender, sw::RoutedEventArgs& e) {
         sw::MsgBox::Show(L"Hello, SimpleWindow!");
      });
   wnd.AddChild(btn);
   return 0;
}