Ejemplo n.º 1
0
        protected override void OnButtonClick(object sender, MouseEventArgs e)
        {
            if (FocusedCell == null)
            {
                return;
            }

            ConsInvitedDeptsDialog panel = new ConsInvitedDeptsDialog(DataObj);

            panel.ShowDialog();
            // 保存
            if (panel.DialogResult == DialogResult.OK)
            {
                FocusedCell.SetValue(ConstructInvitedDeptInfo(this.DataObj));
                //gridControl.DataTableShared.CloseEditor(null);
                gridControl.CloseEditor();
            }
        }
Ejemplo n.º 2
0
        void CustomRefControl_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (FocusedCell == null)
            {
                return;
            }

            ConsInvitedDeptsDialog panel = new ConsInvitedDeptsDialog(DataObj);

            panel.ShowDialog();
            // 保存
            if (panel.DialogResult == DialogResult.OK)
            {
                FocusedCell.SetValue(ConstructInvitedDeptInfo(this.DataObj));
                //gridControl.DataTableShared.CloseEditor(null);
                gridControl.CloseEditor();
            }
        }