Esempio n. 1
0
        private void BtnMineralPricesType_Click(object sender, EventArgs e)
        {
            FrmPriceType dialog = new FrmPriceType(m_EveDatabase, m_Settings.PriceLoad.Minerals);

            if (DialogResult.OK != dialog.ShowDialog(this))
            {
                return;
            }

            UpdateMineralPricesTypeLabel();
        }
Esempio n. 2
0
        private void TlbBtnPricesType_Click(object sender, EventArgs e)
        {
            FrmPriceType dialog = new FrmPriceType(m_EveDatabase, m_Engine.m_Settings.PriceLoad.Items);

            if (DialogResult.OK != dialog.ShowDialog(this))
            {
                return;
            }

            UpdatePricesSettingsHint();
            LoadMarketPrices(false, false);
        }