New Utility Window. scraping of StockGroups, and coupled Stocks, Show in listview on UtilityWindow
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user