mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 18:41:26 -07:00
17 lines
353 B
C#
17 lines
353 B
C#
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();
|
|
}
|
|
}
|
|
}
|