Xamarin学习笔记——Frame

1、Frame

官方是这样介绍的:
An element containing a single child, with some framing options.
它是一个可以包含一个孩子的框架型控件。我们来看看具体的使用方法。
新建一个Cross-platform工程test4(新建工程的方法点击这里)

打开文件test4.cs
修改为:

namespace test4
{
class PageA : ContentPage
{public PageA (){Padding = new Thickness (20);Content = new Frame {OutlineColor = Color.Accent,Content = new Label {Text = "I've been framed",FontSize = Device.GetNamedSize (NamedSize.Large, typeof(Label)),HorizontalOptions = LayoutOptions.Center,VerticalOptions = LayoutOptions.Center}};}
}public class App : Application
{public App (){// The root page of your application
//          MainPage = new ContentPage {
//              Content = new StackLayout {
//        


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部