我已经创建并将在这个问题中引用的文件是:TechnicainSelectionView.xamlTechnicianSelectionView.csTechnicianSelectionViewModel.csTechnician.cs(代码优先实体)我...
我在这个问题中创建并将引用的文件是:
TechnicainSelectionView.xaml
TechnicianSelectionView.cs
TechnicianSelectionViewModel.cs
Technician.cs (Code First Entity)
我的 TechnicanSelectionView.xaml 中有以下 xaml
<UserControl xmlns etc... here"
d:DesignHeight="48" d:DesignWidth="300">
<Grid>
<StackPanel>
<Label Content="Select a Technican to run the test" FontWeight="Bold"></Label>
<ComboBox ItemsSource="{Binding Technicians, Mode=TwoWay}"></ComboBox>
</StackPanel>
</Grid>
</UserControl>
ItemSource 设置为绑定到的 Technicians 属性表明它 Cannot resolve Technicians due to an unknown DataContext.
所以如果我们查看我的 TechnicianSelectionView.cs 代码隐藏...
public partial class TechnicianSelectionView : UserControl
{
public TechnicianSelectionViewModel ViewModel { get; private set; }
public TechnicianSelectionView()
{
InitializeComponent();
Technician.GenerateSeedData();
ViewModel = new TechnicianSelectionViewModel();
DataContext = ViewModel;
}
}
...我们看到我正在将视图的 DataContext 设置为我的 TechnicianSelectionViewModel...
public class TechnicianSelectionViewModel : ViewModelBase
{
public ObservableCollection<Technician> Technicians { get; set; }
public TechnicianSelectionViewModel()
{
Technicians = new ObservableCollection<Technician>();
}
public bool IsLoaded { get; private set; }
public void LoadTechnicians()
{
List<Technician> technicians;
using (var db = new TestContext())
{
var query = from tech in db.Technicians
select tech;
foreach (var technician in query)
{
Technicians.Add(technician);
}
}
IsLoaded = true;
}
}
技术人员是我的 ViewModel 上的一个属性......
那么,既然已经为视图设置了 DataContext,为什么它不能将 ViewModel 上的技术人员解析为它要绑定到的 DataContext/属性?
正如下面评论中提到的担忧。这是一个设计时问题,而不是编译时问题。我应该在一开始就指出这一点。
在我的 Xamarin Forms Xaml 文件中,我在标题(ContentPage 标签)中使用了以下几行,并且它按照我想要的方式完美地工作。
基本上现在
p2
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:vm="clr-namespace:YourApplicationName.ViewModels;assembly=YourApplicationName"mc:Ignorable="d"d:DataContext="{d:DesignInstance {x:Type vm:CurrentPageViewModel}}"