我正在处理一些应用程序而且我有一个问题。 我有两个窗口(预订 - 父母和客人 - 孩子)。在父窗口中,我有一个包含guest虚拟机列表的组合框和一个用于添加新guest虚拟机的按钮。单击该按钮时,将打开“访客窗口(子窗口)”。在子窗口中,我将新的guest添加到数据库中,并且工作正常。 我的问题是:如何在子窗口中添加新的guest虚拟机后刷新/更新父窗口中的组合框列表?我知道属性中的更改应该反映在视图中而不从数据库中检索数据(由于绑定)。
Bookings.xaml
<ComboBox ItemsSource="{Binding Path=Guests}" SelectedItem="{Binding Path=Guest}" Height="25" HorizontalAlignment="Left" IsEditable="True" IsTextSearchEnabled="True" Margin="119,10,0,0" Name="cbGuest" Padding="3,1,1,1" TextSearch.TextPath="Name" VerticalAlignment="Top" VerticalContentAlignment="Center" Width="141" FontFamily="Times New Roman" FontWeight="Bold" FontSize="14">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock DataContext="{Binding}" Text="{MultiBinding StringFormat='\{0\} ', Bindings={Binding Path=Name}}" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
<Button BorderBrush="Black" Command="{Binding Path=btnAddGuest}" Content="Novi Gost" FontFamily="Times New Roman" FontWeight="Bold" Height="25" HorizontalAlignment="Left" IsDefault="True" Margin="266,10,0,0" Name="btnNewGuest" VerticalAlignment="Top" Width="62" />
BookingsViewModel.cs
private tblGuest guest;
public tblGuest Guest // Selected guest from combo box
{
get
{
return guest;
}
set
{
guest = value;
OnPropertyChanged("Guest");
}
}
private ObservableCollection<tblGuest> guests;
public ObservableCollection<tblGuest> Guests // Guests list in the combo box
{
get
{
return guests;
}
set
{
guests = value;
OnPropertyChanged("Guests");
}
}
public ICommand _btnAddGuest;
public ICommand btnAddGuest // Command for opening child window
{
get
{
if (_btnAddGuest == null)
{
_btnAddGuest = new DelegateCommand(delegate()
{
try
{
Guests guest = new Guests();
guest.ShowDialog();
}
catch
{
Trace.WriteLine("working...", "MyApp");
}
});
}
return _btnAddGuest;
}
}
Guests.xaml
<Button Command="{Binding Path= btnAddGuest}" Content="Dodaj" FontFamily="Times New Roman" FontWeight="Bold" Height="36" HorizontalAlignment="Left" Margin="12,402,0,0" Name="btnAddGuest" VerticalAlignment="Top" Width="62" IsDefault="True" />
此按钮(在Guest.xaml窗口中)将新访客添加到数据库中。
GuestViewModel.cs
private tblGuest guest;
public tblGuest Guest // Guest to be added into database
{
get
{
return guest;
}
set
{
guest = value;
OnPropertyChanged("Guest");
}
}
public ICommand _btnAddGuest;
public ICommand btnAddGuest // Command for adding new guest
{
get
{
if (_btnAddGuest == null)
{
_btnAddGuest = new DelegateCommand(delegate()
{
try
{
Service1Client wcf = new Service1Client();
wcf.AddGuest(Guest); // "AddGuest()" WCF method adds new guest to database
wcf.Close();
}
catch
{
Trace.WriteLine("working...", "MyApp");
}
});
}
return _btnAddGuest;
}
}
如何解决这个问题?有什么简单的方法吗?请你详细解释一下你的解决方案,因为我是WPF,WCF和MVVM的新手......
祝你好运, 弗拉基米尔
答案 0 :(得分:2)
暂停BookingsViewModel
课程中的GuestViewModel
个实例,并在添加新访客时调用BookingsViewModel.OnPropertyChanged("Guest")
(wcf.AddGuest(Guest);
行之后)。
答案 1 :(得分:1)
只需使用您GuestViewModel
中BookingsViewModel
的现有连接即可。
以下建议未经过测试,但您会明白
public ICommand btnAddGuest // Command for opening child window
{
get
{
if (_btnAddGuest == null)
{
_btnAddGuest = new DelegateCommand(delegate()
{
try
{
Guests guest = new Guests();
guest.ShowDialog();
// Add some Logic here and an is save check property to your GuestVM
// sample solution
// var vm = guest.DataContext as GuestViewModel;
// if(vm != null)
// if(vm.IsSaved)
// {
// var model = vm.Guest as tblGuest;
// Guests.Add(model); // will add him to your list
// Guest = model // will add him at your selected Guest
// }
}
catch
{
Trace.WriteLine("working...", "MyApp");
}
});
}
return _btnAddGuest;
}
}
答案 2 :(得分:0)
如果我理解正确的问题 - 你想从子窗口获取一个新的访客并在父窗口中更新你的集合 - 那么有很多方法可以做到这一点。
例如:
将事件“OnSuccessful”添加到您的GuestsViewModel,然后附加BookingsViewModel。
实施EventAggregator模式(订阅者 - 监听者)
关闭子窗口后刷新客人(将其显示为模态对话框)。
答案 3 :(得分:0)
如果您从主窗口创建子窗口以及子视图模型,您可以查看窗口关闭事件,或者如果您需要知道窗口关闭之前还可以订阅属性更改事件创建子窗口时,子视图模型上的属性更改时,您可以检查它是否是您想要的属性。如果有,请更新您的清单。
ChildViewModel n = new ChildViewModel()
n.PropertyChanged += new PropertyChangedEventHandler(n_PropertyChanged);
void n_PropertyChanged(object sender, PropertyChangedEventArgs e)
{ if(e.PropertyName == "myChangingObject")
//reload list
}
答案 4 :(得分:0)
一个简单的回调界面可以帮助您。客户端应该订阅,如果服务器推送通知,则填充组合框或刷新。
这是一个教程:http://idunno.org/archive/2008/05/29/wcf-callbacks-a-beginners-guide.aspx
我曾经创建了一个&#34;登录&#34;方法并在服务器端存储每个客户端回调。然后每当我需要使用推送通知时,我只使用这个存储的客户端回调。在客户端,您可以根据需要处理收到的消息/事件。
答案 5 :(得分:0)
好的,我在“GuestsViewModel.cs”中添加了这些行:
private BookingsViewModel _BookingsViewModel;
public BookingsViewModel BookViewModel // Property
{
get
{
return _BookingsViewModel;
}
set
{
_BookingsViewModel = value;
OnPropertyChanged("BookViewModel");
}
}
public GuestsViewModel(BookingsViewModel bvm) // Constructor with one parameter
{
BookViewModel = bvm;
}
public ICommand _btnAddGuest;
public ICommand btnAddGuest
{
get
{
if (_btnAddGuest == null)
{
_btnAddGuest = new DelegateCommand(delegate()
{
try
{
Service1Client wcf = new Service1Client();
wcf.AddGuest(Guest);
BookingsViewModel.OnPropertyChanged("Guests"); // You said to add this
wcf.Close();
}
catch
{
Trace.WriteLine("working...", "MyApp");
}
});
}
return _btnAddGuest;
}
}
你的意思是上面这样的吗?这不起作用......我想我应该再添加一件东西?对不起,也许这个问题很愚蠢,但我不知道如何解决这个问题......
此致 弗拉基米尔