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.myButton2); CurrencyEditText bedrag1 = FindViewById <CurrencyEditText>(Resource.Id.myBedrag); CurrencyEditText bedrag2 = FindViewById <CurrencyEditText>(Resource.Id.myBedrag2); bedrag1.Amount = 133; bedrag2.Amount = 133; // bedrag1.add // this.Bind button.Click += delegate { button.Text = string.Format("{0} clicks!", count++); }; }
public CurrencyFilter(CurrencyEditText currencyEdit) { this.currencyEdit = currencyEdit; }
public MyWatcher(CurrencyEditText currencyEdit) { this.currencyEdit = currencyEdit; }