aboutsummaryrefslogtreecommitdiff
path: root/Views
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2021-02-01 22:13:46 -0500
committerAndrew Lee <alee14498@protonmail.com>2021-02-01 22:13:46 -0500
commitc7428fab1c38d29bcc50ee263678504e34d01318 (patch)
treebf5c4a63afc1513d361c6b18fd6c6cf3f0aaaa27 /Views
parentd5f8e3f543e138b43fca95ed058345b9ab446d2f (diff)
downloaderable-godot-c7428fab1c38d29bcc50ee263678504e34d01318.tar.gz
erable-godot-c7428fab1c38d29bcc50ee263678504e34d01318.tar.bz2
erable-godot-c7428fab1c38d29bcc50ee263678504e34d01318.zip
Moved project files
Diffstat (limited to 'Views')
-rw-r--r--Views/MainWindow.axaml20
-rw-r--r--Views/MainWindow.axaml.cs22
2 files changed, 0 insertions, 42 deletions
diff --git a/Views/MainWindow.axaml b/Views/MainWindow.axaml
deleted file mode 100644
index d580753..0000000
--- a/Views/MainWindow.axaml
+++ /dev/null
@@ -1,20 +0,0 @@
-<Window xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- 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="Erable.Views.MainWindow"
- Icon="/Assets/avalonia-logo.ico"
- Title="Erable Audio Player">
-
- <Design.DataContext>
- <vm:MainWindowViewModel/>
- </Design.DataContext>
- <StackPanel>
- <TextBlock Text="{Binding Greeting}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- <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
deleted file mode 100644
index 814bc0f..0000000
--- a/Views/MainWindow.axaml.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using Avalonia;
-using Avalonia.Controls;
-using Avalonia.Markup.Xaml;
-
-namespace Erable.Views
-{
- public class MainWindow : Window
- {
- public MainWindow()
- {
- InitializeComponent();
-#if DEBUG
- this.AttachDevTools();
-#endif
- }
-
- private void InitializeComponent()
- {
- AvaloniaXamlLoader.Load(this);
- }
- }
-} \ No newline at end of file