I have a system in which I use a dataGridView
to list the fields of a table with the property dataSource
, and a textBox
so that the written text serves as a filter (when I type something in textBox
, use the text typed to filter my table and update on dataSource
of dataGridView
).
I'm learning C # and I saw that in Visual Studio, I can create a Composite Component and wanted to create a component by joining the textBox
and the dataGridView
.
I started the creation with a dataGridView
and a textBox
and generated the new component ( textBoxGrid
).
I added the new component ( textBoxGrid
) to my form and when I went to look for the dataSource
property in the new component, it is not shown.
How do I make it visible?