#if USEFLYOUT using System; namespace TINK.View.MasterDetail { public interface INavigationMasterDetail { /// /// Creates and a page an shows it. /// /// Type of page to show. void ShowPage(Type p_oTypeOfPage, string p_strTitle = null); /// /// Set a value indicating whether master deatail navigation menu is available or not. /// bool IsGestureEnabled { set; } } } #endif