-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSettings.xaml.cs
79 lines (73 loc) · 4.87 KB
/
Settings.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
using System;
using System.Collections.Generic;
using System.Configuration;
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.Shapes;
namespace Flagstone_Tessellation___Molecule_construction
{
/// <summary>
/// Interaction logic for Settings.xaml
/// </summary>
public partial class Settings : Window
{
public Settings()
{
InitializeComponent();
this.mountainFoldComboBox.Items.Add(new Line { X1 = 1, X2 = 200, Y1 = 10, Y2 = 10, Stroke = Brushes.Black, StrokeThickness = 1, Height = 25 });
this.mountainFoldComboBox.Items.Add(new Line { X1 = 1, X2 = 200, Y1 = 10, Y2 = 10, Stroke = Brushes.Black, StrokeThickness = 1, Height = 25, StrokeDashArray = Utils.toDashArrayPattern(1) });
this.mountainFoldComboBox.Items.Add(new Line { X1 = 1, X2 = 200, Y1 = 10, Y2 = 10, Stroke = Brushes.Black, StrokeThickness = 1, Height = 25, StrokeDashArray = Utils.toDashArrayPattern(2) });
this.mountainFoldComboBox.Items.Add(new Line { X1 = 1, X2 = 200, Y1 = 10, Y2 = 10, Stroke = Brushes.Black, StrokeThickness = 1, Height = 25, StrokeDashArray = Utils.toDashArrayPattern(3) });
this.valleyFoldComboBox.Items.Add(new Line { X1 = 1, X2 = 200, Y1 = 10, Y2 = 10, Stroke = Brushes.Black, StrokeThickness = 1, Height = 25 });
this.valleyFoldComboBox.Items.Add(new Line { X1 = 1, X2 = 200, Y1 = 10, Y2 = 10, Stroke = Brushes.Black, StrokeThickness = 1, Height = 25, StrokeDashArray = Utils.toDashArrayPattern(1) });
this.valleyFoldComboBox.Items.Add(new Line { X1 = 1, X2 = 200, Y1 = 10, Y2 = 10, Stroke = Brushes.Black, StrokeThickness = 1, Height = 25, StrokeDashArray = Utils.toDashArrayPattern(2) });
this.valleyFoldComboBox.Items.Add(new Line { X1 = 1, X2 = 200, Y1 = 10, Y2 = 10, Stroke = Brushes.Black, StrokeThickness = 1, Height = 25, StrokeDashArray = Utils.toDashArrayPattern(3) });
this.mountainFoldComboBox.SelectedIndex = int.Parse(System.Configuration.ConfigurationManager.AppSettings["mountainFold"]);
this.valleyFoldComboBox.SelectedIndex = int.Parse(System.Configuration.ConfigurationManager.AppSettings["valleyFold"]);
var mountainFoldHtmlColor = System.Configuration.ConfigurationManager.AppSettings["mountainFoldColor"];
this.mountainFoldColorPicker.SelectedColor = ((SolidColorBrush)new BrushConverter().ConvertFromString(mountainFoldHtmlColor)).Color;
var valleyFoldHtmlColor = System.Configuration.ConfigurationManager.AppSettings["valleyFoldColor"];
this.valleyFoldColorPicker.SelectedColor = ((SolidColorBrush)new BrushConverter().ConvertFromString(valleyFoldHtmlColor)).Color;
}
private void OK_Click(object sender, RoutedEventArgs e)
{
this.Close();
}
private void mountainFoldComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings["mountainFold"].Value = "" + this.mountainFoldComboBox.SelectedIndex;
config.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("appSettings");
}
private void valleyFoldComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings["valleyFold"].Value = "" + this.valleyFoldComboBox.SelectedIndex;
config.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("appSettings");
}
private void mountainFoldColorPicker_SelectedColorChanged(object sender, RoutedPropertyChangedEventArgs<Color?> e)
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings["mountainFoldColor"].Value = "" + this.mountainFoldColorPicker.SelectedColor.ToString();
config.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("appSettings");
}
private void valleyFoldColorPicker_SelectedColorChanged(object sender, RoutedPropertyChangedEventArgs<Color?> e)
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings["valleyFoldColor"].Value = "" + this.valleyFoldColorPicker.SelectedColor.ToString();
config.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("appSettings");
}
}
}