Exemplo n.º 1
0
        public RelationsScreenView(SwitchChangeDelegate SwitchChange)
        {
            BackgroundColor = UIColor.FromRGB (255, 255, 255);

            RalationsListTableView = new UITableView ()
            {
                Source=new RelationsScreenSource(SwitchChange),
            };
            Add (RalationsListTableView);

            Rotate ();
        }
Exemplo n.º 2
0
        public ContactListScreenCell(SwitchChangeDelegate SwitchChange)
            : base(UITableViewCellStyle.Subtitle, Key)
        {
            // TODO: add subviews to the ContentView, set various colors, etc.
            TextLabel.Text="";
            DetailTextLabel.Text="";
            RowInTable = 0;

            EnableSwitch = new UISwitch ();
            EnableSwitch.Frame = new RectangleF ((float)Frame.Width - 70f, 5f, (float)EnableSwitch.Frame.X, (float)EnableSwitch.Frame.Y);
            EnableSwitch.On = false;
            EnableSwitch.ValueChanged += (s, e) => {
                SwitchChange(RowInTable,EnableSwitch.On);
            };
            ContentView.Add(EnableSwitch);
        }
Exemplo n.º 3
0
        public RelationsScreenCell(SwitchChangeDelegate SwitchChange)
            : base(UITableViewCellStyle.Subtitle, Key)
        {
            // TODO: add subviews to the ContentView, set various colors, etc.
            TextLabel.Text="";
            DetailTextLabel.Text="";
            DetailTextLabel.TextColor = UIColor.LightGray;
            RowInTable = 0;

            EnableSwitch = new UISwitch ();
            EnableSwitch.On = false;
            EnableSwitch.BackgroundColor = BackgroundColor;
            EnableSwitch.ValueChanged += (s, e) => {
                SwitchChange(RowInTable,EnableSwitch.On);
            };
            ContentView.Add(EnableSwitch);
            Rotate ();
        }
Exemplo n.º 4
0
 public ContactListScreenSource(List<MyPerson> ContactList,SwitchChangeDelegate SwitchChange,ContactType contactType)
 {
     this.ContactList=ContactList;
     this.SwitchChange = SwitchChange;
     this.contactType = contactType;
 }