1 instantiation of AppLinkEntry
Microsoft.Maui.Controls (1)
AppLinkEntry.cs (1)
77 var appEntry = new AppLinkEntry();
10 references to AppLinkEntry
Microsoft.Maui.Controls (7)
AppLinkEntry.cs (7)
19 public static readonly BindableProperty TitleProperty = BindableProperty.Create(nameof(Title), typeof(string), typeof(AppLinkEntry), default(string)); 22 public static readonly BindableProperty DescriptionProperty = BindableProperty.Create(nameof(Description), typeof(string), typeof(AppLinkEntry), default(string)); 25 public static readonly BindableProperty ThumbnailProperty = BindableProperty.Create(nameof(Thumbnail), typeof(ImageSource), typeof(AppLinkEntry), default(ImageSource)); 28 public static readonly BindableProperty AppLinkUriProperty = BindableProperty.Create(nameof(AppLinkUri), typeof(Uri), typeof(AppLinkEntry), null); 31 public static readonly BindableProperty IsLinkActiveProperty = BindableProperty.Create(nameof(IsLinkActive), typeof(bool), typeof(AppLinkEntry), false); 75 public static AppLinkEntry FromUri(Uri uri) 77 var appEntry = new AppLinkEntry();
Microsoft.Maui.Controls.Compatibility (3)
iOS\iOSAppLinks.cs (3)
75 var aL = deepLinkUri as AppLinkEntry; 80 if (e.PropertyName == AppLinkEntry.IsLinkActiveProperty.PropertyName)