如何使用 Xamarin.Forms 在 var 内容页面代码隐藏中添加按钮?
How can I add a button inside var content page code-behind using Xamarin.Forms?
如何在代码隐藏的 var 内容页面中添加按钮?我正在尝试制作内容页面的列表视图,每个页面都有自己的按钮。
var content = new ContentPage
{
Title = EntryTitulo.Text,
Content = new Label
{
Text = EntryText.Text,
VerticalOptions = LayoutOptions.CenterAndExpand,
HorizontalOptions = LayoutOptions.CenterAndExpand,
},
//I want to add a button here....
};
一个ContentPage
只能有一个child。如果要添加多个 children,它们需要包含在布局容器中,例如 StackLayout
或 Grid
var label = new Label { ... };
var button = new Button { ... };
var layout = new StackLayout();
layout.Children.Add(label);
layout.Children.Add(button);
Content = layout;
如何在代码隐藏的 var 内容页面中添加按钮?我正在尝试制作内容页面的列表视图,每个页面都有自己的按钮。
var content = new ContentPage
{
Title = EntryTitulo.Text,
Content = new Label
{
Text = EntryText.Text,
VerticalOptions = LayoutOptions.CenterAndExpand,
HorizontalOptions = LayoutOptions.CenterAndExpand,
},
//I want to add a button here....
};
一个ContentPage
只能有一个child。如果要添加多个 children,它们需要包含在布局容器中,例如 StackLayout
或 Grid
var label = new Label { ... };
var button = new Button { ... };
var layout = new StackLayout();
layout.Children.Add(label);
layout.Children.Add(button);
Content = layout;