Exemplo n.º 1
0
        private void MesajlarButton_TouchUpInside(object sender, EventArgs e)
        {
            var            LokasyonKisilerStory = UIStoryboard.FromName("MesajlarBaseVC", NSBundle.MainBundle);
            MesajlarBaseVC controller           = LokasyonKisilerStory.InstantiateViewController("MesajlarBaseVC") as MesajlarBaseVC;

            controller.ModalPresentationStyle = UIModalPresentationStyle.FullScreen;
            this.PresentViewController(controller, true, null);
        }
Exemplo n.º 2
0
        public static MesajlarFavoriler Create(MesajlarBaseVC GelenBase2, UITextField AraTxt2)
        {
            var arr = NSBundle.MainBundle.LoadNib("MesajlarFavoriler", null, null);
            var v   = Runtime.GetNSObject <MesajlarFavoriler>(arr.ValueAt(0));

            v.BackgroundColor       = UIColor.Clear;
            v.GelenBase1            = GelenBase2;
            v.AraTxt                = AraTxt2;
            v.Tablo.BackgroundColor = UIColor.Clear;
            v.Tablo.SeparatorStyle  = UITableViewCellSeparatorStyle.None;
            v.Tablo.TableFooterView = new UIView();
            v.MeData                = DataBase.MEMBER_DATA_GETIR()[0];
            return(v);
        }