WdThickScale.xaml.cs 1005 Bytes
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.ComponentModel;
潘栩锋's avatar
潘栩锋 committed
14 15

namespace FLY.Thick.Base.UI
潘栩锋's avatar
潘栩锋 committed
16 17
{
    /// <summary>
潘栩锋's avatar
潘栩锋 committed
18
    /// Window_ADScale.xaml 的交互逻辑
潘栩锋's avatar
潘栩锋 committed
19
    /// </summary>
潘栩锋's avatar
潘栩锋 committed
20
    public partial class WdThickScale : FLY.ControlLibrary.WindowBigClose, INotifyPropertyChanged
潘栩锋's avatar
潘栩锋 committed
21 22
    {

潘栩锋's avatar
潘栩锋 committed
23
        public double Old { get; set; }
潘栩锋's avatar
潘栩锋 committed
24

潘栩锋's avatar
潘栩锋 committed
25
        public double New { get; set; }
潘栩锋's avatar
潘栩锋 committed
26

潘栩锋's avatar
潘栩锋 committed
27 28 29 30 31
        public WdThickScale()
        {
            InitializeComponent();
            this.DataContext = this;
        }
潘栩锋's avatar
潘栩锋 committed
32

潘栩锋's avatar
潘栩锋 committed
33 34 35 36 37
        private void button_apply_Click(object sender, RoutedEventArgs e)
        {
            this.DialogResult = true;
            this.Close();
        }
潘栩锋's avatar
潘栩锋 committed
38 39 40
        public event PropertyChangedEventHandler PropertyChanged;
    }
}