aboutsummaryrefslogtreecommitdiff
path: root/Views/MainWindow.axaml
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2021-02-01 20:08:04 -0500
committerAndrew Lee <alee14498@protonmail.com>2021-02-01 20:08:04 -0500
commit7928a72c77e2495558a8d08dae8ba651954c1e45 (patch)
tree29510b8e79268cb48850e2ec541ffec62af278ee /Views/MainWindow.axaml
parent204c9a1cbaa4f258c374a49ad1a033dde5cf06ab (diff)
downloaderable-godot-7928a72c77e2495558a8d08dae8ba651954c1e45.tar.gz
erable-godot-7928a72c77e2495558a8d08dae8ba651954c1e45.tar.bz2
erable-godot-7928a72c77e2495558a8d08dae8ba651954c1e45.zip
Name change
Diffstat (limited to 'Views/MainWindow.axaml')
-rw-r--r--Views/MainWindow.axaml11
1 files changed, 6 insertions, 5 deletions
diff --git a/Views/MainWindow.axaml b/Views/MainWindow.axaml
index dabf29b..d580753 100644
--- a/Views/MainWindow.axaml
+++ b/Views/MainWindow.axaml
@@ -1,19 +1,20 @@
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:vm="using:AleeAudioPlayer.ViewModels"
+ xmlns:vm="using:Erable.ViewModels"
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="AleeAudioPlayer.Views.MainWindow"
+ x:Class="Erable.Views.MainWindow"
Icon="/Assets/avalonia-logo.ico"
- Title="Alee Audio Player">
+ Title="Erable Audio Player">
<Design.DataContext>
<vm:MainWindowViewModel/>
</Design.DataContext>
<StackPanel>
<TextBlock Text="{Binding Greeting}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- <Button Name="PlayButton" Width="50" Command="{Binding PlayFunction}" >Play</Button>
- <Button Name="StopButton" Width="50" >Stop</Button>
+ <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>
</StackPanel>
</Window>