25 lines
444 B
C#
25 lines
444 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Configuration;
|
|
|
|
namespace MetroGauges
|
|
{
|
|
/// <summary>
|
|
/// Skinsetting.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class WpfPalette
|
|
{
|
|
|
|
public WpfPalette()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void WindowClose_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
Hide();
|
|
}
|
|
|
|
}
|
|
}
|