toolstripcontrolhost

How to make Custom contol look like other ToolStrip Items?

I have created a Custom Hosted Control using ToolStripControlHost and put it in a ToolStrip. Everything is working as expected. But my custom control does not look like other items in ToolStrip. How to make my custom control take the look and feel from ToolStripRenderer? or How to make it look like other items in ToolStrip? ...

How to set the DataSource of a DataGridView inside a ToolStripControlHost? (C# window forms)

I have a DataGridView inside a ContextMenu control, please see the code snippet below: private void Form1_Load(object sender, EventArgs e) { SetDataSource(dataSet1);// A populated DataSet } protected void SetDataSource(DataSet ds) { dataGridView1.DataSource = ds; ToolStripCon...