mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
18 lines
568 B
C#
18 lines
568 B
C#
#if USEMASTERDETAIL || USEFLYOUT
|
|
using Serilog;
|
|
using System;
|
|
|
|
namespace TINK.View.MasterDetail
|
|
{
|
|
|
|
public class EmptyNavigationMasterDetail : INavigationMasterDetail
|
|
{
|
|
public bool IsGestureEnabled { set => Log.ForContext<EmptyNavigationMasterDetail>().Error($"Unexpected call of {nameof(IsGestureEnabled)} detected."); }
|
|
|
|
public void ShowPage(Type p_oTypeOfPage, string p_strTitle = null)
|
|
{
|
|
Log.ForContext<EmptyNavigationMasterDetail>().Error($"Unexpected call of {nameof(ShowPage)} detected.");
|
|
}
|
|
}
|
|
}
|
|
#endif
|