mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 18:41:26 -07:00
22 lines
462 B
C#
22 lines
462 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Input;
|
|
|
|
using Bloxstrap.UI.ViewModels.Menu;
|
|
|
|
namespace Bloxstrap.UI.Menu.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for BehaviourPage.xaml
|
|
/// </summary>
|
|
public partial class BehaviourPage
|
|
{
|
|
public BehaviourPage()
|
|
{
|
|
DataContext = new BehaviourViewModel();
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|