15 lines
287 B
C#
15 lines
287 B
C#
![]() |
namespace MobileApp;
|
||
|
|
||
|
public class NewPage1 : ContentPage
|
||
|
{
|
||
|
public NewPage1()
|
||
|
{
|
||
|
Content = new VerticalStackLayout
|
||
|
{
|
||
|
Children = {
|
||
|
new Label { HorizontalOptions = LayoutOptions.Center, VerticalOptions = LayoutOptions.Center, Text = "Welcome to .NET MAUI!"
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
}
|