using HStation.BLL;
|
|
namespace HStation.WinFrmUI.Xhs.PumpProduct
|
{
|
public partial class PumpPartDlg : DevExpress.XtraEditors.XtraForm
|
{
|
public PumpPartDlg()
|
{
|
InitializeComponent();
|
}
|
|
private PumpPartMain _allBindingList = null;
|
|
public void SetBindingData(long ID)
|
{
|
}
|
|
//左侧树右击菜单事件
|
private void treeList1_MouseUp(object sender, MouseEventArgs e)
|
{
|
if (e.Button == MouseButtons.Right)
|
{
|
if (this..GetCurrentViewModel(_allBindingList) != null)
|
{
|
Point screenPoint = Cursor.Position;
|
popupPump.ShowPopup(screenPoint);
|
}
|
}
|
}
|
}
|
}
|