示例#1
0
        public override void ViewDidLoad()
        {
            base.ViewDidLoad();
            // Perform any additional setup after loading the view, typically from a nib.

            button.TouchUpInside += (s, e) =>
            {
                //label.Text = "XF:"+textField.Text;
                ShareRules fooShareRules = new ShareRules();
                label.Text = fooShareRules.CalString(textField.Text);
            };
        }
示例#2
0
        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++); };

            EditText fooEditText = FindViewById <EditText>(Resource.Id.editText1);
            TextView fooTextView = FindViewById <TextView>(Resource.Id.textView1);
            Button   fooButton   = FindViewById <Button>(Resource.Id.button1);

            fooButton.Click += (s, e) =>
            {
                //fooTextView.Text = "XF:" + fooEditText.Text;
                ShareRules fooShareRules = new ShareRules();
                fooTextView.Text = fooShareRules.CalString(fooEditText.Text);
            };
        }