2025-04-24 20:56:44 +08:00
|
|
|
|
using IconsViewModel = WPFluent.Gallery.ViewModels.Pages.IconsViewModel;
|
|
|
|
|
|
|
|
|
|
|
|
namespace WPFluent.Gallery.Views.Pages.DesignGuidance;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Interaction logic for IconsPage.xaml
|
|
|
|
|
|
/// </summary>
|
2025-05-05 17:04:06 +08:00
|
|
|
|
public partial class IconsPage
|
2025-04-24 20:56:44 +08:00
|
|
|
|
{
|
2025-05-05 17:04:06 +08:00
|
|
|
|
public IconsPage()
|
2025-04-24 20:56:44 +08:00
|
|
|
|
{
|
2025-05-05 17:04:06 +08:00
|
|
|
|
DataContext = new IconsViewModel();
|
2025-04-24 20:56:44 +08:00
|
|
|
|
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|