14 lines
247 B
C#
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)
|
|
{
|
|
}
|
|
} |