WdAdScale.xaml.cs 907 Bytes
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
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
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 WdAdScale : FLY.ControlLibrary.WindowBigClose
潘栩锋's avatar
潘栩锋 committed
21
    {
22 23
        public double Old { get; set; }
        public double New { get; set; }
潘栩锋's avatar
潘栩锋 committed
24 25

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

潘栩锋's avatar
潘栩锋 committed
31
        private void button_apply_Click(object sender, RoutedEventArgs e)
潘栩锋's avatar
潘栩锋 committed
32
        {
潘栩锋's avatar
潘栩锋 committed
33 34
            this.DialogResult = true;
            this.Close();
潘栩锋's avatar
潘栩锋 committed
35 36 37
        }
    }
}