forked from JasonLautzenheiser/trizbort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppSettingsDialog.cs
53 lines (44 loc) · 1.1 KB
/
AppSettingsDialog.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
using System.Windows.Forms;
using DevComponents.DotNetBar;
namespace Trizbort
{
public partial class AppSettingsDialog : Form
{
public AppSettingsDialog()
{
InitializeComponent();
}
public bool SaveAt100
{
get { return chkSaveAtZoom.Checked; }
set { chkSaveAtZoom.Checked = value; }
}
public bool InvertMouseWheel
{
get { return m_invertWheelCheckBox.Checked; }
set { m_invertWheelCheckBox.Checked = value; }
}
public bool SaveToImage
{
get { return chkSaveToImage.Checked; }
set { chkSaveToImage.Checked=value; }
}
public bool SaveToPDF
{
get { return chkSaveToPDF.Checked; }
set { chkSaveToPDF.Checked = value; }
}
public int DefaultImageType
{
get { return cboImageSaveType.SelectedIndex; }
set { cboImageSaveType.SelectedIndex = value; }
}
private void AppSettingsDialog_Load(object sender, System.EventArgs e)
{
}
private void cboImageSaveType_Enter(object sender, System.EventArgs e)
{
cboImageSaveType.DroppedDown = true;
}
}
}