maui-linux/Xamarin.Forms.Controls/AppLifeCycle.cs

16 строки
231 B
C#
Исходник Обычный вид История

namespace Xamarin.Forms.Controls
{
public class AppLifeCycle : Application
{
public AppLifeCycle()
{
MainPage = new ContentPage
{
Content = new Label
{
Text = "Testing Lifecycle events"
}
};
}
}
}