12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System.Windows;
- namespace Saga.PlugIn.VerticalPipeCheck
- {
- /// <summary>
- /// WinTipMissFamily.xaml 的交互逻辑
- /// </summary>
- 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
- }
- }
|