WdThickness.xaml.cs 1.69 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
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;

15
namespace FLY.Weight.UI.Client.UiModule
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
{
    /// <summary>
    /// Window_Thickness.xaml 的交互逻辑
    /// </summary>
    public partial class WdThickness : FLY.ControlLibrary.WindowBigClose, INotifyPropertyChanged
    {
        public int SetThickness { get; set; } = 80;

        public int FilmWidth { get; set; } = 500;


        public int RimWidth { get; set; } = 10;


        public bool IsRimNoRecycle { get; set; } = true;

        public WdThickness()
        {
            InitializeComponent();
            this.DataContext = this;
        }


        private void button_ok_Click(object sender, RoutedEventArgs e)
        {
            if (SetThickness < 10)
            {
                FLY.ControlLibrary.Window_WarningTip.Show("异常", "设置厚度 必须大于 10um");
                return;
            }

            if (FilmWidth < 300)
            {
                FLY.ControlLibrary.Window_WarningTip.Show("异常", "吹膜宽度 必须大于 300mm");
                return;
            }

            if ( RimWidth*2 > FilmWidth)
            {
                FLY.ControlLibrary.Window_WarningTip.Show("异常", "切边宽度*2 必须大于 吹膜宽度");
                return;
            }

            this.DialogResult = true;
            this.Close();
        }


        public event PropertyChangedEventHandler PropertyChanged;
    }
}