protected virtual void InitData()
        {
            if (DesignMode)
            {
                return;
            }
            _fixedAssetCategoriesPresenter = new FixedAssetCategoriesPresenter(this);

            _fixedAssetCategoriesPresenter.DisplayComboCheck();
        }
コード例 #2
0
        private void FrmFixedAssetS24H_Load(object sender, EventArgs e)
        {
            _departmentsPresenter.Display();
            _fixedAssetCategoriesPresenter.DisplayComboCheck();
            _fixedAssetsPresenter.Display();

            Selection = new GridCheckMarksSelection(gridViewFixedAsset);
            Selection.CheckMarkColumn.VisibleIndex = 0;
            Selection.CheckMarkColumn.Width        = 5;
            StateCheck = true;
            gridViewFixedAsset.OptionsSelection.EnableAppearanceFocusedRow  = true;
            gridViewFixedAsset.OptionsSelection.EnableAppearanceFocusedCell = false;
            gridViewFixedAsset.OptionsView.ShowAutoFilterRow = true;
        }
コード例 #3
0
 private void FrmXtraFixedAssetS26H_Load(object sender, EventArgs e)
 {
     _departmentPresenter.DisplayActive();
     _fixedAssetCategoriesPresenter.DisplayComboCheck();
 }