Files
ShrlAlgoToolkit/WPFluent.Gallery/Views/Pages/DesignGuidance/IconsPage.xaml.cs
2025-05-05 17:04:06 +08:00

17 lines
349 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
{
public IconsPage()
{
DataContext = new IconsViewModel();
InitializeComponent();
}
}