Skip to content

Commit 86c0b50

Browse files
committed
Uno: fix build
1 parent 56e8ba7 commit 86c0b50

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/LibVLCSharp/Platforms/Windows/VideoView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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

src/LibVLCSharp/Platforms/Windows/VideoViewBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/LibVLCSharp/Platforms/Windows/VideoViewOfTInitializedEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)