aboutsummaryrefslogtreecommitdiff
path: root/Erable/Views/MainWindow.axaml
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2021-02-08 00:00:49 -0500
committerAndrew Lee <alee14498@protonmail.com>2021-02-08 00:00:49 -0500
commitf5a7e3ef7e25aa2545f541e171f2d5f6fe43ecc7 (patch)
tree6f5dbb64c68ff3bf8a2cd771366ac5ff466d183d /Erable/Views/MainWindow.axaml
parentc7428fab1c38d29bcc50ee263678504e34d01318 (diff)
downloaderable-godot-f5a7e3ef7e25aa2545f541e171f2d5f6fe43ecc7.tar.gz
erable-godot-f5a7e3ef7e25aa2545f541e171f2d5f6fe43ecc7.tar.bz2
erable-godot-f5a7e3ef7e25aa2545f541e171f2d5f6fe43ecc7.zip
Erable playing audio in bg thread; Sirop backend initalized; Msgbox added
Diffstat (limited to 'Erable/Views/MainWindow.axaml')
-rw-r--r--Erable/Views/MainWindow.axaml4
1 files changed, 3 insertions, 1 deletions
diff --git a/Erable/Views/MainWindow.axaml b/Erable/Views/MainWindow.axaml
index 6bb4cd1..02d362a 100644
--- a/Erable/Views/MainWindow.axaml
+++ b/Erable/Views/MainWindow.axaml
@@ -4,7 +4,7 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
- x:Class="Erable.Views.MainWindow"
+ x:Class="Erable.Views.MainWindow"
Icon="/Assets/avalonia-logo.ico"
Title="Erable">
@@ -16,5 +16,7 @@
<Button Name="PlayButton" Width="80" Command="{Binding PlayFunction}" >Play</Button>
<Button Name="StopButton" Width="80" >Stop</Button>
<Button Name="BrowseButton" Width="80" Command="{Binding BrowseFunction }" >Browse</Button>
+ <Button Name="MessageBoxTest" Width="80" Command="{Binding MsgBoxTest }" >Message Box Test</Button>
+
</StackPanel>
</Window>