WdAHelper.xaml.cs 1.95 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
using System;
using System.Collections.Generic;
using System.ComponentModel;
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;


潘栩锋's avatar
潘栩锋 committed
16
namespace FLY.Thick.Base.UI
潘栩锋's avatar
潘栩锋 committed
17 18 19 20
{
    /// <summary>
    /// Window_AHelper.xaml 的交互逻辑
    /// </summary>
潘栩锋's avatar
潘栩锋 committed
21
    public partial class WdAHelper : FLY.ControlLibrary.WindowBigClose
潘栩锋's avatar
潘栩锋 committed
22
    {
潘栩锋's avatar
潘栩锋 committed
23
        private WdAHelperVm viewModel;
潘栩锋's avatar
潘栩锋 committed
24
        public double A { get { return viewModel.A; } }
潘栩锋's avatar
潘栩锋 committed
25
        private double a;
潘栩锋's avatar
潘栩锋 committed
26
        public WdAHelper()
潘栩锋's avatar
潘栩锋 committed
27 28
        {
            InitializeComponent();
潘栩锋's avatar
潘栩锋 committed
29
            viewModel = new WdAHelperVm();
潘栩锋's avatar
潘栩锋 committed
30
            this.DataContext = viewModel;
潘栩锋's avatar
潘栩锋 committed
31 32
        }

潘栩锋's avatar
潘栩锋 committed
33
        public void Init(double a)
潘栩锋's avatar
潘栩锋 committed
34
        {
潘栩锋's avatar
潘栩锋 committed
35 36
            this.a = a;
            viewModel.A = a;
潘栩锋's avatar
潘栩锋 committed
37 38 39 40
        }

        private void button_cal_Click(object sender, RoutedEventArgs e)
        {
潘栩锋's avatar
潘栩锋 committed
41
            if (viewModel.X == 0 || viewModel.Y == 0)
潘栩锋's avatar
潘栩锋 committed
42 43
            {
                FLY.ControlLibrary.Window_WarningTip.Show("异常!!!!",
潘栩锋's avatar
潘栩锋 committed
44
                    "X=0 或 Y=0",
潘栩锋's avatar
潘栩锋 committed
45 46 47 48 49 50 51 52 53 54
                    TimeSpan.FromSeconds(2));
                return;
            }
            else if (a == 0)
            {
                FLY.ControlLibrary.Window_WarningTip.Show("异常!!!!",
                    "A==0",
                    TimeSpan.FromSeconds(2));
                return;
            }
潘栩锋's avatar
潘栩锋 committed
55
            double x = (viewModel.X) / a;
潘栩锋's avatar
潘栩锋 committed
56

潘栩锋's avatar
潘栩锋 committed
57
            viewModel.A = viewModel.Y / x;
潘栩锋's avatar
潘栩锋 committed
58 59 60 61 62 63 64 65
        }
        private void button_apply_Click(object sender, RoutedEventArgs e)
        {
            this.DialogResult = true;
        }

    }

潘栩锋's avatar
潘栩锋 committed
66
    public class WdAHelperVm : INotifyPropertyChanged
潘栩锋's avatar
潘栩锋 committed
67 68
    {

潘栩锋's avatar
潘栩锋 committed
69 70 71 72
        public double X { get; set; }
        public double Y { get; set; }

        public double A { get; set; }
潘栩锋's avatar
潘栩锋 committed
73 74 75 76

        public event PropertyChangedEventHandler PropertyChanged;
    }
}