New startup window.

This commit is contained in:
Burak Kaan Köse
2026-03-05 10:12:03 +01:00
parent d45d3faa89
commit db5ecd60e4
46 changed files with 1857 additions and 234 deletions
@@ -17,10 +17,10 @@ public class NavigationServiceBase
};
}
public Type? GetCurrentFrameType(ref Frame _frame)
public Type? GetCurrentFrameType(Frame frame)
{
if (_frame != null && _frame.Content != null)
return _frame.Content.GetType();
if (frame != null && frame.Content != null)
return frame.Content.GetType();
return null;
}