-
Notifications
You must be signed in to change notification settings - Fork 1
/
JsonOptions.xaml.cs
135 lines (115 loc) · 3.34 KB
/
JsonOptions.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Windows;
using System.Windows.Input;
namespace SheetReader.Wpf.Test
{
public partial class JsonOptions : Window, INotifyPropertyChanged
{
public event PropertyChangedEventHandler? PropertyChanged;
private bool _cellByCell;
private bool _asObjects;
private bool _indented;
private bool _firstRowDefinesColumns;
private bool _noDefaultCellValues;
public JsonOptions()
{
InitializeComponent();
DataContext = this;
#if DEBUG
Indented = true;
#endif
}
public bool Open { get; set; }
public bool FirstRowDefinesColumns
{
get => _firstRowDefinesColumns;
set
{
if (_firstRowDefinesColumns == value)
return;
_firstRowDefinesColumns = value;
OnPropertyChanged();
}
}
public bool Indented
{
get => _indented;
set
{
if (_indented == value)
return;
_indented = value;
OnPropertyChanged();
}
}
public bool CellByCell
{
get => _cellByCell;
set
{
if (_cellByCell == value)
return;
_cellByCell = value;
OnPropertyChanged();
}
}
public bool AsObjects
{
get => _asObjects;
set
{
if (_asObjects == value)
return;
_asObjects = value;
OnPropertyChanged();
}
}
public bool NoDefaultCellValues
{
get => _noDefaultCellValues;
set
{
if (_noDefaultCellValues == value)
return;
_noDefaultCellValues = value;
OnPropertyChanged();
}
}
private void OnPropertyChanged([CallerMemberName] string? name = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
cbAsObjects.IsEnabled = !CellByCell;
cbFirstRowDefinesColumns.IsEnabled = !CellByCell;
if (!cbAsObjects.IsEnabled)
{
AsObjects = false;
}
if (!cbFirstRowDefinesColumns.IsEnabled)
{
FirstRowDefinesColumns = false;
}
}
protected override void OnKeyDown(KeyEventArgs e)
{
base.OnKeyDown(e);
if (e.Key == Key.Escape)
{
e.Handled = true;
Close();
}
}
private void OnCancelClick(object sender, RoutedEventArgs e) => Close();
private void OnOKClick(object sender, RoutedEventArgs e)
{
DialogResult = true;
Close();
}
private void OnOKOpenClick(object sender, RoutedEventArgs e)
{
Open = true;
DialogResult = true;
Close();
}
}
}