tangxu
2025-01-13 4f7cb65b079d88d5a829688b24d26d5145c5df47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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)
        {
 
        }
    }
}