Пример #1
0
        void MainFormLoad(object sender, EventArgs e)
        {
            LoadSettings();

            mainListView.CreateSummaryTextBox();

            using (AtUserControl.WithUIBlock)
            {
                accountingDoc = new AccountingDoc(this.db, mainListView, GetFilter());
            }

            UpdateChangeManagerMenu();
        }
 public PaymentImportForm(AccountingDoc accountingDoc)
 {
     InitializeComponent();
     this.accountingDoc         = accountingDoc;
     paymentGridView.CellClick += new DataGridViewCellEventHandler(paymentGridView_CellClick);
 }