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/Frontend/Views/Songs/SongsView.xaml.cs
watsonb8 1fcaffb9b1 First pass at songs view
Using data grid for songs view. Added FileSystemUtil for async folder traversal
2019-05-19 17:25:42 -04:00

17 lines
310 B
C#

using System;
using System.Collections.Generic;
using Xamarin.Forms;
namespace Aurora.Frontend.Views.Songs
{
public partial class SongsView : ContentPage
{
public SongsView()
{
InitializeComponent();
BindingContext = new SongsViewModel();
}
}
}