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