mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
20 lines
560 B
C#
20 lines
560 B
C#
#if USEMASTERDETAIL || 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
|