blob: dabf29bdee5eb5e672f814262e692d9b68adf2c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="using:AleeAudioPlayer.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"
Icon="/Assets/avalonia-logo.ico"
Title="Alee 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>
</StackPanel>
</Window>
|