mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 14:24:32 +00:00
24 lines
568 B
C#
24 lines
568 B
C#
using System.Diagnostics;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Media;
|
|
|
|
namespace NebulaAuth.View
|
|
{
|
|
/// <summary>
|
|
/// Логика взаимодействия для SettingsView.xaml
|
|
/// </summary>
|
|
public partial class SettingsView : UserControl
|
|
{
|
|
public SettingsView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void ColorPicker_OnColorChanged(object sender, RoutedPropertyChangedEventArgs<Color> e)
|
|
{
|
|
Debug.WriteLine(e.NewValue);
|
|
}
|
|
}
|
|
}
|