Files
IPTVplayer/TV Player/PlayerPage.xaml.cs
T
2024-01-18 17:42:44 +02:00

14 lines
247 B
C#

namespace TV_Player.MAUI;
public partial class PlayerPage : ContentPage
{
public PlayerPage()
{
this.BindingContext = this;
InitializeComponent();
}
private void ContentPage_Loaded(object sender, EventArgs e)
{
}
}