Skip to content

Commit

Permalink
Chimney.Shared.UserControl.ChimneyServerUserControl
Browse files Browse the repository at this point in the history
A implementation of the Chimney.MPD server as a UserControl
  • Loading branch information
opengd committed Jul 26, 2015
1 parent b8fe884 commit 13ffbe0
Show file tree
Hide file tree
Showing 2 changed files with 3,285 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Chimney.Shared/UserControls/ChimneyServerUserControl.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<UserControl xmlns:PlayerFramework="using:Microsoft.PlayerFramework"
x:Class="Chimney.Shared.UserControls.ChimneyServerUserControl"
xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Chimney.Shared.UserControls"
xmlns:d="https://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="https://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="0"
d:DesignWidth="0"
xmlns:chimneympd="using:Chimney.MPD"
>

<UserControl.Resources>
<chimneympd:ChimneyMPDServer x:Key="chimneyMpdServer" x:Name="chimneyMpdServer"/>
</UserControl.Resources>
<Grid Visibility="Visible">
<MediaElement x:Name="ChimneyMPDMediaElement" AutoPlay="False" AudioCategory="BackgroundCapableMedia" RealTimePlayback="True" AreTransportControlsEnabled="False"/>
</Grid>
</UserControl>
Loading

0 comments on commit 13ffbe0

Please sign in to comment.