Files
LehrerApp/LehrerApp.Desktop/Views/ViewCodeBehind.cs
2026-03-29 23:47:31 +02:00

18 lines
434 B
C#

using Avalonia.Controls;
namespace LehrerApp.Desktop.Views;
// Code-behind Stubs für Views ohne eigene .axaml.cs
// NavButton → eigene NavButton.axaml.cs
// SyncStatusBar → eigene SyncStatusBar.axaml.cs
public partial class DashboardView : UserControl
{
public DashboardView() => InitializeComponent();
}
public partial class PlaceholderView : UserControl
{
public PlaceholderView() => InitializeComponent();
}