New Utility Window. scraping of StockGroups, and coupled Stocks, Show in listview on UtilityWindow

This commit is contained in:
2022-09-29 12:51:57 +02:00
parent 13f4613fb8
commit 6e2eb207a3
10 changed files with 283 additions and 2 deletions

View File

@ -35,6 +35,7 @@ namespace StockInfoCore
private readonly frmPersonShareConnect _personShareConnect;
private readonly frmBackup _backupWindow;
private readonly frmEditStock _editStock;
private readonly frmUtilities _utilities;
bool loading = false;
int progressValue = 0;
@ -55,7 +56,8 @@ namespace StockInfoCore
frmPerson personWindow,
frmPersonShareConnect personShareConnect,
frmBackup backupWindow,
frmEditStock editStock
frmEditStock editStock,
frmUtilities utilities
)
{
InitializeComponent();
@ -74,6 +76,7 @@ namespace StockInfoCore
_personShareConnect = personShareConnect;
_backupWindow = backupWindow;
_editStock = editStock;
_utilities = utilities;
}
private void Form1_Load(object sender, EventArgs e)
@ -326,5 +329,10 @@ namespace StockInfoCore
pbInitial.Visible = false;
progressValue = 0;
}
private void btnUtils_Click(object sender, EventArgs e)
{
_utilities.ShowDialog();
}
}
}