本文整理汇总了C#中UIImageView.WithSameTop方法的典型用法代码示例。如果您正苦于以下问题:C# UIImageView.WithSameTop方法的具体用法?C# UIImageView.WithSameTop怎么用?C# UIImageView.WithSameTop使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UIImageView
的用法示例。
在下文中一共展示了UIImageView.WithSameTop方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: 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)
);
}
示例2: 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)
);
}
示例3: CreateTabControl
private void CreateTabControl()
{
this.tabControl = new TabControl(new CGRect(0, 50, viewForTabControl.Frame.Width, 30), UIColor.Red, UIColor.Blue);
this.tabControl.TabSelected += (selectedItem) =>
{
if (selectedItem == tabs[0])
{
this.viewForPage.BackgroundColor = UIColor.Red;
RemoveImageView();
}
else if (selectedItem == tabs[1])
{
this.viewForPage.BackgroundColor = UIColor.Black;
RemoveImageView();
}
else if (selectedItem == tabs[2])
{
this.imageView = new UIImageView() { Image = UIImage.FromBundle("image.png") };
this.imageView.TranslatesAutoresizingMaskIntoConstraints = false;
this.viewForPage.Add(this.imageView);
this.viewForPage.AddConstraints
(
imageView.WithSameWidth(viewForPage),
imageView.WithSameHeight(viewForPage),
imageView.WithSameTop(viewForPage),
imageView.WithSameLeft(viewForPage),
imageView.WithSameBottom(viewForPage)
);
}
};
this.viewForTabControl.TranslatesAutoresizingMaskIntoConstraints = false;
this.tabControl.TranslatesAutoresizingMaskIntoConstraints = false;
this.viewForTabControl.Add(tabControl);
this.viewForTabControl.AddConstraints
(
tabControl.WithSameWidth(viewForTabControl),
tabControl.WithSameTop(viewForTabControl),
tabControl.WithSameLeft(viewForTabControl),
tabControl.WithSameBottom(viewForTabControl),
new FluentLayout(tabControl, NSLayoutAttribute.Height, NSLayoutRelation.Equal, 40)
);
}
示例4: 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)
);
}