WCFClientView.xaml.cs 539 B

12345678910111213141516171819202122
  1. using System.ComponentModel.Composition;
  2. using System.Windows;
  3. using Infrastructure;
  4. namespace WCFClient
  5. {
  6. /// <summary>
  7. /// WCFClientView.xaml 的交互逻辑
  8. /// </summary>
  9. [ViewExport(RegionName = "WCFClientRegion"), PartCreationPolicy(CreationPolicy.NonShared)]
  10. public partial class WCFClientView
  11. {
  12. public WCFClientView()
  13. {
  14. this.InitializeComponent();
  15. }
  16. private void Button_Click(object sender, RoutedEventArgs e)
  17. {
  18. }
  19. }
  20. }