|
<UserControl x:Class="SimplePlayer.MainPage"
has a error under
<my:TextScroller
x:Name="trackNameTextBlock"
Canvas.Left="30"
Canvas.Top="1"
Width="140"
FontSize="10"
FontFamily="Verdana" />
<my:ProgressSlider
x:Name="audioPositionSlider"
Canvas.Left="28"
Canvas.Top="16"
Width="185"
Height="10"/>
<my:AnimatedSpeaker
<my:AnimatedSpeaker.RenderTransform>
A reference or assembly missing.
There is no reference on this page only except for
<UserControl x:Class="SimplePlayer.MainPage"
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:my="clr-namespace:AudioPlayer"
What have I missed
|