2 using System.Collections.Generic;
\r
8 namespace org.tizen.ApplicationManual
\r
10 public class App : Application
\r
14 Button eButton = new Button
\r
16 HorizontalOptions = LayoutOptions.Center,
23 eButton.Clicked += (sender, e) =>
25 global::Tizen.Applications.Application.Current.Exit();
\r
28 // The root page of your application
\r
29 MainPage = new ContentPage
\r
31 Content = new StackLayout
\r
33 VerticalOptions = LayoutOptions.Center,
\r
36 HorizontalTextAlignment = TextAlignment.Center,
\r
37 Text = "Welcome to Xamarin Forms!"
\r
45 protected override void OnStart()
\r
47 // Handle when your app starts
\r
50 protected override void OnSleep()
\r
52 // Handle when your app sleeps
\r
55 protected override void OnResume()
\r
57 // Handle when your app resumes
\r