| 12345678910111213141516171819202122232425262728293031 |
- using System;
- using Android.App;
- using Android.Content;
- using Android.Runtime;
- using Android.Views;
- using Android.Widget;
- using Android.OS;
- namespace FormulaOneApp.Classic.Android
- {
- [Activity(Label = "FormulaOneApp.Classic.Android", MainLauncher = true, Icon = "@drawable/icon")]
- public class MainActivity : Activity
- {
- int count = 1;
- protected override void OnCreate(Bundle bundle)
- {
- base.OnCreate(bundle);
- // Set our view from the "main" layout resource
- SetContentView(Resource.Layout.Main);
- // Get our button from the layout resource,
- // and attach an event to it
- Button button = FindViewById<Button>(Resource.Id.MyButton);
- button.Click += delegate { button.Text = string.Format("{0} clicks!", count++); };
- }
- }
- }
|