Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2290
setting NavigationBarHidden = false is disabling calls to [Export("slideTabView:tab:layoutForBounds:")]
posted

Hi,

I have a weird problem and i do not know if infragistics is the one to ask but i give it a shot.

My code works fine displaying tabs and slideTabView method override below is called to readjust positioning of my tabs just fine.

[Export("slideTabView:tab:layoutForBounds:")]
public void Tab(IGSlideTabView slideTabView, IGSlideTabItem tab, RectangleF bounds)
{

  .....

  ......

}

but if i remove navigationbar before I come to view then it never called initially (if I rotate the screen all comes back)

public override void ViewWillAppear(bool animated)

{
  base.ViewWillAppear(animated);
  this.NavigationController.NavigationBarHidden = true;

}

Any ideas?

Thank you

Mark