mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 18:41:26 -07:00
26 lines
607 B
C#
26 lines
607 B
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Windows;
|
|
using Wpf.Ui.Common.Interfaces;
|
|
using Wpf.Ui.Mvvm.Contracts;
|
|
using Wpf.Ui.Mvvm.Interfaces;
|
|
|
|
namespace Bloxstrap.Views.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for IntegrationsPage.xaml
|
|
/// </summary>
|
|
public partial class IntegrationsPage
|
|
{
|
|
public IntegrationsPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void NavigateReShadeHelp(object sender, EventArgs e)
|
|
{
|
|
((INavigationWindow)Window.GetWindow(this)!).Navigate(typeof(ReShadeHelpPage));
|
|
}
|
|
}
|
|
}
|