using System.Diagnostics;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
namespace NebulaAuth.View
{
///
/// Логика взаимодействия для SettingsView.xaml
///
public partial class SettingsView : UserControl
{
public SettingsView()
{
InitializeComponent();
}
private void ColorPicker_OnColorChanged(object sender, RoutedPropertyChangedEventArgs e)
{
Debug.WriteLine(e.NewValue);
}
}
}