| 12345678910111213141516171819202122 |
- using System.ComponentModel.Composition;
- using System.Windows;
- using Infrastructure;
- namespace WCFClient
- {
- /// <summary>
- /// WCFClientView.xaml 的交互逻辑
- /// </summary>
- [ViewExport(RegionName = "WCFClientRegion"), PartCreationPolicy(CreationPolicy.NonShared)]
- public partial class WCFClientView
- {
- public WCFClientView()
- {
- this.InitializeComponent();
- }
- private void Button_Click(object sender, RoutedEventArgs e)
- {
- }
- }
- }
|