This is a migrated thread and some comments may be shown as answers.

Hide Overflow menu, Outlook View

5 Answers 152 Views
PageView
This is a migrated thread and some comments may be shown as answers.
Nadia Sangiovanni
Top achievements
Rank 1
Nadia Sangiovanni asked on 01 Jun 2012, 03:41 PM
Hi support,

Is it possible to hide the overflow menu with a tab strip in Outlook view mode?

Regards,
Nadia

5 Answers, 1 is accepted

Sort by
0
Nikolay
Telerik team
answered on 01 Jun 2012, 05:04 PM
Hello Nadia,

Could you please describe in greater details your requirement? What do you mean by "hide the overflow with a tab strip"? It will be best if you can support your description with a sketch. This will allow us to provide you with an adequate response.

I am looking forward to your reply.

Kind regards,
Nikolay
the Telerik team
RadControls for WinForms Q1'12 release is now live! Check out what's new or download a free trial >>
0
Nadia Sangiovanni
Top achievements
Rank 1
answered on 01 Jun 2012, 06:03 PM
Hi Support,

Sorry for the english mistake... The question was:
Is it possible to hide the overflow menu on a tab strip in Outlook view mode? We would like to use the outlook view mode but without the overflow menu.

Regards,
Nadia


0
Accepted
Nikolay
Telerik team
answered on 01 Jun 2012, 06:30 PM
Hi Nadia,

Thank you for this clarification.

Yes, you can hide the overflow area of RadPageView in Outlook mode. In order to do this, you need to set the Visibility property of the OverflowItemsContainer to Collapsed:

((RadPageViewOutlookElement)this.radPageView1.ViewElement).OverflowItemsContainer.Visibility = ElementVisibility.Collapsed;

I hope this helps.

All the best,
Nikolay
the Telerik team
RadControls for WinForms Q1'12 release is now live! Check out what's new or download a free trial >>
0
Matt
Top achievements
Rank 1
answered on 28 Aug 2012, 01:23 PM
On a similar note.  Can the menu be hidden and/or collapsed when set to Backstage type?

0
Nikolay
Telerik team
answered on 30 Aug 2012, 12:26 PM
Hello Matt,

You can find the answer to your question in the support ticket that you have submitted regarding the same topic. I am pasting the answer here in case our community is interested in it: 

Yes, the desired functionality can be achieved by setting the Visibility property of the ItemsContainer to Collapsed.

public Form1()
{
    InitializeComponent();
  
    //hide the items container
    (this.radPageView1.ViewElement as RadPageViewBackstageElement).ItemContainer.Visibility = ElementVisibility.Collapsed;
}

Regards,
Nikolay
the Telerik team
RadControls for WinForms Q2'12 release is now live! Check out what's new or download a free trial >>
Tags
PageView
Asked by
Nadia Sangiovanni
Top achievements
Rank 1
Answers by
Nikolay
Telerik team
Nadia Sangiovanni
Top achievements
Rank 1
Matt
Top achievements
Rank 1
Share this question
or