mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-04-20 12:06:29 +02:00
Initial version.
This commit is contained in:
parent
193aaa1a56
commit
b72c67a53e
228 changed files with 25924 additions and 0 deletions
15
TINKLib/View/MasterDetail/EmptyNavigationMasterDetail.cs
Normal file
15
TINKLib/View/MasterDetail/EmptyNavigationMasterDetail.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
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.");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue