2

Hello I`m making a windows application to check and use thread.

I want to make like this.

  1. Winfrom design is like this enter image description here

  2. In Datagridview I want to bind each rows with each datasource(or table)

for example, as you can see, Process 1 is bind with table1 and Process2 is bind with table2

and when data is loading I want to see that using thread and progress bar in Datagridview column.

So my questions is, Is it possible to bind multiple datasource in one Datagridview.

Please tell me about that or another way to make that. Thank you.

Ramkrishna Sharma
  • 6,961
  • 3
  • 42
  • 51
Ryden Choi
  • 307
  • 4
  • 19

1 Answers1

0

No. You cannot bind each row with different datasource. One possible solution could be like this

For each process name / row header, create a variable which will contain the progress status (ex. percentage).

After this, for each row/process name, create a progress bar and bind the progress bar value with designated variable for the process.

Ghost Developer
  • 1,283
  • 1
  • 10
  • 18