TradeParamerSetView.xaml.cs 444 B

1234567891011121314151617
  1. using Muchinfo.MTPClient.Account.ViewModels;
  2. using Muchinfo.WPF.Controls.Windows;
  3. namespace Muchinfo.MTPClient.Account.Views
  4. {
  5. /// <summary>
  6. /// TradeParamerSetView.xaml 的交互逻辑
  7. /// </summary>
  8. public partial class TradeParamerSetView : WindowBase
  9. {
  10. public TradeParamerSetView()
  11. {
  12. InitializeComponent();
  13. this.DataContext = new TradeParamerSetViewModel();
  14. }
  15. }
  16. }