在Xamarin中,可以通过以下步骤获取从MainPage.xaml.cs文件到MainPage.xaml文件的int变量的值:
int myInt = 10;
<ContentPage x:Class="YourNamespace.MainPage"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:YourNamespace"
BindingContext="{x:Reference Name=mainPage}">
<Label Text="{Binding myInt}" />
public partial class MainPage : ContentPage
{
public int myInt { get; } = 10;
public MainPage()
{
InitializeComponent();
}
}
这样,当运行应用程序时,MainPage.xaml中的Label控件将显示"myInt"变量的值,即10。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云