Dear Friends
I am using the WinExplorerBar to create an outlook style ui.
I just want to hide the bottom navigation pane completely. I tried with the creation filter But it hide only the icons. But a blank bar comes in the last.
How to hide that blank bar too?
--
This is my creation filter coding.
internal class QuickCustomizeButtonCreationFilter : IUIElementCreationFilter
{
#region IUIElementCreationFilter Members
public void AfterCreateChildElements(UIElement parent)
// do nothing
}
public bool BeforeCreateChildElements(UIElement parent)
if( parent is Infragistics.Win.UltraWinExplorerBar.NavigationOverflowQuickCustomizeButtonUIElement
|| parent is Infragistics.Win.UltraWinExplorerBar.NavigationSplitterBarUIElement
|| parent is Infragistics.Win.UltraWinExplorerBar.NavigationOverflowButtonImageUIElement)
parent.Parent.ChildElements.Remove(parent);
parent.Dispose();
return true;
else if(parent is Infragistics.Win.UltraWinExplorerBar.NavigationOverflowButtonUIElement)
((Infragistics.Win.UltraWinExplorerBar.NavigationOverflowButtonUIElement)parent).Rect = new System.Drawing.Rectangle(0,0,0,0);
return false;
#endregion
-------------
Thanks & Regards
Prakash
This can be hidden by setting
NavigationOverflowButtonAreaVisible =
False
What im trying to work out is how to hide the customization menu access button thing on the right of that area id anyone has any ideas for that one!
I have 2009.2 release but i don't see how you can do that
This functionality will be available in the 2009.2 release.