diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2021-02-01 09:33:59 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2021-02-01 09:33:59 -0500 |
| commit | 7f5e6c86692f4e1ee5f7f7238baa3c706ced4906 (patch) | |
| tree | c3522553f8410292eaedc2676f8ffcdcbc6b7136 /Views | |
| parent | 9afb145c6f23fc64c043d1d63e5b9c0dd7a4ec21 (diff) | |
| download | erable-godot-7f5e6c86692f4e1ee5f7f7238baa3c706ced4906.tar.gz erable-godot-7f5e6c86692f4e1ee5f7f7238baa3c706ced4906.tar.bz2 erable-godot-7f5e6c86692f4e1ee5f7f7238baa3c706ced4906.zip | |
Added buttons
Diffstat (limited to 'Views')
| -rw-r--r-- | Views/MainWindow.axaml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Views/MainWindow.axaml b/Views/MainWindow.axaml index c060012..60d0f4d 100644 --- a/Views/MainWindow.axaml +++ b/Views/MainWindow.axaml @@ -11,7 +11,10 @@ <Design.DataContext>
<vm:MainWindowViewModel/>
</Design.DataContext>
+ <StackPanel>
+ <TextBlock Text="{Binding Greeting}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- <TextBlock Text="{Binding Greeting}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
-
+ <Button Name="PlayButton" Width="50" >Play</Button>
+ <Button Name="StopButton" Width="50" >Stop</Button>
+ </StackPanel>
</Window>
|
