Vereinsmeisterschaften  22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
Loading...
Searching...
No Matches
FrameExtensions.cs
2
6public static class FrameExtensions
7{
13 public static object GetDataContext(this Frame frame)
14 {
15 if (frame.Content is FrameworkElement element)
16 {
17 return element.DataContext;
18 }
19
20 return null;
21 }
22
27 public static void CleanNavigation(this Frame frame)
28 {
29 while (frame.CanGoBack)
30 {
31 frame.RemoveBackEntry();
32 }
33 }
34}