WCFClientView.xaml.cs 506 B

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