File tree Expand file tree Collapse file tree
src/LibVLCSharp/Platforms/Windows Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33 /// <summary>
44 /// VideoView implementation for the UWP platform
55 /// </summary>
6- public class VideoView : VideoView < InitializedEventArgs >
6+ public partial class VideoView : VideoView < InitializedEventArgs >
77 {
88 /// <summary>
99 /// Creates args for <see cref="VideoView{TInitializedEventArgs}.Initialized"/> event
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ namespace LibVLCSharp.Platforms.Windows
2323 /// VideoView base class for the UWP platform
2424 /// </summary>
2525 [ TemplatePart ( Name = PartSwapChainPanelName , Type = typeof ( SwapChainPanel ) ) ]
26- public abstract class VideoViewBase : Control , IVideoView
26+ public abstract partial class VideoViewBase : Control , IVideoView
2727 {
2828 private const string PartSwapChainPanelName = "SwapChainPanel" ;
2929
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace LibVLCSharp.Platforms.Windows
55 /// <summary>
66 /// VideoView base class for the UWP platform with <see cref="Initialized"/> event
77 /// </summary>
8- public abstract class VideoView < TInitializedEventArgs > : VideoViewBase where TInitializedEventArgs : EventArgs
8+ public abstract partial class VideoView < TInitializedEventArgs > : VideoViewBase where TInitializedEventArgs : EventArgs
99 {
1010 /// <summary>
1111 /// Occurs when the <see cref="VideoView"/> is fully loaded and the <see cref="VideoViewBase.SwapChainOptions"/> property is set
You can’t perform that action at this time.
0 commit comments