Beispiel #1
0
            public InnerCell(string reuseIdentifier) : base(UITableViewCellStyle.Default, reuseIdentifier)
            {
                _text = new UILabel();
                _text.BackgroundColor = UIColor.Clear;
                _text.Font            = HeadingFont;
                _text.Lines           = 0;
                Add(_text);

                _details = new UILabel();
                _details.BackgroundColor = UIColor.Clear;
                _details.Font            = DetailsFont;
                _details.TextColor       = UIColor.Gray;
                Add(_details);

                _details2                 = new UILabel();
                _details2.Font            = UIFont.ItalicSystemFontOfSize(12);
                _details2.BackgroundColor = UIColor.Clear;
                _details2.TextColor       = UIColor.Gray;
                Add(_details2);

                _author      = new UserLabel();
                _author.Font = DetailsFont;
                Add(_author);

                _richDetails2 = new UIView();
                Add(_richDetails2);

                _tags                 = new UILabel();
                _tags.Font            = UIFont.SystemFontOfSize(12);
                _tags.TextColor       = Colors.FromHex("4a6b82");
                _tags.BackgroundColor = UIColor.Clear;
                Add(_tags);
            }
Beispiel #2
0
            public InnerCell(string reuseIdentifier) : base(UITableViewCellStyle.Default, reuseIdentifier)
            {
                _text = new UILabel();
                _text.BackgroundColor = UIColor.Clear;
                _text.Font            = HeadingFont;
                _text.Lines           = 0;
                Add(_text);

                _details = new UILabel();
                _details.BackgroundColor = UIColor.Clear;
                _details.Font            = DetailsFont;
                _details.TextColor       = UIColor.Gray;
                Add(_details);

                _details2                 = new UILabel();
                _details2.Font            = UIFont.ItalicSystemFontOfSize(12);
                _details2.BackgroundColor = UIColor.Clear;
                _details2.TextColor       = UIColor.Gray;
                Add(_details2);

                _author      = new UserLabel();
                _author.Font = DetailsFont;
                Add(_author);

                _tick = new UIImageView(UIImage.FromFile("tick2.png"));
                Add(_tick);
            }
            public InnerCell(string reuseIdentifier)
                : base(UITableViewCellStyle.Default, reuseIdentifier)
            {
                _text = new UILabel();
                _text.BackgroundColor = UIColor.Clear;
                _text.Font = HeadingFont;
                _text.Lines = 0;
                Add (_text);

                _details = new UILabel();
                _details.BackgroundColor = UIColor.Clear;
                _details.Font = DetailsFont;
                _details.TextColor = UIColor.Gray;
                Add (_details);

                _details2 = new UILabel();
                _details2.Font = UIFont.ItalicSystemFontOfSize(12);
                _details2.BackgroundColor = UIColor.Clear;
                _details2.TextColor = UIColor.Gray;
                Add (_details2);

                _author = new UserLabel();
                _author.Font = DetailsFont;
                Add (_author);

                _richDetails2 = new UIView();
                Add(_richDetails2);

                _tags = new UILabel();
                _tags.Font = UIFont.SystemFontOfSize(12);
                _tags.TextColor = Colors.FromHex("4a6b82");
                _tags.BackgroundColor = UIColor.Clear;
                Add (_tags);
            }
Beispiel #4
0
            public InnerCell(string reuseIdentifier)
                : base(UITableViewCellStyle.Default, reuseIdentifier)
            {
                _text = new UILabel();
                _text.BackgroundColor = UIColor.Clear;
                _text.Font = HeadingFont;
                _text.Lines = 0;
                Add (_text);

                _details = new UILabel();
                _details.BackgroundColor = UIColor.Clear;
                _details.Font = DetailsFont;
                _details.TextColor = UIColor.Gray;
                Add (_details);

                _details2 = new UILabel();
                _details2.Font = UIFont.ItalicSystemFontOfSize(12);
                _details2.BackgroundColor = UIColor.Clear;
                _details2.TextColor = UIColor.Gray;
                Add (_details2);

                _author = new UserLabel();
                _author.Font = DetailsFont;
                Add (_author);

                _tick = new UIImageView(UIImage.FromFile("tick2.png"));
                Add(_tick);
            }