示例#1
0
        public void FocusCell()
        {
            SequenceFormView window = (SequenceFormView)View;

            if (window != null)
            {
                window.FocusCell();
            }
        }
示例#2
0
        public bool CanReorderVariable()
        {
            //when you query the view, it is determined the order is not possible to change if it is sorted
            SequenceFormView window = (SequenceFormView)View;

            if (window != null && window.IsDataGridSorting)
            {
                return(false);
            }
            return(true);
        }