18 lines
434 B
C#
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();
|
|
}
|