using System.Windows; namespace Saga.PlugIn.VerticalPipeCheck { /// /// WinTipMissFamily.xaml 的交互逻辑 /// public partial class WinTipVPipeCheckComplete { public WinTipVPipeCheckComplete(int? upcount,int? downcount) { InitializeComponent(); this.UpCount = upcount; this.DownCount = downcount; this.DataContext = this; } private int? m_UpCount; public int? UpCount { get { return m_UpCount; } set { m_UpCount = value; } } private int? m_DownCount; public int? DownCount { get { return m_DownCount; } set { m_DownCount = value; } } #region Action private void ButtonNext_OnClick(object sender, RoutedEventArgs e) { this.DialogResult = true; } #endregion } }