24 lines
748 B
C#
24 lines
748 B
C#
using System.Windows.Controls;
|
|
|
|
using WPFluent.Gallery.Views;
|
|
using WPFluent.Gallery.Views.Pages;
|
|
using WPFluent.Gallery.Views.Pages.Collections;
|
|
using WPFluent.Gallery.Views.Pages.DesignGuidance;
|
|
using WPFluent.Gallery.Views.Pages.Navigation;
|
|
using WPFluent.Gallery.Views.Pages.Windows;
|
|
|
|
namespace WPFluent.Gallery.ViewModels.Windows;
|
|
|
|
public partial class MainWindowViewModel : ViewModel
|
|
{
|
|
[ObservableProperty]
|
|
private string applicationTitle = "WPFluent";
|
|
|
|
[ObservableProperty]
|
|
private ObservableCollection<WPFluent.Controls.MenuItem> trayMenuItems =
|
|
[
|
|
new WPFluent.Controls.MenuItem { Header = "Home", Tag = "tray_home" },
|
|
new WPFluent.Controls.MenuItem { Header = "Close", Tag = "tray_close" },
|
|
];
|
|
}
|