Exemplo n.º 1
0
        void EditClicked(object sender, EventArgs e)
        {
            var createNotesVc = new CreateNotesVC();

            createNotesVc.isEdit = false;
            this.NavigationController.PushViewController(createNotesVc, true);
        }
Exemplo n.º 2
0
        public void RowSelected(UITableView tableView, NSIndexPath indexPath)
        {
            if (IosUtils.IosUtility.IsReachable())
            {
                var createNotesVc = new CreateNotesVC();
                createNotesVc.isEdit      = true;
                createNotesVc.notes       = notes[indexPath.Row];
                createNotesVc.accountId   = AccountCode.AccountId;
                createNotesVc.accountCode = AccountCode.AccountCode;
                createNotesVc.entityCode  = EntityCode.CompCode;

                this.NavigationController.PushViewController(createNotesVc, true);
            }
        }