зеркало из https://github.com/DeGsoft/maui-linux.git
16 строки
231 B
C#
16 строки
231 B
C#
|
namespace Xamarin.Forms.Controls
|
||
|
{
|
||
|
public class AppLifeCycle : Application
|
||
|
{
|
||
|
public AppLifeCycle()
|
||
|
{
|
||
|
MainPage = new ContentPage
|
||
|
{
|
||
|
Content = new Label
|
||
|
{
|
||
|
Text = "Testing Lifecycle events"
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|