54 lines
1.3 KiB
C#
54 lines
1.3 KiB
C#
using System;
|
|
using System.Windows;
|
|
|
|
namespace MyApp
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for Settings.xaml
|
|
/// </summary>
|
|
public partial class SettingsWindow : Window
|
|
{
|
|
ProgramData data;
|
|
internal SettingsWindow(ProgramData pD)
|
|
{
|
|
InitializeComponent();
|
|
data = pD;
|
|
GenreListView.ItemsSource = data.GenreList;
|
|
}
|
|
|
|
private void Add_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
if (InputTextBox.Text != "")
|
|
data.GenreList.Add(InputTextBox.Text);
|
|
}
|
|
|
|
private void Remove_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
if (GenreListView.SelectedItem is String s)
|
|
{
|
|
data.GenreList.Remove(s);
|
|
}
|
|
}
|
|
|
|
private void CheckBox_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
if (CheckAutoSave.IsChecked is bool check)
|
|
{
|
|
if (Owner is MainWindow my)
|
|
{
|
|
if (check)
|
|
{
|
|
my.timer.Start();
|
|
data.AutoSave = true;
|
|
}
|
|
else
|
|
{
|
|
my.timer.Stop();
|
|
data.AutoSave = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|