diff --git a/DS4Windows/DS4Control/ScpUtil.cs b/DS4Windows/DS4Control/ScpUtil.cs
index 2628b73..91d917e 100644
--- a/DS4Windows/DS4Control/ScpUtil.cs
+++ b/DS4Windows/DS4Control/ScpUtil.cs
@@ -500,6 +500,12 @@ namespace DS4Windows
get { return m_Config.startMinimized; }
}
+ public static bool MinToTaskbar
+ {
+ set { m_Config.minToTaskbar = value; }
+ get { return m_Config.minToTaskbar; }
+ }
+
public static int FormWidth
{
set { m_Config.formWidth = value; }
@@ -1431,6 +1437,7 @@ namespace DS4Windows
public int formLocationX = 0;
public int formLocationY = 0;
public Boolean startMinimized = false;
+ public Boolean minToTaskbar = false;
public DateTime lastChecked;
public int CheckWhen = 1;
public int notifications = 2;
@@ -2898,6 +2905,8 @@ namespace DS4Windows
catch { missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/Profile/startMinimized"); Boolean.TryParse(Item.InnerText, out startMinimized); }
catch { missingSetting = true; }
+ try { Item = m_Xdoc.SelectSingleNode("/Profile/minimizeToTaskbar"); Boolean.TryParse(Item.InnerText, out minToTaskbar); }
+ catch { missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/Profile/formWidth"); Int32.TryParse(Item.InnerText, out formWidth); }
catch { missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/Profile/formHeight"); Int32.TryParse(Item.InnerText, out formHeight); }
@@ -3035,6 +3044,7 @@ namespace DS4Windows
XmlNode xmlUseExclNode = m_Xdoc.CreateNode(XmlNodeType.Element, "useExclusiveMode", null); xmlUseExclNode.InnerText = useExclusiveMode.ToString(); Node.AppendChild(xmlUseExclNode);
XmlNode xmlStartMinimized = m_Xdoc.CreateNode(XmlNodeType.Element, "startMinimized", null); xmlStartMinimized.InnerText = startMinimized.ToString(); Node.AppendChild(xmlStartMinimized);
+ XmlNode xmlminToTaskbar = m_Xdoc.CreateNode(XmlNodeType.Element, "minimizeToTaskbar", null); xmlminToTaskbar.InnerText = minToTaskbar.ToString(); Node.AppendChild(xmlminToTaskbar);
XmlNode xmlFormWidth = m_Xdoc.CreateNode(XmlNodeType.Element, "formWidth", null); xmlFormWidth.InnerText = formWidth.ToString(); Node.AppendChild(xmlFormWidth);
XmlNode xmlFormHeight = m_Xdoc.CreateNode(XmlNodeType.Element, "formHeight", null); xmlFormHeight.InnerText = formHeight.ToString(); Node.AppendChild(xmlFormHeight);
XmlNode xmlFormLocationX = m_Xdoc.CreateNode(XmlNodeType.Element, "formLocationX", null); xmlFormLocationX.InnerText = formLocationX.ToString(); Node.AppendChild(xmlFormLocationX);
diff --git a/DS4Windows/DS4Forms/DS4Form.Designer.cs b/DS4Windows/DS4Forms/DS4Form.Designer.cs
index 1197b47..7696707 100644
--- a/DS4Windows/DS4Forms/DS4Form.Designer.cs
+++ b/DS4Windows/DS4Forms/DS4Form.Designer.cs
@@ -132,7 +132,6 @@
this.runStartTaskRadio = new System.Windows.Forms.RadioButton();
this.label1 = new System.Windows.Forms.Label();
this.runStartProgRadio = new System.Windows.Forms.RadioButton();
- this.startMinimizedCheckBox = new System.Windows.Forms.CheckBox();
this.panel1 = new System.Windows.Forms.Panel();
this.lbNotifications = new System.Windows.Forms.Label();
this.cBoxNotifications = new System.Windows.Forms.ComboBox();
@@ -141,6 +140,8 @@
this.nUDLatency = new System.Windows.Forms.NumericUpDown();
this.lbMsLatency = new System.Windows.Forms.Label();
this.cBFlashWhenLate = new System.Windows.Forms.CheckBox();
+ this.startMinimizedCheckBox = new System.Windows.Forms.CheckBox();
+ this.mintoTaskCheckBox = new System.Windows.Forms.CheckBox();
this.cBCloseMini = new System.Windows.Forms.CheckBox();
this.cBQuickCharge = new System.Windows.Forms.CheckBox();
this.cBUseWhiteIcon = new System.Windows.Forms.CheckBox();
@@ -153,6 +154,7 @@
this.lbUseXIPorts = new System.Windows.Forms.Label();
this.nUDXIPorts = new System.Windows.Forms.NumericUpDown();
this.lbLastXIPort = new System.Windows.Forms.Label();
+ this.languagePackComboBox1 = new DS4Windows.DS4Forms.LanguagePackComboBox();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.linkProfiles = new System.Windows.Forms.LinkLabel();
this.lnkControllers = new System.Windows.Forms.LinkLabel();
@@ -172,7 +174,6 @@
this.cMCustomLed = new System.Windows.Forms.ContextMenuStrip(this.components);
this.useProfileColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.useCustomColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.languagePackComboBox1 = new DS4Windows.DS4Forms.LanguagePackComboBox();
this.advColorDialog = new DS4Windows.AdvancedColorDialog();
this.pnlButton.SuspendLayout();
this.cMTaskbar.SuspendLayout();
@@ -946,10 +947,11 @@
this.fLPSettings.Controls.Add(this.cBSwipeProfiles);
this.fLPSettings.Controls.Add(this.StartWindowsCheckBox);
this.fLPSettings.Controls.Add(this.runStartupPanel);
- this.fLPSettings.Controls.Add(this.startMinimizedCheckBox);
this.fLPSettings.Controls.Add(this.panel1);
this.fLPSettings.Controls.Add(this.cBDisconnectBT);
this.fLPSettings.Controls.Add(this.panel2);
+ this.fLPSettings.Controls.Add(this.startMinimizedCheckBox);
+ this.fLPSettings.Controls.Add(this.mintoTaskCheckBox);
this.fLPSettings.Controls.Add(this.cBCloseMini);
this.fLPSettings.Controls.Add(this.cBQuickCharge);
this.fLPSettings.Controls.Add(this.cBUseWhiteIcon);
@@ -1021,13 +1023,6 @@
this.runStartProgRadio.UseVisualStyleBackColor = false;
this.runStartProgRadio.Click += new System.EventHandler(this.runStartProgRadio_Click);
//
- // startMinimizedCheckBox
- //
- resources.ApplyResources(this.startMinimizedCheckBox, "startMinimizedCheckBox");
- this.startMinimizedCheckBox.Name = "startMinimizedCheckBox";
- this.startMinimizedCheckBox.UseVisualStyleBackColor = true;
- this.startMinimizedCheckBox.CheckedChanged += new System.EventHandler(this.startMinimizedCheckBox_CheckedChanged);
- //
// panel1
//
this.panel1.Controls.Add(this.lbNotifications);
@@ -1097,6 +1092,19 @@
this.cBFlashWhenLate.UseVisualStyleBackColor = false;
this.cBFlashWhenLate.CheckedChanged += new System.EventHandler(this.cBFlashWhenLate_CheckedChanged);
//
+ // startMinimizedCheckBox
+ //
+ resources.ApplyResources(this.startMinimizedCheckBox, "startMinimizedCheckBox");
+ this.startMinimizedCheckBox.Name = "startMinimizedCheckBox";
+ this.startMinimizedCheckBox.UseVisualStyleBackColor = true;
+ this.startMinimizedCheckBox.CheckedChanged += new System.EventHandler(this.startMinimizedCheckBox_CheckedChanged);
+ //
+ // mintoTaskCheckBox
+ //
+ resources.ApplyResources(this.mintoTaskCheckBox, "mintoTaskCheckBox");
+ this.mintoTaskCheckBox.Name = "mintoTaskCheckBox";
+ this.mintoTaskCheckBox.UseVisualStyleBackColor = true;
+ //
// cBCloseMini
//
resources.ApplyResources(this.cBCloseMini, "cBCloseMini");
@@ -1201,6 +1209,12 @@
resources.ApplyResources(this.lbLastXIPort, "lbLastXIPort");
this.lbLastXIPort.Name = "lbLastXIPort";
//
+ // languagePackComboBox1
+ //
+ resources.ApplyResources(this.languagePackComboBox1, "languagePackComboBox1");
+ this.languagePackComboBox1.Name = "languagePackComboBox1";
+ this.languagePackComboBox1.SelectedValueChanged += new System.EventHandler(this.languagePackComboBox1_SelectedValueChanged);
+ //
// flowLayoutPanel1
//
resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1");
@@ -1339,12 +1353,6 @@
resources.ApplyResources(this.useCustomColorToolStripMenuItem, "useCustomColorToolStripMenuItem");
this.useCustomColorToolStripMenuItem.Click += new System.EventHandler(this.useCustomColorToolStripMenuItem_Click);
//
- // languagePackComboBox1
- //
- resources.ApplyResources(this.languagePackComboBox1, "languagePackComboBox1");
- this.languagePackComboBox1.Name = "languagePackComboBox1";
- this.languagePackComboBox1.SelectedValueChanged += new System.EventHandler(this.languagePackComboBox1_SelectedValueChanged);
- //
// DS4Form
//
this.AllowDrop = true;
@@ -1548,6 +1556,7 @@
private System.Windows.Forms.ToolStripMenuItem discon2ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem discon3ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem discon4ToolStripMenuItem;
+ private System.Windows.Forms.CheckBox mintoTaskCheckBox;
//private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
}
}
diff --git a/DS4Windows/DS4Forms/DS4Form.cs b/DS4Windows/DS4Forms/DS4Form.cs
index f9418ee..3c46d6c 100644
--- a/DS4Windows/DS4Forms/DS4Form.cs
+++ b/DS4Windows/DS4Forms/DS4Form.cs
@@ -212,6 +212,10 @@ namespace DS4Windows
startMinimizedCheckBox.CheckedChanged -= startMinimizedCheckBox_CheckedChanged;
startMinimizedCheckBox.Checked = StartMinimized;
startMinimizedCheckBox.CheckedChanged += startMinimizedCheckBox_CheckedChanged;
+
+ mintoTaskCheckBox.Checked = Global.MinToTaskbar;
+ mintoTaskCheckBox.CheckedChanged += MintoTaskCheckBox_CheckedChanged;
+
cBCloseMini.Checked = CloseMini;
cBFlashWhenLate.Checked = FlashWhenLate;
@@ -872,14 +876,14 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question
protected void Form_Resize(object sender, EventArgs e)
{
- if (FormWindowState.Minimized == WindowState)
+ if (FormWindowState.Minimized == WindowState && !MinToTaskbar)
{
Hide();
ShowInTaskbar = false;
FormBorderStyle = FormBorderStyle.None;
}
- else if (FormWindowState.Normal == WindowState)
+ else if (FormWindowState.Normal == WindowState && !MinToTaskbar)
{
//mAllowVisible = true;
Show();
@@ -2507,6 +2511,12 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question
}
}
+ private void MintoTaskCheckBox_CheckedChanged(object sender, EventArgs e)
+ {
+ MinToTaskbar = mintoTaskCheckBox.Checked;
+ Save();
+ }
+
private void cBFlashWhenLate_CheckedChanged(object sender, EventArgs e)
{
FlashWhenLate = cBFlashWhenLate.Checked;
diff --git a/DS4Windows/DS4Forms/DS4Form.resx b/DS4Windows/DS4Forms/DS4Form.resx
index cac8dd5..b462c53 100644
--- a/DS4Windows/DS4Forms/DS4Form.resx
+++ b/DS4Windows/DS4Forms/DS4Form.resx
@@ -310,7 +310,7 @@
$this
- 2
+ 4
264, 17
@@ -445,10 +445,10 @@
NoControl
- 785, 89
+ 780, 89
- 108, 22
+ 113, 22
50
@@ -472,7 +472,7 @@
NoControl
- 375, 34
+ 371, 34
39, 20
@@ -574,7 +574,7 @@
NoControl
- 745, 89
+ 740, 89
34, 22
@@ -604,7 +604,7 @@
NoControl
- 745, 117
+ 740, 117
34, 22
@@ -703,7 +703,7 @@
None
- 628, 33
+ 623, 33
111, 21
@@ -730,7 +730,7 @@
NoControl
- 745, 61
+ 740, 61
34, 22
@@ -757,7 +757,7 @@
None
- 628, 61
+ 623, 61
111, 21
@@ -781,7 +781,7 @@
None
- 628, 89
+ 623, 89
111, 21
@@ -808,7 +808,7 @@
NoControl
- 745, 33
+ 740, 33
34, 22
@@ -835,7 +835,7 @@
None
- 628, 117
+ 623, 117
111, 21
@@ -868,7 +868,7 @@
NoControl
- 629, 7
+ 624, 7
109, 15
@@ -940,7 +940,7 @@
NoControl
- 371, 7
+ 367, 7
47, 15
@@ -976,7 +976,7 @@
NoControl
- 471, 7
+ 467, 7
51, 15
@@ -1012,7 +1012,7 @@
NoControl
- 477, 36
+ 473, 36
39, 15
@@ -1048,7 +1048,7 @@
NoControl
- 477, 64
+ 473, 64
39, 15
@@ -1084,7 +1084,7 @@
NoControl
- 477, 92
+ 473, 92
39, 15
@@ -1120,7 +1120,7 @@
NoControl
- 477, 120
+ 473, 120
39, 15
@@ -1150,7 +1150,7 @@
NoControl
- 375, 62
+ 371, 62
39, 20
@@ -1180,7 +1180,7 @@
NoControl
- 375, 90
+ 371, 90
39, 20
@@ -1210,7 +1210,7 @@
NoControl
- 375, 118
+ 371, 118
39, 20
@@ -1243,10 +1243,10 @@
NoControl
- 785, 33
+ 780, 33
- 108, 22
+ 113, 22
50
@@ -1273,10 +1273,10 @@
NoControl
- 785, 61
+ 780, 61
- 108, 22
+ 113, 22
51
@@ -1303,10 +1303,10 @@
NoControl
- 785, 117
+ 780, 117
- 108, 22
+ 113, 22
52
@@ -1336,7 +1336,7 @@
NoControl
- 551, 0
+ 546, 0
67, 30
@@ -1375,7 +1375,7 @@
NoControl
- 577, 37
+ 572, 37
15, 14
@@ -1408,7 +1408,7 @@
NoControl
- 577, 65
+ 572, 65
15, 14
@@ -1441,7 +1441,7 @@
NoControl
- 577, 93
+ 572, 93
15, 14
@@ -1474,7 +1474,7 @@
NoControl
- 577, 121
+ 572, 121
15, 14
@@ -1522,7 +1522,7 @@
0
- <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="bnLight3" Row="3" RowSpan="1" Column="6" ColumnSpan="1" /><Control Name="pBStatus1" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbPad1" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbPad2" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="bnEditC3" Row="3" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="bnEditC4" Row="4" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="lbPad3" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbPad4" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="cBController1" Row="1" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="bnEditC2" Row="2" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="cBController2" Row="2" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cBController3" Row="3" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="bnEditC1" Row="1" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="cBController4" Row="4" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="lbSelectedProfile" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="lbID" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbStatus" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbBattery" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt1" Row="1" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt2" Row="2" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt3" Row="3" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt4" Row="4" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="pBStatus2" Row="2" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="pBStatus3" Row="3" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="pBStatus4" Row="4" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="bnLight1" Row="1" RowSpan="1" Column="6" ColumnSpan="1" /><Control Name="bnLight2" Row="2" RowSpan="1" Column="6" ColumnSpan="1" /><Control Name="bnLight4" Row="4" RowSpan="1" Column="6" ColumnSpan="1" /><Control Name="lbLinkProfile" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="linkCB1" Row="1" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="linkCB2" Row="2" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="linkCB3" Row="3" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="linkCB4" Row="4" RowSpan="1" Column="3" ColumnSpan="1" /></Controls><Columns Styles="Percent,62.29144,Percent,20.02225,Percent,17.68632,Absolute,80,AutoSize,0,AutoSize,0,Absolute,112" /><Rows Styles="AutoSize,0,Percent,25,Percent,25,Percent,25,Percent,25" /></TableLayoutSettings>
+ <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="bnLight3" Row="3" RowSpan="1" Column="6" ColumnSpan="1" /><Control Name="pBStatus1" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbPad1" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbPad2" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="bnEditC3" Row="3" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="bnEditC4" Row="4" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="lbPad3" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbPad4" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="cBController1" Row="1" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="bnEditC2" Row="2" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="cBController2" Row="2" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cBController3" Row="3" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="bnEditC1" Row="1" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="cBController4" Row="4" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="lbSelectedProfile" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="lbID" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbStatus" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbBattery" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt1" Row="1" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt2" Row="2" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt3" Row="3" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt4" Row="4" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="pBStatus2" Row="2" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="pBStatus3" Row="3" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="pBStatus4" Row="4" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="bnLight1" Row="1" RowSpan="1" Column="6" ColumnSpan="1" /><Control Name="bnLight2" Row="2" RowSpan="1" Column="6" ColumnSpan="1" /><Control Name="bnLight4" Row="4" RowSpan="1" Column="6" ColumnSpan="1" /><Control Name="lbLinkProfile" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="linkCB1" Row="1" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="linkCB2" Row="2" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="linkCB3" Row="3" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="linkCB4" Row="4" RowSpan="1" Column="3" ColumnSpan="1" /></Controls><Columns Styles="Percent,62.29144,Percent,20.02225,Percent,17.68632,Absolute,80,AutoSize,0,AutoSize,0,Absolute,117" /><Rows Styles="AutoSize,0,Percent,25,Percent,25,Percent,25,Percent,25" /></TableLayoutSettings>
Fill
@@ -2160,39 +2160,6 @@
3
-
- True
-
-
- None
-
-
- NoControl
-
-
- 10, 165
-
-
- 97, 17
-
-
- 40
-
-
- Start Minimized
-
-
- startMinimizedCheckBox
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- fLPSettings
-
-
- 4
-
True
@@ -2257,7 +2224,7 @@
1
- 10, 188
+ 10, 165
213, 22
@@ -2275,7 +2242,7 @@
fLPSettings
- 5
+ 4
True
@@ -2287,7 +2254,7 @@
NoControl
- 10, 216
+ 10, 193
194, 17
@@ -2308,7 +2275,7 @@
fLPSettings
- 6
+ 5
Top, Right
@@ -2401,7 +2368,7 @@
2
- 10, 239
+ 10, 216
258, 22
@@ -2419,8 +2386,74 @@
fLPSettings
+ 6
+
+
+ True
+
+
+ None
+
+
+ NoControl
+
+
+ 10, 244
+
+
+ 97, 17
+
+
+ 40
+
+
+ Start Minimized
+
+
+ startMinimizedCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPSettings
+
+
7
+
+ True
+
+
+ None
+
+
+ NoControl
+
+
+ 10, 267
+
+
+ 120, 17
+
+
+ 61
+
+
+ Minimize to Taskbar
+
+
+ mintoTaskCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPSettings
+
+
+ 8
+
True
@@ -2431,7 +2464,7 @@
NoControl
- 10, 267
+ 10, 290
100, 17
@@ -2452,7 +2485,7 @@
fLPSettings
- 8
+ 9
True
@@ -2464,7 +2497,7 @@
NoControl
- 10, 290
+ 10, 313
91, 17
@@ -2485,7 +2518,7 @@
fLPSettings
- 9
+ 10
True
@@ -2497,7 +2530,7 @@
NoControl
- 9, 312
+ 273, 9
2, 2, 2, 2
@@ -2521,7 +2554,7 @@
fLPSettings
- 10
+ 11
True
@@ -2533,7 +2566,7 @@
NoControl
- 274, 10
+ 274, 31
164, 17
@@ -2554,7 +2587,7 @@
fLPSettings
- 11
+ 12
Top, Right
@@ -2647,7 +2680,7 @@
False
- 274, 33
+ 274, 54
189, 22
@@ -2665,7 +2698,7 @@
fLPSettings
- 12
+ 13
Left
@@ -2758,7 +2791,7 @@
2
- 274, 61
+ 274, 82
186, 22
@@ -2776,7 +2809,7 @@
fLPSettings
- 13
+ 14
True
@@ -2788,7 +2821,7 @@
Use language pack
- 274, 89
+ 274, 110
260, 27
@@ -2806,7 +2839,7 @@
fLPSettings
- 14
+ 15
True
@@ -3091,7 +3124,7 @@
TopDown
- 274, 122
+ 274, 143
4, 4, 4, 4
@@ -3112,7 +3145,7 @@
fLPSettings
- 15
+ 16
Fill
@@ -3301,7 +3334,7 @@
$this
- 1
+ 3
711, 17
@@ -3351,9 +3384,6 @@
904, 415
-
- NoControl
-
630, 229