blob: 352223970c39c51e0020e26c73365c469dbbe277 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
namespace Xamarin.Forms.PlatformConfiguration.TizenSpecific
{
using FormsElement = Forms.NavigationPage;
public static class NavigationPage
{
#region HasBreadCrumbsBar
public static readonly BindableProperty HasBreadCrumbsBarProperty
= BindableProperty.CreateAttached("HasBreadCrumbsBar", typeof(bool), typeof(FormsElement), false);
public static bool GetHasBreadCrumbsBar(BindableObject element)
{
return (bool)element.GetValue(HasBreadCrumbsBarProperty);
}
public static void SetHasBreadCrumbsBar(BindableObject element, bool value)
{
element.SetValue(HasBreadCrumbsBarProperty, value);
}
public static bool HasBreadCrumbsBar(this IPlatformElementConfiguration<Tizen, FormsElement> config)
{
return GetHasBreadCrumbsBar(config.Element);
}
public static IPlatformElementConfiguration<Tizen, FormsElement> SetHasBreadCrumbsBar(this IPlatformElementConfiguration<Tizen, FormsElement> config, bool value)
{
SetHasBreadCrumbsBar(config.Element, value);
return config;
}
#endregion
}
}
|