diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2021-11-24 17:19:15 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2021-11-24 17:19:15 -0500 |
| commit | 61ed8a3ffb60d2a037dc0bd2b5b0a47e53670b69 (patch) | |
| tree | 3fd5329ee3a54765cf14ae99a72194e8b8aa0261 /Erable/Views/MainWindow.axaml | |
| parent | 6e207e667ddc77f0901e402fd6d6e04ddf7cd89f (diff) | |
| download | erable-godot-61ed8a3ffb60d2a037dc0bd2b5b0a47e53670b69.tar.gz erable-godot-61ed8a3ffb60d2a037dc0bd2b5b0a47e53670b69.tar.bz2 erable-godot-61ed8a3ffb60d2a037dc0bd2b5b0a47e53670b69.zip | |
Removed .NET files; Now using Godot as the base of the audio player
Diffstat (limited to 'Erable/Views/MainWindow.axaml')
| -rw-r--r-- | Erable/Views/MainWindow.axaml | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/Erable/Views/MainWindow.axaml b/Erable/Views/MainWindow.axaml deleted file mode 100644 index ca78244..0000000 --- a/Erable/Views/MainWindow.axaml +++ /dev/null @@ -1,36 +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"
- Width="800"
- Height="450"
- Icon="/Assets/erable.png"
- Title="Erable">
-
- <Design.DataContext>
- <vm:MainWindowViewModel/>
- </Design.DataContext>
- <StackPanel>
- <DockPanel>
- <Menu DockPanel.Dock="Top">
- <MenuItem Header="_File">
- <MenuItem Header="_Open..."/>
- <Separator/>
- <MenuItem Header="_Exit" PointerPressed="Exit_OnPointerPressed"/>
- </MenuItem>
- <MenuItem Header="_Help">
- <MenuItem Header="_About" PointerPressed="About_OnPointerPressed"/>
- </MenuItem>
- </Menu>
- </DockPanel>
- <Button Name="PlayButton" Width="80" Command="{Binding PlayFunction}" >Play</Button>
- <Button Name="StopButton" Width="80" Command="{Binding StopFunction}">Stop</Button>
- <Button Name="BrowseButton" Width="80" Command="{Binding BrowseFunction }" >Browse</Button>
- <Button Name="ExceptionButton" Width="80" Command="{Binding ExceptionButton}">Exception</Button>
- <Button Name="MessageBoxTest" Width="80" Command="{Binding MsgBoxTest }" >Message Box Test</Button>
- <Slider Name="AudioSlider"/>
- </StackPanel>
-</Window>
|
