sharee.bike-App/TINKLib/View/MasterDetail/INavigationMasterDetail.cs

21 lines
541 B
C#
Raw Normal View History

#if USEFLYOUT
2021-06-26 20:57:55 +02:00
using System;
2021-05-13 20:03:07 +02:00
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; }
}
}
2021-06-26 20:57:55 +02:00
#endif