使用 Telerik 和 ReactiveUI 进行绑定的问题

Issues with binding using Telerik and ReactiveUI

我知道这个问题是否对 telerik 控制产品过于具体,但我们将不胜感激。

我在绑定到数据表单内的 telerik 组合框时遇到了一些问题。

我正在将组合框字段的项目源设置为从数据库中提取的集合。我希望使用所选下拉值中的 JobID 更新 EditableModel。

我要求将组合框的选定项目设置为存储在 JobID 属性 中的匹配 ID。

我试过这个,但似乎无法正确绑定值。

查看模型

public class EditableViewModel : ReactiveObject
{
    public EditableModel SelectedEntity { get; set; }
    public List<JobModel> Jobs { get; set; }
}

型号

public class EditableModel
{

    public string Name { get; set; }
    public int JobId { get; set; }
}

public class JobModel
{
    public string Name { get; set; }
    public int Id { get; set; }
}

查看

<reactiveui:ReactiveWindow 
    x:Class="TestWpfApplication.MainWindow"
    x:TypeArguments="test:EditableViewModel"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:test="clr-namespace:TestWpfApplication.ViewModels"
    xmlns:reactiveui="http://reactiveui.net"
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
    Title="NuGet Browser" Height="450" Width="800"
    mc:Ignorable="d">
    <Grid>
        <Grid.Resources>
            <DataTemplate x:Key="MyTemplate">
                <StackPanel>
                    <telerik:DataFormDataField  Label="First Name" DataMemberBinding="{Binding Path=Name, Mode=TwoWay}"  />
                    <telerik:DataFormComboBoxField  Label="Job" SelectedValuePath="Id" DisplayMemberPath="Name" DataMemberBinding="{Binding JobId, Mode=TwoWay}" ItemsSource="{Binding Jobs, Mode=TwoWay}"/>
                </StackPanel>
            </DataTemplate>
        </Grid.Resources>
        <telerik:RadDataForm AutoGenerateFields="False" x:Name="RadDataForm" EditTemplate="{StaticResource MyTemplate}"/>
    </Grid>
</reactiveui:ReactiveWindow>

发现问题。我的 DataContext 绑定设置不正确