示例#1
0
        private void Build()
        {
            this.GetLoad().Subscribe(ea => UpdateLabel("form loaded"));

            var clickCount = 0;

            BtnClickMe.GetClicks().Subscribe(ea => UpdateLabel("clicked " + ++clickCount + " times"));
        }
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            SetContentView(Resource.Layout.Main);

            BtnClickMe.SetCommand("Click", ViewModel.BtnClick);
        }