我只是不知道自己做错了什么。我正在尝试在WPF应用程序上使用Caliburn Micro(4.5)。试图关注MVVM以获得它的价值。
我的虚拟机具有服务和授权属性。授权具有SelectedService的属性。我已经命名了我的控件x:Name=Services
,当我填充Services属性时,它们显示在RadGridView中,但是当您在RadGridView中选择一个Item时,它不会将SelectedItem
绑定回我的SelectedService
属性。是因为Services属性处于一个级别而SelectedService
是更深层次的Authorizations.SelectedService
?
下面是我敢于发布的代码,而不是充斥帖子。希望这就够了。
我觉得我非常接近“获得”Caliburn Micro和MVVM ......
public class Authorization:BindableBase
{
public int ID
{
get { return this.id; }
set
{
this.id = value;
this.OnPropertyChanged();
}
}
public Service SelectedService
{
get { return this.selectedService; }
set
{
this.selectedService = value;
OnPropertyChanged();
}
}
public Member ActiveMember
{
get { return this.activeMember; }
set
{
this.activeMember = value;
this.OnPropertyChanged();
}
}
}
然后CreateAuthViewModel具有该模型以及用于填充称为服务的可能选项的属性:
[Export(typeof(IScreen))]
public class CreateAuthViewModel : Screen, IHandle<MessageNotifier>
{
public Authorization Authorization
{
get { return this.authorization; }
set
{
this.authorization = value;
NotifyOfPropertyChange();
}
}
public BindableCollection<Service> Services
{
get { return services; }
set
{
services = value;
NotifyOfPropertyChange();
}
}
最后我的View,CreateAuthView:
<UserControl x:Name="CreateAuthUserControl"
x:Class="Green.Views.CreateAuthView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:cal="http://www.caliburnproject.org">
<telerik:RadExpander>
<StackPanel>
<telerik:RadGridView x:Name="Services"
IsReadOnly="True"
SelectionMode="Extended"
ScrollViewer.CanContentScroll="True" />
<telerik:RadDataPager x:Name="ServicesDataPager"
PageSize="10"
VerticalAlignment="Bottom"
Source="{Binding Items, ElementName=Services}" />
</StackPanel>
</telerik:RadExpander>
</UserControl>
答案 0 :(得分:1)
没有开箱即用的Telerik约定,因为这需要依赖于Telerik控件。您可以查看自己编写的conventions,或使用Caliburn.Micro.Telerik提供的NuGet package项目。