Exemplo n.º 1
0
 public PassOption(HeavenPro.Core.Core core)
 {
     InitializeComponent();
     _core = core;
     InitCombo();
     lod();
 }
Exemplo n.º 2
0
        public FormChartGroup(HeavenPro.Core.Core core)
        {
            InitializeComponent();
            _core = core;
            Init();
            InitCombo();
            this.Resource = _core.resource;

            if (_core.RemoteObject.User.UserNo != 0)
            {
                this.FieldLinkSetEditState();
            }
            else
            {
                this.FieldLinkSetNewState();
            }
        }
Exemplo n.º 3
0
        public UserGroupProp(HeavenPro.Core.Core core, long GroupID)
        {
            try
            {
                InitializeComponent();
                _core     = core;
                _groupid  = GroupID;
                _groupid1 = GroupID;
                InitEvents();

                if (GroupID != 0)
                {
                    this.FieldLinkSetEditState();
                }
                else
                {
                    this.FieldLinkSetNewState();
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }