コード例 #1
0
ファイル: SettingsSyncCell.cs プロジェクト: xleon/mobileapp
        public override void AwakeFromNib()
        {
            ContentView.BackgroundColor = ColorAssets.TableBackground;
            StatusLabel.TextColor       = ColorAssets.Text2;
            LoadingIcon.IndicatorColor  = ColorAssets.Text2;

            ContentView.InsertSeparator();
        }
コード例 #2
0
        public override void AwakeFromNib()
        {
            base.AwakeFromNib();

            cachedAddIcon = "".PrependWithAddIcon(TextLabel.Font.CapHeight);

            ContentView.InsertSeparator();
        }
コード例 #3
0
        public override void AwakeFromNib()
        {
            base.AwakeFromNib();

            FadeView.FadeRight = true;
            bottomSeparator    = ContentView.InsertSeparator();
            ContentView.InsertSeparator(UIRectEdge.Top);
        }
コード例 #4
0
 public override void AwakeFromNib()
 {
     base.AwakeFromNib();
     TextLabel.Text           = string.Empty;
     SelectedImageView.Hidden = true;
     SelectionStyle           = UITableViewCellSelectionStyle.None;
     ContentView.InsertSeparator();
 }
コード例 #5
0
        public override void AwakeFromNib()
        {
            base.AwakeFromNib();

            //This way the tap "goes through" the UISwitch
            //and we only have to handle the tap event on the whole cell.
            IsSelectedSwitch.UserInteractionEnabled = false;
            FadeView.FadeRight = true;
            ContentView.InsertSeparator();
        }
コード例 #6
0
        public override void AwakeFromNib()
        {
            base.AwakeFromNib();

            ContentView.InsertSeparator();

            FadeView.FadeRight             = true;
            ClientNameLabel.LineBreakMode  = UILineBreakMode.TailTruncation;
            ProjectNameLabel.LineBreakMode = UILineBreakMode.TailTruncation;
        }
コード例 #7
0
        public override void AwakeFromNib()
        {
            base.AwakeFromNib();

            projectTaskClientToAttributedString = new ProjectTaskClientToAttributedString(
                DetailsLabel.Font.CapHeight,
                Colors.TimeEntriesLog.ClientColor.ToNativeColor()
                );

            ContentView.InsertSeparator();
        }
コード例 #8
0
        public override void AwakeFromNib()
        {
            base.AwakeFromNib();

            ContentView.InsertSeparator();

            ContentView.BackgroundColor = ColorAssets.TableBackground;
            DateLabel.TextColor         = ColorAssets.Text2;
            DurationLabel.TextColor     = ColorAssets.Text2;

            IsAccessibilityElement = true;
            AccessibilityTraits    = UIAccessibilityTrait.Header;
            DurationLabel.Font     = DurationLabel.Font.GetMonospacedDigitFont();
        }
コード例 #9
0
 public override void AwakeFromNib()
 {
     base.AwakeFromNib();
     ContentView.InsertSeparator();
 }
コード例 #10
0
 public override void AwakeFromNib()
 {
     TitleLabel.TextColor = UIColor.Red;
     ContentView.InsertSeparator();
 }
コード例 #11
0
ファイル: CreateTagViewCell.cs プロジェクト: xleon/mobileapp
 public override void AwakeFromNib()
 {
     base.AwakeFromNib();
     NameLabel.Text = string.Empty;
     ContentView.InsertSeparator();
 }
コード例 #12
0
 public override void AwakeFromNib()
 {
     TitleLabel.TextColor        = ColorAssets.Text2;
     ContentView.BackgroundColor = ColorAssets.TableBackground;
     ContentView.InsertSeparator();
 }
コード例 #13
0
        public override void AwakeFromNib()
        {
            FadeView.FadeRight = true;

            ContentView.InsertSeparator();
        }