Files
ShrlAlgoToolkit/WPFluent.Gallery/Views/Pages/DesignGuidance/IconsPage.xaml.cs
2025-04-24 20:56:44 +08:00

20 lines
467 B
C#

using IconsViewModel = WPFluent.Gallery.ViewModels.Pages.IconsViewModel;
namespace WPFluent.Gallery.Views.Pages.DesignGuidance;
/// <summary>
/// Interaction logic for IconsPage.xaml
/// </summary>
public partial class IconsPage : INavigableView<IconsViewModel>
{
public IconsViewModel ViewModel { get; }
public IconsPage(IconsViewModel viewModel)
{
ViewModel = viewModel;
DataContext = this;
InitializeComponent();
}
}