1 2 3 4 5 6 7 8 9 10 11 12 13
|
/// <summary>
/// Source du VideoPlayerTest
/// </summary>
public Uri VideoPlayerSource
{
get { return (Uri)GetValue(VideoPlayerSourceProperty); }
set { SetValue(VideoPlayerSourceProperty, value); }
}
// Using a DependencyProperty as the backing store for VideoPlayerSource. This enables animation, styling, binding, etc...
public static readonly DependencyProperty VideoPlayerSourceProperty =
DependencyProperty.Register("VideoPlayerSource", typeof(Uri), typeof(VideoPlayerTest), null); |
Partager