editor_mainwindow.xml 621 B

12345678910111213
  1. <Window Name="mainWindow" Title="Main Window" DesiredSize="90, 80">
  2. <StackLayout Orientation="Vertical">
  3. <Button Name="btnNewLibrary" Margins="0,0,0,1" OnClick="{Action NewLibrary}">
  4. <Label Text="New Library" HorizontalTextAlign="Center" />
  5. </Button>
  6. <Button Name="btnOpenLibrary" Margins="0,1,0,1" OnClick="{Action OpenLibrary}">
  7. <Label Text="Open Library" HorizontalTextAlign="Center" />
  8. </Button>
  9. <Button Name="btnClose" Margins="0,1,0,0" OnClick="{Action QuitApplication}">
  10. <Label Text="Close" HorizontalTextAlign="Center" />
  11. </Button>
  12. </StackLayout>
  13. </Window>