Mue's WPF MusicPlayer
Hiho,
here is the latest version of my WPF MP3-Player ...
here is the latest version of my WPF MP3-Player ...
<ControlTemplate x:Key="myContent">
<Border Margin="4" Padding="4"
HorizontalAlignment="Center"
BorderBrush="Silver"
BorderThickness="1"
CornerRadius="5">
<DockPanel HorizontalAlignment="Center">
<TextBlock HorizontalAlignment="Center"
DockPanel.Dock="Top" Text="DefaultText" />
<Button DockPanel.Dock="Top" Content="Check 1" />
<Button DockPanel.Dock="Top" Content="Check 2" />
<Button DockPanel.Dock="Top" Content="Check 3" />
<DockPanel DockPanel.Dock="Top" HorizontalAlignment="Center">
<Button DockPanel.Dock="Left" Content="On" />
<Button DockPanel.Dock="Right" Content="Off" />
</DockPanel>
<Slider Orientation="Vertical" DockPanel.Dock="Top"
HorizontalAlignment="Center" Height="100" />
<TextBlock HorizontalAlignment="Center" DockPanel.Dock="Top" Text="Line 1" />
<TextBlock HorizontalAlignment="Center" DockPanel.Dock="Top" Text="Line 2" />
<TextBlock HorizontalAlignment="Center" DockPanel.Dock="Top" Text="Line 3" />
<Button DockPanel.Dock="Top" Content="Normalize" />
<Button DockPanel.Dock="Top" Content="Invert" />
<Button DockPanel.Dock="Top" Content="Print" />
<Slider Orientation="Horizontal" Value="5" Minimum="0" Maximum="10" />
</DockPanel>
</Border>
</ControlTemplate>
<DockPanel LastChildFill="False">
<ContentControl Template="{StaticResource myContent}" />
<ContentControl Template="{StaticResource myContent}" />
<ContentControl Template="{StaticResource myContent}" />
<ContentControl Template="{StaticResource myContent}" />
<ContentControl Template="{StaticResource myContent}" />
</DockPanel>