mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
22 lines
417 B
C#
22 lines
417 B
C#
using System;
|
|
using System.Windows;
|
|
|
|
namespace Bloxstrap.Dialogs.Menu
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for ReShadeHelp.xaml
|
|
/// </summary>
|
|
public partial class ReShadeHelp : Window
|
|
{
|
|
public ReShadeHelp()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void ButtonClose_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
}
|
|
}
|