mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
17 lines
370 B
C#
17 lines
370 B
C#
using Bloxstrap.UI.ViewModels.Menu;
|
|
|
|
namespace Bloxstrap.UI.Elements.Menu.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for AppearancePage.xaml
|
|
/// </summary>
|
|
public partial class AppearancePage
|
|
{
|
|
public AppearancePage()
|
|
{
|
|
DataContext = new AppearanceViewModel(this);
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|