ReBar

How can I achieve the functionality of the Microsoft's ReBar control? Is there a ReBar or similar component currently available in Syncfusion Tools ?

3 Replies

IF Ivaylo Fiziev December 7, 2006 08:12 AM UTC

I need to display a small picture (logo) in the top right corner of the main frame (like IE does)
is there a simple way to do this?


AD Administrator Syncfusion Team December 11, 2006 11:45 AM UTC

Hi Ivaylo,

If your intention is to add\display a logo to the right corner of your MainFrameBarManager,then you can achieve this by using a picturebox.

Kindly, refer the following code snippet,

private void Form1_Load(object sender, EventArgs e)
{
//Places the Picturebox at the right end of the Form
this.pictureBox1.Location = new Point(this.Width - 60);
}

private void Form1_Resize(object sender, EventArgs e)
{
//Places the Picturebox at the right end of the Form when resized.
this.pictureBox1.Location = new Point(this.Width - 60);
}
Herewith I have attached a sample implementing this feature for your reference.

Please let us know if you have any further queries, we will be glad to
assist you.

Regards,
Gurunathan.

MainFrame_Logo.zip


IF Ivaylo Fiziev December 21, 2006 11:40 AM UTC

Thanks, it works fine :)

Loader.
Up arrow icon