当前位置: 首页>>代码示例>>C#>>正文


C# UILabel.WithSameCenterX方法代码示例

本文整理汇总了C#中UILabel.WithSameCenterX方法的典型用法代码示例。如果您正苦于以下问题:C# UILabel.WithSameCenterX方法的具体用法?C# UILabel.WithSameCenterX怎么用?C# UILabel.WithSameCenterX使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UILabel的用法示例。


在下文中一共展示了UILabel.WithSameCenterX方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: InfoViewController

        public InfoViewController()
        {
            View.BackgroundColor = UIColor.FromPatternImage(UIImage.FromBundle("Images/backgroundImage"));

              var text1 = new UILabel
              {
            TextColor = UIColor.White,
            Text = "Optimizely's iOS SDK enables you to makeyour iOS app more angaging",
            Lines = 0
              };
              text1.Font = UIFont.FromName("Gotham-Light", 16);

              var text2 = new UILabel
              {
            TextColor = UIColor.White,
            Text = "This sample app will take you through implementing and utilizing the core functionality of Optimizely. Feel free to take a look at the code for reference.",
            Lines = 0
              };
              text2.Font = UIFont.FromName("Gotham-Light", 16);

              var text3 = new UILabel
              {
            TextColor = UIColor.White,
            Text = "Please open your browser to developers.optimizely.com/ios to get started.",
            Lines = 0
              };
              text3.Font = UIFont.FromName("Gotham-Light", 16);

              View.AddSubview(text1);
              View.AddSubview(text2);
              View.AddSubview(text3);

              View.SubviewsDoNotTranslateAutoresizingMaskIntoConstraints();
              View.AddConstraints(
            text1.WithSameCenterX(View),
            text1.WithSameLeft(View).Plus(50),
            text1.WithSameRight(View).Minus(50),
            text1.WithSameTop(View).Plus(80),

            text2.WithSameCenterX(View),
            text2.WithSameWidth(text1),
            text2.Below(text1).Plus(20),

            text3.WithSameCenterX(View),
            text3.WithSameWidth(text1),
            text3.Below(text2).Plus(20)
              );
        }
开发者ID:ahouhel,项目名称:XamarinBindings,代码行数:48,代码来源:InfoViewController.cs

示例2: CodeBlocksViewController

        public CodeBlocksViewController()
        {
            // [OPTIMIZELY] Example how to declare a code block
              OnboardingFunnel = OptimizelyCodeBlocksKey.GetOptimizelyCodeBlocksKey("OnboardingFunnel", new NSObject[] { new NSString("Add Onboarding Stage") });
              OptimizelyiOS.Optimizely.PreregisterBlockKey(OnboardingFunnel);

              View.BackgroundColor = Styling.Colors.BackgroundColor;

              var image = new UIImageView
              {
            Image = UIImage.FromBundle("Images/widgetCoLogo_red"),
              };

              var label = new UILabel
              {
            Text = "A company that helps you buy widgets.",
            TextColor = Styling.Colors.TextBlue,
            Font = UIFont.FromName("Gotham-Light", 12),
            TextAlignment = UITextAlignment.Center
              };

              var button = new CustomButton
              {
            TitleText = "Sign In"
              };

              button.TouchUpInside += Button_TouchUpInside;

              View.AddSubviews(image, label, button);

              View.SubviewsDoNotTranslateAutoresizingMaskIntoConstraints();

              View.AddConstraints(
            image.WithSameCenterX(View),
            image.WithSameTop(View).Plus(60),

            label.WithSameCenterX(View),
            label.Below(image).Plus(30),

            button.WithSameCenterX(View),
            button.WithSameBottom(View).Minus(150),
            button.Width().EqualTo(200),
            button.Height().EqualTo(50)
              );
        }
开发者ID:ahouhel,项目名称:XamarinBindings,代码行数:45,代码来源:CodeBlocksViewController.cs

示例3: UICustomProgressView

        public UICustomProgressView()
        {
            currentProgressLabel = new UILabel();
            currentProgressLabel.Text = "10000000";

            ofProgressLabel = new UILabel();
            ofProgressLabel.Text = "of";

            totalProgressLabel = new UILabel();
            totalProgressLabel.Text = "10000000";

            progressNoContainer = new UIView();
            progressNoContainer.BackgroundColor = UIColor.Yellow;
            progressNoContainer.Layer.BorderColor = UIColor.Red.CGColor;
            progressNoContainer.Layer.BorderWidth = 2f;

            progressNoContainer.AddSubviews(new UIView[] { currentProgressLabel, ofProgressLabel, totalProgressLabel });
            progressNoContainer.SubviewsDoNotTranslateAutoresizingMaskIntoConstraints();
            progressNoContainer.AddConstraints(new[]
            {
                currentProgressLabel.AtTopOf(progressNoContainer),
                currentProgressLabel.WithSameCenterX(progressNoContainer).Minus(25),
                currentProgressLabel.Height().EqualTo(30),

                ofProgressLabel.WithSameTop(currentProgressLabel),
                ofProgressLabel.ToRightOf(currentProgressLabel).Plus(5),
                ofProgressLabel.WithSameHeight(currentProgressLabel),

                totalProgressLabel.WithSameBottom(ofProgressLabel),
                totalProgressLabel.ToRightOf(ofProgressLabel).Plus(5),
                totalProgressLabel.WithSameHeight(ofProgressLabel)
            });

            AddSubviews(new[] { progressNoContainer });
            this.SubviewsDoNotTranslateAutoresizingMaskIntoConstraints();
            this.AddConstraints(new[]
            {
                progressNoContainer.WithSameCenterY(this),
                progressNoContainer.WithSameRight(this).Minus(10),
                progressNoContainer.Width().EqualTo(100),
                progressNoContainer.Height().EqualTo(30)
            });
        }
开发者ID:raghurana,项目名称:NsUrlDownloadDemo,代码行数:43,代码来源:UICustomProgressView.cs

示例4: CodeBlocksOnboardViewController

        public CodeBlocksOnboardViewController()
        {
            View.BackgroundColor = Styling.Colors.BackgroundColor;

              var image = new UIImageView
              {
            Image = UIImage.FromBundle("Images/widgetCoLogo_red"),
              };

              var label = new UILabel
              {
            Text = "We sell gears.",
            TextColor = Styling.Colors.TextBlue,
            Font = UIFont.FromName("Gotham-Light", 12),
            TextAlignment = UITextAlignment.Center
              };

              var button = new CustomButton
              {
            TitleText = "Start shopping now!"
              };

              View.AddSubviews(image, label, button);

              View.SubviewsDoNotTranslateAutoresizingMaskIntoConstraints();

              View.AddConstraints(
            image.WithSameCenterX(View),
            image.WithSameTop(View).Plus(60),

            label.WithSameCenterX(View),
            label.Below(image).Plus(30),

            button.WithSameCenterX(View),
            button.WithSameBottom(View).Minus(150),
            button.Width().EqualTo(200),
            button.Height().EqualTo(50)
              );
        }
开发者ID:ahouhel,项目名称:XamarinBindings,代码行数:39,代码来源:CodeBlocksOnboardViewController.cs

示例5: WelcomeController

        public WelcomeController()
        {
            View.BackgroundColor = Styling.Colors.WelcomeBackgroundColor;

              var welcomeView = new UIView
              {
            BackgroundColor = UIColor.White,
            ClipsToBounds = true,
              };
              welcomeView.Layer.CornerRadius = 8;

              var image = new UIImageView
              {
            Image = UIImage.FromBundle("Images/blueLogoWelcomeScreen"),
            ContentMode = UIViewContentMode.ScaleAspectFit
              };

              var welcomeLabel = new UILabel
              {
            Text = "Welcome to the\nOptimizely Tutorial App",
            Lines = 2,
            TextAlignment = UITextAlignment.Center,
              };
              welcomeLabel.Font = UIFont.FromName("Gotham-Light", 18);

              var textLabel = new UILabel
              {
            Text = "Please open your browser to\ndevelopers.optimizely.com/ios",
            Lines = 2,
            TextAlignment = UITextAlignment.Center,
              };
              textLabel.Font = UIFont.FromName("Gotham-Light", 14);

              var button = new CustomButton
              {
            BackgroundColor = Styling.Colors.ButtonGreen,
            TitleText = "Got it. Let's go!"
              };
              // [OPTIMIZELY] Below is an example of if you want to tag
              // ids manually
              // OptimizelyiOS.UIView_Optimizely.GetOptimizelyId(button);

              button.TouchUpInside += Button_TouchUpInside;

              welcomeView.AddSubview(image);
              welcomeView.AddSubview(welcomeLabel);
              welcomeView.AddSubview(textLabel);
              welcomeView.AddSubview(button);

              welcomeView.SubviewsDoNotTranslateAutoresizingMaskIntoConstraints();
              welcomeView.AddConstraints(
            image.WithSameCenterX(welcomeView),
            image.WithSameTop(welcomeView).Plus(40),
            image.WithSameLeft(welcomeView).Plus(30),
            image.WithSameRight(welcomeView).Minus(30),

            welcomeView.WithSameCenterX(welcomeView),
            welcomeLabel.Below(image).Plus(50),
            welcomeLabel.WithSameLeft(welcomeView).Plus(15),
            welcomeLabel.WithSameRight(welcomeView).Minus(15),

            textLabel.WithSameCenterX(welcomeView),
            textLabel.Below(welcomeLabel).Plus(50),
            textLabel.WithSameWidth(welcomeLabel),

            button.WithSameCenterX(welcomeView),
            button.Below(textLabel).Plus(50),
            button.Width().EqualTo(200),
            button.Height().EqualTo(50)
              );

              View.AddSubview(welcomeView);
              View.SubviewsDoNotTranslateAutoresizingMaskIntoConstraints();

              View.AddConstraints(
            welcomeView.WithSameCenterX(View),
            welcomeView.WithSameCenterY(View).Minus(10),
            welcomeView.WithSameLeft(View).Plus(30),
            welcomeView.WithSameRight(View).Minus(30),
            welcomeView.Width().EqualTo(View.Bounds.Width - 60),
            welcomeView.Height().EqualTo(380)
              );
        }
开发者ID:ahouhel,项目名称:XamarinBindings,代码行数:83,代码来源:WelcomeController.cs


注:本文中的UILabel.WithSameCenterX方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。