2021-08-02 21:49:48 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
|
|
|
|
|
namespace MobileApp1.Views
|
|
|
|
|
{
|
2021-08-06 13:15:24 +00:00
|
|
|
|
public partial class MyFoldersPage : ContentPage
|
2021-08-02 21:49:48 +00:00
|
|
|
|
{
|
2021-08-06 13:15:24 +00:00
|
|
|
|
public MyFoldersPage()
|
2021-08-02 21:49:48 +00:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
label1.Text = Guid.NewGuid().ToString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|