The Simplified 7 Steps :
- [MainForm] User Clicks btnAdd Button
- AddForm will be shown
- [AddForm] btnCreate is clicked
- within the btnCreate_Click we run AddProductProcess with an awaiter * We will close the AddForm as soon as the click * And show the MainForm
- Inside AddProductProcess we run AddProduct with an awaiter
- We run our AddProduct which will do the lengthy process for us and fill the Application-Level static collection : ProductCollection
- [MainForm] When the Process AddProductis done we will show the Added Product Item in our lstProducts ListBox.
5 Pieces of Code :
private void btnAddProduct_Click(object sender, EventArgs e)
{
FormAddProduct fap = new FormAddProduct(SelCol);
fap.ShowDialog();
}
------
private async void btnCreate_Click(object sender, EventArgs e)
{
string stProduct = txtProductName.Text;
await ProductCollection.AddProductProcess(stProduct);
this.Close();
MainForm.Show();
}
------
public async Task AddProductProcess(string pName)
{
await Task.Factory.StartNew(() =>
AddProduct(pName));
// This would be our heavy process
}
------
public void AddProduct(string pName)
{
ProductItem p = new ProductItem();
p.Name = pName ;
p.Position = Count;
p.GetInfo(); // and some similar heavy methods are inside this
//ProductCollection.Add(p);
}
------
public void Add(Product product)
{
MainForm.lstProduct.Add(product.Name);
}
"MainForm.lstProduct.Add" cause a invalid cross-thread operation error
I need to add a Task Completion notification on it so can add the result the proper way to the ListBox Could you help me implement it ?
I should pass this line of code to the code that will execute right after the task is finished.
ProductCollection.Add(p);
Any Ideas on this piece of code and the subject are appreciated,
StartNew()here? If some part ofAddProduct()is slow, which one is it and why is it slow? – svick Jun 3 '12 at 10:24