|
- using BPA.Helper;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- 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.Navigation;
- using System.Windows.Shapes;
-
- namespace BPASmartClient.DosingSystemSingle.View
- {
- /// <summary>
- /// ManualControlView.xaml 的交互逻辑
- /// </summary>
- public partial class ManualControlView : UserControl
- {
- public ManualControlView()
- {
- InitializeComponent();
- this.Unloaded += (o, e) => { ThreadManage.GetInstance().StopTask("手动气缸状态监控"); };
- this.SizeChanged += ManualControlView_SizeChanged;
- this.cy.Height = this.list1.ActualHeight + 40;
- this.zd.Height = this.list2.ActualHeight + 40;
- this.tp.Height = this.list3.ActualHeight + 40;
- this.onGrid.Height = this.list4.ActualHeight + 40;
- }
-
- private void ManualControlView_SizeChanged(object sender, SizeChangedEventArgs e)
- {
- this.cy.Height = this.list1.ActualHeight + 40;
- this.zd.Height = this.list2.ActualHeight + 40;
- this.tp.Height = this.list3.ActualHeight + 40;
- this.onGrid.Height = this.list4.ActualHeight + 40;
- }
- }
- }
|