Exemplo n.º 1
0
        private void AccountsView_Load(object sender, EventArgs e)
        {
            if (_accountsIds != null)
            {
                _accountViewModel.LoadAccounts(_accountsIds);
            }
            else
            {
                _accountViewModel.LoadAccounts();
            }

            if (File.Exists(Properties.Settings.Default.AccountsLayoutFilePath))
            {
                orphanageGridView1.GridView.LoadLayout(Properties.Settings.Default.AccountsLayoutFilePath);
            }
        }