diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2021-02-01 20:08:04 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2021-02-01 20:08:04 -0500 |
| commit | 7928a72c77e2495558a8d08dae8ba651954c1e45 (patch) | |
| tree | 29510b8e79268cb48850e2ec541ffec62af278ee /Views | |
| parent | 204c9a1cbaa4f258c374a49ad1a033dde5cf06ab (diff) | |
| download | erable-godot-7928a72c77e2495558a8d08dae8ba651954c1e45.tar.gz erable-godot-7928a72c77e2495558a8d08dae8ba651954c1e45.tar.bz2 erable-godot-7928a72c77e2495558a8d08dae8ba651954c1e45.zip | |
Name change
Diffstat (limited to 'Views')
| -rw-r--r-- | Views/MainWindow.axaml | 11 | ||||
| -rw-r--r-- | Views/MainWindow.axaml.cs | 2 |
2 files changed, 7 insertions, 6 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>
diff --git a/Views/MainWindow.axaml.cs b/Views/MainWindow.axaml.cs index 22f6710..814bc0f 100644 --- a/Views/MainWindow.axaml.cs +++ b/Views/MainWindow.axaml.cs @@ -2,7 +2,7 @@ using Avalonia; using Avalonia.Controls;
using Avalonia.Markup.Xaml;
-namespace AleeAudioPlayer.Views
+namespace Erable.Views
{
public class MainWindow : Window
{
|
