Initial commit
This commit is contained in:
29
TechMedia.Interface.WindowsDesktop/MainWindow.xaml
Normal file
29
TechMedia.Interface.WindowsDesktop/MainWindow.xaml
Normal file
@@ -0,0 +1,29 @@
|
||||
<Window x:Class="TechMedia.Interface.WindowsDesktop.MainWindow"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:TechMedia.Interface.WindowsDesktop"
|
||||
mc:Ignorable="d"
|
||||
Title="MainWindow" Height="450" Width="800">
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition/>
|
||||
<ColumnDefinition/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Label>Filename:</Label>
|
||||
<TextBox Name="FilenameTextBox" Grid.Row="0" Grid.Column="1" Margin="6"></TextBox>
|
||||
<Button Name="PlayButton"
|
||||
Grid.Row="1"
|
||||
Grid.ColumnSpan="2"
|
||||
Grid.Column="0"
|
||||
Margin="6"
|
||||
Click="PlayButtonClicked">
|
||||
Play
|
||||
</Button>
|
||||
</Grid>
|
||||
</Window>
|
||||
Reference in New Issue
Block a user