using BPA.Helper; using System.Windows; using System.Windows.Controls; namespace BPASmartClient.DosingSystem.View { /// /// ManualControlView.xaml 的交互逻辑 /// public partial class ManualControlView : UserControl { public ManualControlView() { InitializeComponent(); this.Unloaded += (o, e) => { TaskManage.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; } } }