16 lines
271 B
C#
16 lines
271 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
|
|
namespace MobileApp1.Views
|
|
{
|
|
public partial class MyStuffPage : ContentPage
|
|
{
|
|
public MyStuffPage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
label1.Text = Guid.NewGuid().ToString();
|
|
}
|
|
|
|
}
|
|
} |