| 12345678910111213141516171819202122232425262728 |
- using Muchinfo.MTPClient.Delivery.ViewModels;
- using System.Windows;
- using System.Windows.Input;
- namespace Muchinfo.MTPClient.Delivery.Views
- {
- /// <summary>
- /// Description for TakaDeliveryGoodsApplyView.
- /// </summary>
- public partial class TakaDeliveryGoodsApplyView : Window
- {
- /// <summary>
- /// Initializes a new instance of the TakaDeliveryGoodsApplyView class.
- /// </summary>
- public TakaDeliveryGoodsApplyView()
- {
-
- InitializeComponent();
- this.DataContext = new TakaDeliveryGoodsApplyViewModel();
- }
- public void drag_MouseLeftButtonDown(object sender, MouseButtonEventArgs args)
- {
- this.DragMove();
- }
- }
- }
|