sharee.bike-App/TINKLib/View/MasterDetail/INavigationMasterDetail.cs
2021-08-28 10:04:10 +02:00

21 lines
541 B
C#

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