using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
|
namespace DPumpHydr.WinFrmUI
|
{
|
public class TabbedMdiXtraForm : System.Windows.Forms.Form, ITabbedMdiChildForm
|
{
|
|
//页面的LOGO
|
public System.Drawing.Image MdiFromPageLogo
|
{
|
get
|
{
|
return _mdiFromPageLogo;
|
}
|
set
|
{
|
_mdiFromPageLogo = value;
|
}
|
}
|
protected System.Drawing.Image _mdiFromPageLogo = null;
|
|
//显示主菜单的状态条
|
protected bool _showMainStatusStrip = true;
|
public bool IsShowMainStatusStrip
|
{
|
get { return _showMainStatusStrip; }
|
set { _showMainStatusStrip = value; }
|
}
|
|
//
|
public virtual void IngoreCloseInfo(bool isIngoreCloseInfo)
|
{
|
|
}
|
}
|
}
|