using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Data;
|
using System.Drawing;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using System.Windows.Forms;
|
|
namespace DPumpHydr.WinFrmUI.Volute
|
{
|
public partial class ParasInfoBaseCtrl : UserControl
|
{
|
public ParasInfoBaseCtrl()
|
{
|
}
|
protected bool _isChangesParas = false;
|
public bool IsChangesParas()
|
{
|
return _isChangesParas;
|
}
|
|
public Action OnNextStep = null;
|
protected void NextStep()
|
{
|
if (OnNextStep != null)
|
{
|
OnNextStep();
|
}
|
}
|
|
public Action OnPrevStep = null;
|
protected void PrevStep()
|
{
|
if (OnPrevStep != null)
|
{
|
OnPrevStep();
|
}
|
}
|
|
|
}
|
}
|