This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
aurora-sharp-desktop/Aurora/Design/Components/MediaPlayer/Player.xaml.cs

16 lines
313 B
C#
Raw Normal View History

2019-05-20 00:21:54 +00:00
using System;
using System.Collections.Generic;
using Xamarin.Forms;
2019-07-05 18:17:09 +00:00
namespace Aurora.Design.Components.MediaPlayer
2019-05-20 00:21:54 +00:00
{
public partial class Player : ContentView
{
public Player()
{
BindingContext = new PlayerViewModel();
2019-05-20 00:21:54 +00:00
InitializeComponent();
}
}
}