2025-04-24 20:56:44 +08:00
|
|
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
|
|
|
|
// If a copy of the MIT was not distributed with this file, You can obtain one at https://opensource.org/licenses/MIT.
|
|
|
|
|
|
// Copyright (C) Leszek Pomianowski and WPF UI Contributors.
|
|
|
|
|
|
// All Rights Reserved.
|
|
|
|
|
|
|
2025-05-05 17:04:06 +08:00
|
|
|
|
using WPFluent.Extensions;
|
2025-04-24 20:56:44 +08:00
|
|
|
|
using WPFluent.Gallery.ControlsLookup;
|
|
|
|
|
|
using WPFluent.Gallery.Models;
|
|
|
|
|
|
using WPFluent.Gallery.Views.Pages;
|
|
|
|
|
|
|
|
|
|
|
|
namespace WPFluent.Gallery.ViewModels.Pages;
|
|
|
|
|
|
|
|
|
|
|
|
public partial class LayoutViewModel : ViewModel
|
|
|
|
|
|
{
|
|
|
|
|
|
[ObservableProperty]
|
|
|
|
|
|
private ICollection<NavigationCard> _navigationCards = new ObservableCollection<NavigationCard>(
|
|
|
|
|
|
ControlPages
|
|
|
|
|
|
.FromNamespace(typeof(LayoutPage).Namespace!)
|
|
|
|
|
|
.Select(x => new NavigationCard()
|
|
|
|
|
|
{
|
|
|
|
|
|
Name = x.Name,
|
|
|
|
|
|
Icon = x.Icon,
|
|
|
|
|
|
Description = x.Description,
|
|
|
|
|
|
PageType = x.PageType,
|
|
|
|
|
|
})
|
|
|
|
|
|
);
|
2025-05-05 17:04:06 +08:00
|
|
|
|
[RelayCommand()]
|
|
|
|
|
|
private void ShowDialog()
|
|
|
|
|
|
{
|
|
|
|
|
|
MessageExtensions.ShowMessage();
|
|
|
|
|
|
}
|
2025-04-24 20:56:44 +08:00
|
|
|
|
}
|