demo-xf-app-1a/MobileApp1/Views/MyFoldersPage.xaml.cs

20 lines
402 B
C#
Raw Permalink Normal View History

2021-08-02 21:49:48 +00:00
using System;
2022-09-30 17:06:31 +00:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2021-08-02 21:49:48 +00:00
using Xamarin.Forms;
2022-09-30 17:06:31 +00:00
using Xamarin.Forms.Xaml;
2021-08-02 21:49:48 +00:00
namespace MobileApp1.Views
{
2022-09-30 17:06:31 +00:00
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class MyFoldersPage : TabbedPage
2021-08-02 21:49:48 +00:00
{
public MyFoldersPage()
2021-08-02 21:49:48 +00:00
{
InitializeComponent();
}
}
}