KaraokePC/WpfKaraokePlayer/MainWindow.xaml
2016-02-28 16:31:35 -05:00

18 lines
854 B
XML

<Window x:Class="WpfKaraokePlayer.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:WpfKaraokePlayer"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525" Loaded="Window_Loaded">
<Grid>
<Canvas HorizontalAlignment="Left" Height="299" Margin="10,10,0,0" VerticalAlignment="Top" Width="497">
<WindowsFormsHost Name="vlcHost" Height="100" Canvas.Left="329" Canvas.Top="169" Width="100"/>
<Image x:Name="image" Height="279" Canvas.Left="10" Canvas.Top="10" Width="373"/>
</Canvas>
</Grid>
</Window>