RibbonControlAdv

In the product description for the RibbonControlAdv i saw a grid and other controls on the RibbonPanel, how can I do that? Is there any sample?

3 Replies

GR Golda Rebecal Syncfusion Team July 6, 2007 12:19 PM UTC

Hi Christian,

The images that are seen in the product description of RibbonControladv are ToolStripButtons and the text "Grid Controls" is a ToolStripLabel.

Please refer to the following link for more details:
http://www2.syncfusion.com/ug/Default.aspx##Essential%20Studio.chm/Office2007Windows/ToolStripPanelItem1.html

I have attached a sample that illustrates the same. Please have a look at it and let me know if this helps you.

We appreciate your interest in Syncfusion products.

http://websamples.syncfusion.com/samples/Tools.Windows/F63572/Main.htm

Best regards,
Golda


FA Faulhaber July 6, 2007 12:57 PM UTC

Hi Golda

I forgot to attach the link where I found the grid on a RibbonControlAdv:

http://www.syncfusion.com/products/tools/windows/features/Ribbon_Control_Adv/Hosting_.NET_Controls.aspx

Is there sample how I can do that?


JA JayaLakshmi Syncfusion Team July 11, 2007 11:43 AM UTC

Hi Christian,

Sorry for the delay in getting back to you.

You can add GridControl to ToolStripEx of RibbonControlAdv using ToolStripControlHost class.

The following code snippet illustrates this.

[C#]

// Adding GridControl to ToolStripEx2
ToolStripControlHost host = new ToolStripControlHost(this.gridControl1);
this.toolStripEx2.Items.Add(host);

Please refer the sample below and let me know if this helps.

http://websamples.syncfusion.com/samples/Tools.Windows/F63572_new/main.htm

Thanks for your patience.

Regards,
Jaya

Loader.
Up arrow icon