2 implementations of INavigation
Microsoft.Maui.Controls (1)
NavigationProxy.cs (1)
22
public class NavigationProxy :
INavigation
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Platform.cs (1)
130
public class DefaultPlatform : BindableObject, ITizenPlatform,
INavigation
37 references to INavigation
Microsoft.Maui.Controls (18)
NavigableElement\NavigableElement.cs (4)
14
BindableProperty.CreateReadOnly(nameof(Navigation), typeof(
INavigation
), typeof(NavigableElement), default(
INavigation
));
29
public
INavigation
Navigation
31
get { return (
INavigation
)GetValue(NavigationProperty); }
NavigationProxy.cs (11)
24
INavigation
_inner;
30
public
INavigation
Inner
160
INavigation
currentInner = Inner;
166
INavigation
currentInner = Inner;
172
INavigation
currentInner = Inner;
188
INavigation
inner = Inner;
194
INavigation
innerNav = Inner;
200
INavigation
currentInner = Inner;
216
INavigation
currentInner = Inner;
227
INavigation
currentInner = Inner;
238
INavigation
currentInner = Inner;
Shell\Shell.cs (3)
2139
readonly
INavigation
_shellProxy;
2141
public NavigationImplWrapper(
INavigation
proxy,
INavigation
shellProxy)
Microsoft.Maui.Controls.Compatibility (19)
Tizen\Platform.cs (19)
175
IReadOnlyList<Page>
INavigation
.ModalStack => _navModel.Modals.ToList();
176
IReadOnlyList<Page>
INavigation
.NavigationStack => new List<Page>();
248
void
INavigation
.InsertPageBefore(Page page, Page before)
253
Task<Page>
INavigation
.PopAsync()
255
return ((
INavigation
)this).PopAsync(true);
258
Task<Page>
INavigation
.PopAsync(bool animated)
263
Task
INavigation
.PopToRootAsync()
265
return ((
INavigation
)this).PopToRootAsync(true);
268
Task
INavigation
.PopToRootAsync(bool animated)
273
Task
INavigation
.PushAsync(Page root)
275
return ((
INavigation
)this).PushAsync(root, true);
278
Task
INavigation
.PushAsync(Page root, bool animated)
283
void
INavigation
.RemovePage(Page page)
288
Task
INavigation
.PushModalAsync(Page modal)
290
return ((
INavigation
)this).PushModalAsync(modal, true);
293
async Task
INavigation
.PushModalAsync(Page modal, bool animated)
306
Task<Page>
INavigation
.PopModalAsync()
308
return ((
INavigation
)this).PopModalAsync(true);
311
async Task<Page>
INavigation
.PopModalAsync(bool animated)