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

16 lines
271 B
C#
Raw Normal View History

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