window.xml 422 B

123456789101112
  1. <Window Name="mainWindow" Title="A Window">
  2. <StackLayout Margins="2, 0, 2, 0">
  3. <Button Name="btnQuit" OnClick="{Action QuitApplication}" DesiredSize="35, 15">
  4. <Label Name="lblCaption" Text="Close" />
  5. </Button>
  6. <Button Name="btnNew" OnClick="{Action NewLibrary}" Margins="0, 15, 0, 0" DesiredSize="70, 20">
  7. <Label Name="lblCaption" Text="New Library" />
  8. </Button>
  9. </StackLayout>
  10. </Window>