我有一个将命令绑定(bind)到按钮的页面。当我单击它时,我调用一个方法来从API获取所需的数据。如果我不想只绑定(bind) View 中的数据,又要在后面的代码中使用这些数据怎么办?!
可以说这是我的观点:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="HelloWorld.Pages.JohnDoePage"
xmlns:local="clr-namespace:Xamarin.Forms.Maps;assembly=Xamarin.Forms.Pages"
xmlns:vm="clr-namespace:HelloWorld.ViewModel;assembly=HelloWorld">
<StackLayout Padding="20, 10" HorizontalOptions="Center">
<Button Command="{Binding JohnDoe}"
Text="Data about John Doe" />
</StackLayout>
</ContentPage>
代码behihnd:
Models.Info info;
public JohnDoePage(Models.Info info)
{
InitializeComponent();
BindingContext = new InfoDetailsViewModel(info);
this.info= info;
// i want to use the data here
//using the data
}
View 模型:
Data _data;
public Data Data
{
get { return _data; }
set
{
if (value == _data) return;
_data = value;
OnPropertyChanged();
}
}
public ICommand JohnDoe
{
get
{
return new Command(async () =>
{
var Dataa = await _apiServices.InfoAboutJohnDOe();
});
}
}
而且我获得所需数据的服务还可以。我使用相同的 View 模型来绑定(bind)不同的命令,我不知道这是否可行,所以我被困住了。知道如何使用在后台代码中获取的数据吗?提前致谢!!
最佳答案
为什么不只维护对VM的类级别引用?
Models.Info info;
InfoDetailsViewModel vm;
public JohnDoePage(Models.Info info)
{
InitializeComponent();
vm = new InfoDetailsViewModel(info);
BindingContext = vm;
this.info= info;
}
关于c# - 在后面的代码中使用数据绑定(bind),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48141434/