wabbajack/Wabbajack/Views/Common/UnderMaintenanceOverlay.xaml.cs

42 lines
1.1 KiB
C#
Raw Normal View History

2019-12-17 04:06:30 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace Wabbajack
{
/// <summary>
/// Interaction logic for UnderMaintenanceOverlay.xaml
/// </summary>
public partial class UnderMaintenanceOverlay : UserControl
{
2019-12-22 02:10:54 +00:00
public bool ShowHelp
{
get => (bool)GetValue(ShowHelpProperty);
set => SetValue(ShowHelpProperty, value);
}
public static readonly DependencyProperty ShowHelpProperty = DependencyProperty.Register(nameof(ShowHelp), typeof(bool), typeof(UnderMaintenanceOverlay),
new FrameworkPropertyMetadata(default(bool)));
2019-12-17 04:06:30 +00:00
public UnderMaintenanceOverlay()
{
InitializeComponent();
}
2019-12-22 02:10:54 +00:00
private void Help_Click(object sender, RoutedEventArgs e)
{
ShowHelp = !ShowHelp;
}
2019-12-17 04:06:30 +00:00
}
}