diff --git a/DS4Windows/DS4Control/Mapping.cs b/DS4Windows/DS4Control/Mapping.cs
index 98c2889046..0e86a3e317 100644
--- a/DS4Windows/DS4Control/Mapping.cs
+++ b/DS4Windows/DS4Control/Mapping.cs
@@ -965,8 +965,8 @@ public static void MapCustom(int device, DS4State cState, DS4State MappedState,
if (Math.Abs(127 - getXYAxisMapping(device, dc, cState, eState, tp)) > 5)
MappedState.LX = getXYAxisMapping(device, dc, cState, eState, tp);
}
- else
- MappedState.LX = cState.LX;
+ //else
+ //MappedState.LX = cState.LX;
if (Math.Abs(MappedState.LY - 127) < 10)
if (LYN.Count > 0 || LYP.Count > 0)
{
@@ -977,8 +977,8 @@ public static void MapCustom(int device, DS4State cState, DS4State MappedState,
if (Math.Abs(127 - getXYAxisMapping(device, dc, cState, eState, tp, true)) > 5)
MappedState.LY = getXYAxisMapping(device, dc, cState, eState, tp, true);
}
- else
- MappedState.LY = cState.LY;
+ //else
+ //MappedState.LY = cState.LY;
if (Math.Abs(MappedState.RX - 127) < 10)
if (RXN.Count > 0 || RXP.Count > 0)
{
@@ -989,8 +989,8 @@ public static void MapCustom(int device, DS4State cState, DS4State MappedState,
if (Math.Abs(127 - getXYAxisMapping(device, dc, cState, eState, tp, true)) > 5)
MappedState.RX = getXYAxisMapping(device, dc, cState, eState, tp, true);
}
- else
- MappedState.RX = cState.RX;
+ //else
+ // MappedState.RX = cState.RX;
if (Math.Abs(MappedState.RY - 127) < 10)
if (RYN.Count > 0 || RYP.Count > 0)
{
@@ -1001,14 +1001,14 @@ public static void MapCustom(int device, DS4State cState, DS4State MappedState,
if (Math.Abs(127 - getXYAxisMapping(device, dc, cState, eState, tp, true)) > 5)
MappedState.RY = getXYAxisMapping(device, dc, cState, eState, tp, true);
}
- else
- MappedState.RY = cState.RY;
+ // else
+ // MappedState.RY = cState.RY;
InputMethods.MoveCursorBy(MouseDeltaX, MouseDeltaY);
}
private static bool IfAxisIsNotModified(int device, bool shift, DS4Controls dc)
{
- return shift ? GetDS4Action(device, DS4Controls.LXNeg.ToString(), true) == null : GetDS4Action(device, DS4Controls.LXNeg.ToString(), false) == null;
+ return shift ? false : GetDS4Action(device, dc.ToString(), false) == null;
}
public static async void MapCustomAction(int device, DS4State cState, DS4State MappedState, DS4StateExposed eState, Mouse tp, ControlService ctrl)
{
diff --git a/DS4Windows/DS4Forms/DS4Form.Designer.cs b/DS4Windows/DS4Forms/DS4Form.Designer.cs
index 057f784996..65f30e628e 100644
--- a/DS4Windows/DS4Forms/DS4Form.Designer.cs
+++ b/DS4Windows/DS4Forms/DS4Form.Designer.cs
@@ -181,13 +181,12 @@ private void InitializeComponent()
//
// lvDebug
//
- resources.ApplyResources(this.lvDebug, "lvDebug");
this.lvDebug.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.chTime,
this.chData});
+ resources.ApplyResources(this.lvDebug, "lvDebug");
this.lvDebug.FullRowSelect = true;
this.lvDebug.Name = "lvDebug";
- this.toolTip1.SetToolTip(this.lvDebug, resources.GetString("lvDebug.ToolTip"));
this.lvDebug.UseCompatibleStateImageBehavior = false;
this.lvDebug.View = System.Windows.Forms.View.Details;
this.lvDebug.ItemActivate += new System.EventHandler(this.lvDebug_ItemActivate);
@@ -207,27 +206,24 @@ private void InitializeComponent()
//
// pnlButton
//
- resources.ApplyResources(this.pnlButton, "pnlButton");
this.pnlButton.BackColor = System.Drawing.SystemColors.Control;
this.pnlButton.Controls.Add(this.lbTest);
this.pnlButton.Controls.Add(this.btnStartStop);
this.pnlButton.Controls.Add(this.lbLastMessage);
this.pnlButton.Controls.Add(this.llbHelp);
+ resources.ApplyResources(this.pnlButton, "pnlButton");
this.pnlButton.Name = "pnlButton";
- this.toolTip1.SetToolTip(this.pnlButton, resources.GetString("pnlButton.ToolTip"));
this.pnlButton.MouseLeave += new System.EventHandler(this.pnlButton_MouseLeave);
//
// lbTest
//
resources.ApplyResources(this.lbTest, "lbTest");
this.lbTest.Name = "lbTest";
- this.toolTip1.SetToolTip(this.lbTest, resources.GetString("lbTest.ToolTip"));
//
// btnStartStop
//
resources.ApplyResources(this.btnStartStop, "btnStartStop");
this.btnStartStop.Name = "btnStartStop";
- this.toolTip1.SetToolTip(this.btnStartStop, resources.GetString("btnStartStop.ToolTip"));
this.btnStartStop.UseVisualStyleBackColor = true;
this.btnStartStop.Click += new System.EventHandler(this.btnStartStop_Click);
//
@@ -236,7 +232,6 @@ private void InitializeComponent()
resources.ApplyResources(this.lbLastMessage, "lbLastMessage");
this.lbLastMessage.ForeColor = System.Drawing.SystemColors.GrayText;
this.lbLastMessage.Name = "lbLastMessage";
- this.toolTip1.SetToolTip(this.lbLastMessage, resources.GetString("lbLastMessage.ToolTip"));
this.lbLastMessage.MouseHover += new System.EventHandler(this.lbLastMessage_MouseHover);
//
// llbHelp
@@ -244,14 +239,12 @@ private void InitializeComponent()
resources.ApplyResources(this.llbHelp, "llbHelp");
this.llbHelp.Name = "llbHelp";
this.llbHelp.TabStop = true;
- this.toolTip1.SetToolTip(this.llbHelp, resources.GetString("llbHelp.ToolTip"));
this.llbHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbHelp_LinkClicked);
//
// btnClear
//
resources.ApplyResources(this.btnClear, "btnClear");
this.btnClear.Name = "btnClear";
- this.toolTip1.SetToolTip(this.btnClear, resources.GetString("btnClear.ToolTip"));
this.btnClear.UseVisualStyleBackColor = true;
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
//
@@ -266,7 +259,6 @@ private void InitializeComponent()
//
// cMTaskbar
//
- resources.ApplyResources(this.cMTaskbar, "cMTaskbar");
this.cMTaskbar.ImageScalingSize = new System.Drawing.Size(24, 24);
this.cMTaskbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.editProfileForController1ToolStripMenuItem,
@@ -278,46 +270,46 @@ private void InitializeComponent()
this.openToolStripMenuItem,
this.exitToolStripMenuItem});
this.cMTaskbar.Name = "cMTaskbar";
+ resources.ApplyResources(this.cMTaskbar, "cMTaskbar");
this.cMTaskbar.Tag = "25";
- this.toolTip1.SetToolTip(this.cMTaskbar, resources.GetString("cMTaskbar.ToolTip"));
//
// editProfileForController1ToolStripMenuItem
//
- resources.ApplyResources(this.editProfileForController1ToolStripMenuItem, "editProfileForController1ToolStripMenuItem");
this.editProfileForController1ToolStripMenuItem.Name = "editProfileForController1ToolStripMenuItem";
+ resources.ApplyResources(this.editProfileForController1ToolStripMenuItem, "editProfileForController1ToolStripMenuItem");
this.editProfileForController1ToolStripMenuItem.Tag = "0";
this.editProfileForController1ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
//
// editProfileForController2ToolStripMenuItem
//
- resources.ApplyResources(this.editProfileForController2ToolStripMenuItem, "editProfileForController2ToolStripMenuItem");
this.editProfileForController2ToolStripMenuItem.Name = "editProfileForController2ToolStripMenuItem";
+ resources.ApplyResources(this.editProfileForController2ToolStripMenuItem, "editProfileForController2ToolStripMenuItem");
this.editProfileForController2ToolStripMenuItem.Tag = "1";
this.editProfileForController2ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
//
// editProfileForController3ToolStripMenuItem
//
- resources.ApplyResources(this.editProfileForController3ToolStripMenuItem, "editProfileForController3ToolStripMenuItem");
this.editProfileForController3ToolStripMenuItem.Name = "editProfileForController3ToolStripMenuItem";
+ resources.ApplyResources(this.editProfileForController3ToolStripMenuItem, "editProfileForController3ToolStripMenuItem");
this.editProfileForController3ToolStripMenuItem.Tag = "2";
this.editProfileForController3ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
//
// editProfileForController4ToolStripMenuItem
//
- resources.ApplyResources(this.editProfileForController4ToolStripMenuItem, "editProfileForController4ToolStripMenuItem");
this.editProfileForController4ToolStripMenuItem.Name = "editProfileForController4ToolStripMenuItem";
+ resources.ApplyResources(this.editProfileForController4ToolStripMenuItem, "editProfileForController4ToolStripMenuItem");
this.editProfileForController4ToolStripMenuItem.Tag = "4";
this.editProfileForController4ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
//
// toolStripSeparator1
//
- resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
this.toolStripSeparator1.Name = "toolStripSeparator1";
+ resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
//
// startToolStripMenuItem
//
- resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem");
this.startToolStripMenuItem.Name = "startToolStripMenuItem";
+ resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem");
this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click);
//
// openToolStripMenuItem
@@ -328,14 +320,14 @@ private void InitializeComponent()
//
// exitToolStripMenuItem
//
- resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
+ resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// toolStripSeparator2
//
- resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
this.toolStripSeparator2.Name = "toolStripSeparator2";
+ resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
//
// openProfiles
//
@@ -344,32 +336,29 @@ private void InitializeComponent()
//
// tabMain
//
- resources.ApplyResources(this.tabMain, "tabMain");
this.tabMain.Controls.Add(this.tabControllers);
this.tabMain.Controls.Add(this.tabProfiles);
this.tabMain.Controls.Add(this.tabAutoProfiles);
this.tabMain.Controls.Add(this.tabSettings);
this.tabMain.Controls.Add(this.tabLog);
+ resources.ApplyResources(this.tabMain, "tabMain");
this.tabMain.Name = "tabMain";
this.tabMain.SelectedIndex = 0;
- this.toolTip1.SetToolTip(this.tabMain, resources.GetString("tabMain.ToolTip"));
this.tabMain.SelectedIndexChanged += new System.EventHandler(this.tabMain_SelectedIndexChanged);
//
// tabControllers
//
- resources.ApplyResources(this.tabControllers, "tabControllers");
this.tabControllers.Controls.Add(this.btnConnectDS4Win10);
this.tabControllers.Controls.Add(this.tLPControllers);
this.tabControllers.Controls.Add(this.lbNoControllers);
+ resources.ApplyResources(this.tabControllers, "tabControllers");
this.tabControllers.Name = "tabControllers";
- this.toolTip1.SetToolTip(this.tabControllers, resources.GetString("tabControllers.ToolTip"));
this.tabControllers.UseVisualStyleBackColor = true;
//
// btnConnectDS4Win10
//
resources.ApplyResources(this.btnConnectDS4Win10, "btnConnectDS4Win10");
this.btnConnectDS4Win10.Name = "btnConnectDS4Win10";
- this.toolTip1.SetToolTip(this.btnConnectDS4Win10, resources.GetString("btnConnectDS4Win10.ToolTip"));
this.btnConnectDS4Win10.UseVisualStyleBackColor = true;
this.btnConnectDS4Win10.Click += new System.EventHandler(this.btnConnectDS4Win10_Click);
//
@@ -405,15 +394,13 @@ private void InitializeComponent()
this.tLPControllers.Controls.Add(this.bnLight2, 5, 2);
this.tLPControllers.Controls.Add(this.bnLight4, 5, 4);
this.tLPControllers.Name = "tLPControllers";
- this.toolTip1.SetToolTip(this.tLPControllers, resources.GetString("tLPControllers.ToolTip"));
//
// bnLight3
//
- resources.ApplyResources(this.bnLight3, "bnLight3");
this.bnLight3.BackColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.bnLight3, "bnLight3");
this.bnLight3.Name = "bnLight3";
this.bnLight3.Tag = "2";
- this.toolTip1.SetToolTip(this.bnLight3, resources.GetString("bnLight3.ToolTip"));
this.bnLight3.UseVisualStyleBackColor = false;
this.bnLight3.Click += new System.EventHandler(this.EditCustomLed);
//
@@ -425,7 +412,6 @@ private void InitializeComponent()
this.pBStatus1.Name = "pBStatus1";
this.pBStatus1.TabStop = false;
this.pBStatus1.Tag = "0";
- this.toolTip1.SetToolTip(this.pBStatus1, resources.GetString("pBStatus1.ToolTip"));
this.pBStatus1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
//
// lbPad1
@@ -433,7 +419,6 @@ private void InitializeComponent()
resources.ApplyResources(this.lbPad1, "lbPad1");
this.lbPad1.Name = "lbPad1";
this.lbPad1.Tag = "0";
- this.toolTip1.SetToolTip(this.lbPad1, resources.GetString("lbPad1.ToolTip"));
this.lbPad1.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad1.MouseHover += new System.EventHandler(this.Pads_MouseHover);
//
@@ -442,7 +427,6 @@ private void InitializeComponent()
resources.ApplyResources(this.lbPad2, "lbPad2");
this.lbPad2.Name = "lbPad2";
this.lbPad2.Tag = "1";
- this.toolTip1.SetToolTip(this.lbPad2, resources.GetString("lbPad2.ToolTip"));
this.lbPad2.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad2.MouseHover += new System.EventHandler(this.Pads_MouseHover);
//
@@ -451,7 +435,6 @@ private void InitializeComponent()
resources.ApplyResources(this.bnEditC3, "bnEditC3");
this.bnEditC3.Name = "bnEditC3";
this.bnEditC3.Tag = "2";
- this.toolTip1.SetToolTip(this.bnEditC3, resources.GetString("bnEditC3.ToolTip"));
this.bnEditC3.UseVisualStyleBackColor = true;
this.bnEditC3.Click += new System.EventHandler(this.editButtons_Click);
//
@@ -460,7 +443,6 @@ private void InitializeComponent()
resources.ApplyResources(this.bnEditC4, "bnEditC4");
this.bnEditC4.Name = "bnEditC4";
this.bnEditC4.Tag = "3";
- this.toolTip1.SetToolTip(this.bnEditC4, resources.GetString("bnEditC4.ToolTip"));
this.bnEditC4.UseVisualStyleBackColor = true;
this.bnEditC4.Click += new System.EventHandler(this.editButtons_Click);
//
@@ -469,7 +451,6 @@ private void InitializeComponent()
resources.ApplyResources(this.lbPad3, "lbPad3");
this.lbPad3.Name = "lbPad3";
this.lbPad3.Tag = "2";
- this.toolTip1.SetToolTip(this.lbPad3, resources.GetString("lbPad3.ToolTip"));
this.lbPad3.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad3.MouseHover += new System.EventHandler(this.Pads_MouseHover);
//
@@ -478,7 +459,6 @@ private void InitializeComponent()
resources.ApplyResources(this.lbPad4, "lbPad4");
this.lbPad4.Name = "lbPad4";
this.lbPad4.Tag = "3";
- this.toolTip1.SetToolTip(this.lbPad4, resources.GetString("lbPad4.ToolTip"));
this.lbPad4.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad4.MouseHover += new System.EventHandler(this.Pads_MouseHover);
//
@@ -489,7 +469,6 @@ private void InitializeComponent()
this.cBController1.FormattingEnabled = true;
this.cBController1.Name = "cBController1";
this.cBController1.Tag = "0";
- this.toolTip1.SetToolTip(this.cBController1, resources.GetString("cBController1.ToolTip"));
this.cBController1.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
//
// bnEditC2
@@ -497,7 +476,6 @@ private void InitializeComponent()
resources.ApplyResources(this.bnEditC2, "bnEditC2");
this.bnEditC2.Name = "bnEditC2";
this.bnEditC2.Tag = "1";
- this.toolTip1.SetToolTip(this.bnEditC2, resources.GetString("bnEditC2.ToolTip"));
this.bnEditC2.UseVisualStyleBackColor = true;
this.bnEditC2.Click += new System.EventHandler(this.editButtons_Click);
//
@@ -508,7 +486,6 @@ private void InitializeComponent()
this.cBController2.FormattingEnabled = true;
this.cBController2.Name = "cBController2";
this.cBController2.Tag = "1";
- this.toolTip1.SetToolTip(this.cBController2, resources.GetString("cBController2.ToolTip"));
this.cBController2.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
//
// cBController3
@@ -518,7 +495,6 @@ private void InitializeComponent()
this.cBController3.FormattingEnabled = true;
this.cBController3.Name = "cBController3";
this.cBController3.Tag = "2";
- this.toolTip1.SetToolTip(this.cBController3, resources.GetString("cBController3.ToolTip"));
this.cBController3.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
//
// bnEditC1
@@ -526,7 +502,6 @@ private void InitializeComponent()
resources.ApplyResources(this.bnEditC1, "bnEditC1");
this.bnEditC1.Name = "bnEditC1";
this.bnEditC1.Tag = "0";
- this.toolTip1.SetToolTip(this.bnEditC1, resources.GetString("bnEditC1.ToolTip"));
this.bnEditC1.UseVisualStyleBackColor = true;
this.bnEditC1.Click += new System.EventHandler(this.editButtons_Click);
//
@@ -537,56 +512,47 @@ private void InitializeComponent()
this.cBController4.FormattingEnabled = true;
this.cBController4.Name = "cBController4";
this.cBController4.Tag = "3";
- this.toolTip1.SetToolTip(this.cBController4, resources.GetString("cBController4.ToolTip"));
this.cBController4.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
//
// lbSelectedProfile
//
resources.ApplyResources(this.lbSelectedProfile, "lbSelectedProfile");
this.lbSelectedProfile.Name = "lbSelectedProfile";
- this.toolTip1.SetToolTip(this.lbSelectedProfile, resources.GetString("lbSelectedProfile.ToolTip"));
//
// lbID
//
resources.ApplyResources(this.lbID, "lbID");
this.lbID.Name = "lbID";
- this.toolTip1.SetToolTip(this.lbID, resources.GetString("lbID.ToolTip"));
//
// lbStatus
//
resources.ApplyResources(this.lbStatus, "lbStatus");
this.lbStatus.Name = "lbStatus";
- this.toolTip1.SetToolTip(this.lbStatus, resources.GetString("lbStatus.ToolTip"));
//
// lbBattery
//
resources.ApplyResources(this.lbBattery, "lbBattery");
this.lbBattery.Name = "lbBattery";
- this.toolTip1.SetToolTip(this.lbBattery, resources.GetString("lbBattery.ToolTip"));
//
// lbBatt1
//
resources.ApplyResources(this.lbBatt1, "lbBatt1");
this.lbBatt1.Name = "lbBatt1";
- this.toolTip1.SetToolTip(this.lbBatt1, resources.GetString("lbBatt1.ToolTip"));
//
// lbBatt2
//
resources.ApplyResources(this.lbBatt2, "lbBatt2");
this.lbBatt2.Name = "lbBatt2";
- this.toolTip1.SetToolTip(this.lbBatt2, resources.GetString("lbBatt2.ToolTip"));
//
// lbBatt3
//
resources.ApplyResources(this.lbBatt3, "lbBatt3");
this.lbBatt3.Name = "lbBatt3";
- this.toolTip1.SetToolTip(this.lbBatt3, resources.GetString("lbBatt3.ToolTip"));
//
// lbBatt4
//
resources.ApplyResources(this.lbBatt4, "lbBatt4");
this.lbBatt4.Name = "lbBatt4";
- this.toolTip1.SetToolTip(this.lbBatt4, resources.GetString("lbBatt4.ToolTip"));
//
// pBStatus2
//
@@ -596,7 +562,6 @@ private void InitializeComponent()
this.pBStatus2.Name = "pBStatus2";
this.pBStatus2.TabStop = false;
this.pBStatus2.Tag = "1";
- this.toolTip1.SetToolTip(this.pBStatus2, resources.GetString("pBStatus2.ToolTip"));
this.pBStatus2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
//
// pBStatus3
@@ -607,7 +572,6 @@ private void InitializeComponent()
this.pBStatus3.Name = "pBStatus3";
this.pBStatus3.TabStop = false;
this.pBStatus3.Tag = "2";
- this.toolTip1.SetToolTip(this.pBStatus3, resources.GetString("pBStatus3.ToolTip"));
this.pBStatus3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
//
// pBStatus4
@@ -618,36 +582,32 @@ private void InitializeComponent()
this.pBStatus4.Name = "pBStatus4";
this.pBStatus4.TabStop = false;
this.pBStatus4.Tag = "3";
- this.toolTip1.SetToolTip(this.pBStatus4, resources.GetString("pBStatus4.ToolTip"));
this.pBStatus4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
//
// bnLight1
//
- resources.ApplyResources(this.bnLight1, "bnLight1");
this.bnLight1.BackColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.bnLight1, "bnLight1");
this.bnLight1.Name = "bnLight1";
this.bnLight1.Tag = "0";
- this.toolTip1.SetToolTip(this.bnLight1, resources.GetString("bnLight1.ToolTip"));
this.bnLight1.UseVisualStyleBackColor = false;
this.bnLight1.Click += new System.EventHandler(this.EditCustomLed);
//
// bnLight2
//
- resources.ApplyResources(this.bnLight2, "bnLight2");
this.bnLight2.BackColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.bnLight2, "bnLight2");
this.bnLight2.Name = "bnLight2";
this.bnLight2.Tag = "1";
- this.toolTip1.SetToolTip(this.bnLight2, resources.GetString("bnLight2.ToolTip"));
this.bnLight2.UseVisualStyleBackColor = false;
this.bnLight2.Click += new System.EventHandler(this.EditCustomLed);
//
// bnLight4
//
- resources.ApplyResources(this.bnLight4, "bnLight4");
this.bnLight4.BackColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.bnLight4, "bnLight4");
this.bnLight4.Name = "bnLight4";
this.bnLight4.Tag = "3";
- this.toolTip1.SetToolTip(this.bnLight4, resources.GetString("bnLight4.ToolTip"));
this.bnLight4.UseVisualStyleBackColor = false;
this.bnLight4.Click += new System.EventHandler(this.EditCustomLed);
//
@@ -655,34 +615,30 @@ private void InitializeComponent()
//
resources.ApplyResources(this.lbNoControllers, "lbNoControllers");
this.lbNoControllers.Name = "lbNoControllers";
- this.toolTip1.SetToolTip(this.lbNoControllers, resources.GetString("lbNoControllers.ToolTip"));
//
// tabProfiles
//
- resources.ApplyResources(this.tabProfiles, "tabProfiles");
this.tabProfiles.Controls.Add(this.lBProfiles);
this.tabProfiles.Controls.Add(this.tSOptions);
this.tabProfiles.Controls.Add(this.toolStrip1);
+ resources.ApplyResources(this.tabProfiles, "tabProfiles");
this.tabProfiles.Name = "tabProfiles";
- this.toolTip1.SetToolTip(this.tabProfiles, resources.GetString("tabProfiles.ToolTip"));
this.tabProfiles.UseVisualStyleBackColor = true;
//
// lBProfiles
//
- resources.ApplyResources(this.lBProfiles, "lBProfiles");
this.lBProfiles.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.lBProfiles.ContextMenuStrip = this.cMProfile;
+ resources.ApplyResources(this.lBProfiles, "lBProfiles");
this.lBProfiles.FormattingEnabled = true;
this.lBProfiles.MultiColumn = true;
this.lBProfiles.Name = "lBProfiles";
- this.toolTip1.SetToolTip(this.lBProfiles, resources.GetString("lBProfiles.ToolTip"));
this.lBProfiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lBProfiles_KeyDown);
this.lBProfiles.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDoubleClick);
this.lBProfiles.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDown);
//
// cMProfile
//
- resources.ApplyResources(this.cMProfile, "cMProfile");
this.cMProfile.ImageScalingSize = new System.Drawing.Size(24, 24);
this.cMProfile.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.editToolStripMenuItem,
@@ -696,7 +652,7 @@ private void InitializeComponent()
this.importToolStripMenuItem,
this.exportToolStripMenuItem});
this.cMProfile.Name = "cMProfile";
- this.toolTip1.SetToolTip(this.cMProfile, resources.GetString("cMProfile.ToolTip"));
+ resources.ApplyResources(this.cMProfile, "cMProfile");
//
// editToolStripMenuItem
//
@@ -706,61 +662,60 @@ private void InitializeComponent()
//
// assignToController1ToolStripMenuItem
//
- resources.ApplyResources(this.assignToController1ToolStripMenuItem, "assignToController1ToolStripMenuItem");
this.assignToController1ToolStripMenuItem.Name = "assignToController1ToolStripMenuItem";
+ resources.ApplyResources(this.assignToController1ToolStripMenuItem, "assignToController1ToolStripMenuItem");
this.assignToController1ToolStripMenuItem.Click += new System.EventHandler(this.assignToController1ToolStripMenuItem_Click);
//
// assignToController2ToolStripMenuItem
//
- resources.ApplyResources(this.assignToController2ToolStripMenuItem, "assignToController2ToolStripMenuItem");
this.assignToController2ToolStripMenuItem.Name = "assignToController2ToolStripMenuItem";
+ resources.ApplyResources(this.assignToController2ToolStripMenuItem, "assignToController2ToolStripMenuItem");
this.assignToController2ToolStripMenuItem.Click += new System.EventHandler(this.assignToController2ToolStripMenuItem_Click);
//
// assignToController3ToolStripMenuItem
//
- resources.ApplyResources(this.assignToController3ToolStripMenuItem, "assignToController3ToolStripMenuItem");
this.assignToController3ToolStripMenuItem.Name = "assignToController3ToolStripMenuItem";
+ resources.ApplyResources(this.assignToController3ToolStripMenuItem, "assignToController3ToolStripMenuItem");
this.assignToController3ToolStripMenuItem.Click += new System.EventHandler(this.assignToController3ToolStripMenuItem_Click);
//
// assignToController4ToolStripMenuItem
//
- resources.ApplyResources(this.assignToController4ToolStripMenuItem, "assignToController4ToolStripMenuItem");
this.assignToController4ToolStripMenuItem.Name = "assignToController4ToolStripMenuItem";
+ resources.ApplyResources(this.assignToController4ToolStripMenuItem, "assignToController4ToolStripMenuItem");
this.assignToController4ToolStripMenuItem.Click += new System.EventHandler(this.assignToController4ToolStripMenuItem_Click);
//
// deleteToolStripMenuItem
//
- resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
+ resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.tsBDeleteProfle_Click);
//
// duplicateToolStripMenuItem
//
- resources.ApplyResources(this.duplicateToolStripMenuItem, "duplicateToolStripMenuItem");
this.duplicateToolStripMenuItem.Name = "duplicateToolStripMenuItem";
+ resources.ApplyResources(this.duplicateToolStripMenuItem, "duplicateToolStripMenuItem");
this.duplicateToolStripMenuItem.Click += new System.EventHandler(this.tSBDupProfile_Click);
//
// newProfileToolStripMenuItem
//
- resources.ApplyResources(this.newProfileToolStripMenuItem, "newProfileToolStripMenuItem");
this.newProfileToolStripMenuItem.Name = "newProfileToolStripMenuItem";
+ resources.ApplyResources(this.newProfileToolStripMenuItem, "newProfileToolStripMenuItem");
this.newProfileToolStripMenuItem.Click += new System.EventHandler(this.tsBNewProfile_Click);
//
// importToolStripMenuItem
//
- resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem");
this.importToolStripMenuItem.Name = "importToolStripMenuItem";
+ resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem");
this.importToolStripMenuItem.Click += new System.EventHandler(this.tSBImportProfile_Click);
//
// exportToolStripMenuItem
//
- resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem");
this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
+ resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem");
this.exportToolStripMenuItem.Click += new System.EventHandler(this.tSBExportProfile_Click);
//
// tSOptions
//
- resources.ApplyResources(this.tSOptions, "tSOptions");
this.tSOptions.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.tSOptions.ImageScalingSize = new System.Drawing.Size(20, 20);
this.tSOptions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
@@ -770,55 +725,54 @@ private void InitializeComponent()
this.tSBCancel,
this.toolStripSeparator3,
this.tSBKeepSize});
+ resources.ApplyResources(this.tSOptions, "tSOptions");
this.tSOptions.Name = "tSOptions";
this.tSOptions.ShowItemToolTips = false;
- this.toolTip1.SetToolTip(this.tSOptions, resources.GetString("tSOptions.ToolTip"));
//
// toolStripLabel1
//
- resources.ApplyResources(this.toolStripLabel1, "toolStripLabel1");
this.toolStripLabel1.Name = "toolStripLabel1";
+ resources.ApplyResources(this.toolStripLabel1, "toolStripLabel1");
//
// tSTBProfile
//
- resources.ApplyResources(this.tSTBProfile, "tSTBProfile");
this.tSTBProfile.ForeColor = System.Drawing.SystemColors.GrayText;
this.tSTBProfile.Name = "tSTBProfile";
+ resources.ApplyResources(this.tSTBProfile, "tSTBProfile");
this.tSTBProfile.Enter += new System.EventHandler(this.tBProfile_Enter);
this.tSTBProfile.Leave += new System.EventHandler(this.tBProfile_Leave);
this.tSTBProfile.TextChanged += new System.EventHandler(this.tBProfile_TextChanged);
//
// tSBSaveProfile
//
- resources.ApplyResources(this.tSBSaveProfile, "tSBSaveProfile");
this.tSBSaveProfile.AutoToolTip = false;
this.tSBSaveProfile.Image = global::DS4Windows.Properties.Resources.saveprofile;
+ resources.ApplyResources(this.tSBSaveProfile, "tSBSaveProfile");
this.tSBSaveProfile.Name = "tSBSaveProfile";
this.tSBSaveProfile.Click += new System.EventHandler(this.tSBSaveProfile_Click);
//
// tSBCancel
//
- resources.ApplyResources(this.tSBCancel, "tSBCancel");
this.tSBCancel.AutoToolTip = false;
this.tSBCancel.Image = global::DS4Windows.Properties.Resources.delete;
+ resources.ApplyResources(this.tSBCancel, "tSBCancel");
this.tSBCancel.Name = "tSBCancel";
this.tSBCancel.Click += new System.EventHandler(this.tSBCancel_Click);
//
// toolStripSeparator3
//
- resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
this.toolStripSeparator3.Name = "toolStripSeparator3";
+ resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
//
// tSBKeepSize
//
- resources.ApplyResources(this.tSBKeepSize, "tSBKeepSize");
this.tSBKeepSize.Image = global::DS4Windows.Properties.Resources.size;
+ resources.ApplyResources(this.tSBKeepSize, "tSBKeepSize");
this.tSBKeepSize.Name = "tSBKeepSize";
this.tSBKeepSize.Click += new System.EventHandler(this.tSBKeepSize_Click);
//
// toolStrip1
//
- resources.ApplyResources(this.toolStrip1, "toolStrip1");
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
@@ -828,48 +782,48 @@ private void InitializeComponent()
this.tSBDupProfile,
this.tSBImportProfile,
this.tSBExportProfile});
+ resources.ApplyResources(this.toolStrip1, "toolStrip1");
this.toolStrip1.Name = "toolStrip1";
- this.toolTip1.SetToolTip(this.toolStrip1, resources.GetString("toolStrip1.ToolTip"));
//
// tsBNewProfle
//
- resources.ApplyResources(this.tsBNewProfle, "tsBNewProfle");
this.tsBNewProfle.Image = global::DS4Windows.Properties.Resources.newprofile;
+ resources.ApplyResources(this.tsBNewProfle, "tsBNewProfle");
this.tsBNewProfle.Name = "tsBNewProfle";
this.tsBNewProfle.Click += new System.EventHandler(this.tsBNewProfile_Click);
//
// tsBEditProfile
//
- resources.ApplyResources(this.tsBEditProfile, "tsBEditProfile");
this.tsBEditProfile.Image = global::DS4Windows.Properties.Resources.edit;
+ resources.ApplyResources(this.tsBEditProfile, "tsBEditProfile");
this.tsBEditProfile.Name = "tsBEditProfile";
this.tsBEditProfile.Click += new System.EventHandler(this.tsBNEditProfile_Click);
//
// tsBDeleteProfile
//
- resources.ApplyResources(this.tsBDeleteProfile, "tsBDeleteProfile");
this.tsBDeleteProfile.Image = global::DS4Windows.Properties.Resources.delete;
+ resources.ApplyResources(this.tsBDeleteProfile, "tsBDeleteProfile");
this.tsBDeleteProfile.Name = "tsBDeleteProfile";
this.tsBDeleteProfile.Click += new System.EventHandler(this.tsBDeleteProfle_Click);
//
// tSBDupProfile
//
- resources.ApplyResources(this.tSBDupProfile, "tSBDupProfile");
this.tSBDupProfile.Image = global::DS4Windows.Properties.Resources.copy;
+ resources.ApplyResources(this.tSBDupProfile, "tSBDupProfile");
this.tSBDupProfile.Name = "tSBDupProfile";
this.tSBDupProfile.Click += new System.EventHandler(this.tSBDupProfile_Click);
//
// tSBImportProfile
//
- resources.ApplyResources(this.tSBImportProfile, "tSBImportProfile");
this.tSBImportProfile.Image = global::DS4Windows.Properties.Resources.import;
+ resources.ApplyResources(this.tSBImportProfile, "tSBImportProfile");
this.tSBImportProfile.Name = "tSBImportProfile";
this.tSBImportProfile.Click += new System.EventHandler(this.tSBImportProfile_Click);
//
// tSBExportProfile
//
- resources.ApplyResources(this.tSBExportProfile, "tSBExportProfile");
this.tSBExportProfile.Image = global::DS4Windows.Properties.Resources.export;
+ resources.ApplyResources(this.tSBExportProfile, "tSBExportProfile");
this.tSBExportProfile.Name = "tSBExportProfile";
this.tSBExportProfile.Click += new System.EventHandler(this.tSBExportProfile_Click);
//
@@ -877,15 +831,13 @@ private void InitializeComponent()
//
resources.ApplyResources(this.tabAutoProfiles, "tabAutoProfiles");
this.tabAutoProfiles.Name = "tabAutoProfiles";
- this.toolTip1.SetToolTip(this.tabAutoProfiles, resources.GetString("tabAutoProfiles.ToolTip"));
this.tabAutoProfiles.UseVisualStyleBackColor = true;
//
// tabSettings
//
- resources.ApplyResources(this.tabSettings, "tabSettings");
this.tabSettings.Controls.Add(this.fLPSettings);
+ resources.ApplyResources(this.tabSettings, "tabSettings");
this.tabSettings.Name = "tabSettings";
- this.toolTip1.SetToolTip(this.tabSettings, resources.GetString("tabSettings.ToolTip"));
this.tabSettings.UseVisualStyleBackColor = true;
//
// fLPSettings
@@ -906,13 +858,11 @@ private void InitializeComponent()
this.fLPSettings.Controls.Add(this.pnlXIPorts);
this.fLPSettings.Controls.Add(this.flowLayoutPanel1);
this.fLPSettings.Name = "fLPSettings";
- this.toolTip1.SetToolTip(this.fLPSettings, resources.GetString("fLPSettings.ToolTip"));
//
// hideDS4CheckBox
//
resources.ApplyResources(this.hideDS4CheckBox, "hideDS4CheckBox");
this.hideDS4CheckBox.Name = "hideDS4CheckBox";
- this.toolTip1.SetToolTip(this.hideDS4CheckBox, resources.GetString("hideDS4CheckBox.ToolTip"));
this.hideDS4CheckBox.UseVisualStyleBackColor = true;
this.hideDS4CheckBox.CheckedChanged += new System.EventHandler(this.hideDS4CheckBox_CheckedChanged);
//
@@ -922,7 +872,6 @@ private void InitializeComponent()
this.cBSwipeProfiles.Checked = true;
this.cBSwipeProfiles.CheckState = System.Windows.Forms.CheckState.Checked;
this.cBSwipeProfiles.Name = "cBSwipeProfiles";
- this.toolTip1.SetToolTip(this.cBSwipeProfiles, resources.GetString("cBSwipeProfiles.ToolTip"));
this.cBSwipeProfiles.UseVisualStyleBackColor = true;
this.cBSwipeProfiles.CheckedChanged += new System.EventHandler(this.cBSwipeProfiles_CheckedChanged);
//
@@ -930,7 +879,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this.StartWindowsCheckBox, "StartWindowsCheckBox");
this.StartWindowsCheckBox.Name = "StartWindowsCheckBox";
- this.toolTip1.SetToolTip(this.StartWindowsCheckBox, resources.GetString("StartWindowsCheckBox.ToolTip"));
this.StartWindowsCheckBox.UseVisualStyleBackColor = true;
this.StartWindowsCheckBox.CheckedChanged += new System.EventHandler(this.StartWindowsCheckBox_CheckedChanged);
//
@@ -938,23 +886,20 @@ private void InitializeComponent()
//
resources.ApplyResources(this.startMinimizedCheckBox, "startMinimizedCheckBox");
this.startMinimizedCheckBox.Name = "startMinimizedCheckBox";
- this.toolTip1.SetToolTip(this.startMinimizedCheckBox, resources.GetString("startMinimizedCheckBox.ToolTip"));
this.startMinimizedCheckBox.UseVisualStyleBackColor = true;
this.startMinimizedCheckBox.CheckedChanged += new System.EventHandler(this.startMinimizedCheckBox_CheckedChanged);
//
// panel1
//
- resources.ApplyResources(this.panel1, "panel1");
this.panel1.Controls.Add(this.lbNotifications);
this.panel1.Controls.Add(this.cBoxNotifications);
+ resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
- this.toolTip1.SetToolTip(this.panel1, resources.GetString("panel1.ToolTip"));
//
// lbNotifications
//
resources.ApplyResources(this.lbNotifications, "lbNotifications");
this.lbNotifications.Name = "lbNotifications";
- this.toolTip1.SetToolTip(this.lbNotifications, resources.GetString("lbNotifications.ToolTip"));
//
// cBoxNotifications
//
@@ -966,25 +911,22 @@ private void InitializeComponent()
resources.GetString("cBoxNotifications.Items1"),
resources.GetString("cBoxNotifications.Items2")});
this.cBoxNotifications.Name = "cBoxNotifications";
- this.toolTip1.SetToolTip(this.cBoxNotifications, resources.GetString("cBoxNotifications.ToolTip"));
this.cBoxNotifications.SelectedIndexChanged += new System.EventHandler(this.cBoxNotifications_SelectedIndexChanged);
//
// cBDisconnectBT
//
resources.ApplyResources(this.cBDisconnectBT, "cBDisconnectBT");
this.cBDisconnectBT.Name = "cBDisconnectBT";
- this.toolTip1.SetToolTip(this.cBDisconnectBT, resources.GetString("cBDisconnectBT.ToolTip"));
this.cBDisconnectBT.UseVisualStyleBackColor = true;
this.cBDisconnectBT.CheckedChanged += new System.EventHandler(this.cBDisconnectBT_CheckedChanged);
//
// panel2
//
- resources.ApplyResources(this.panel2, "panel2");
this.panel2.Controls.Add(this.nUDLatency);
this.panel2.Controls.Add(this.lbMsLatency);
this.panel2.Controls.Add(this.cBFlashWhenLate);
+ resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
- this.toolTip1.SetToolTip(this.panel2, resources.GetString("panel2.ToolTip"));
//
// nUDLatency
//
@@ -995,7 +937,6 @@ private void InitializeComponent()
0,
0});
this.nUDLatency.Name = "nUDLatency";
- this.toolTip1.SetToolTip(this.nUDLatency, resources.GetString("nUDLatency.ToolTip"));
this.nUDLatency.Value = new decimal(new int[] {
10,
0,
@@ -1007,7 +948,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this.lbMsLatency, "lbMsLatency");
this.lbMsLatency.Name = "lbMsLatency";
- this.toolTip1.SetToolTip(this.lbMsLatency, resources.GetString("lbMsLatency.ToolTip"));
//
// cBFlashWhenLate
//
@@ -1015,7 +955,6 @@ private void InitializeComponent()
this.cBFlashWhenLate.Checked = true;
this.cBFlashWhenLate.CheckState = System.Windows.Forms.CheckState.Checked;
this.cBFlashWhenLate.Name = "cBFlashWhenLate";
- this.toolTip1.SetToolTip(this.cBFlashWhenLate, resources.GetString("cBFlashWhenLate.ToolTip"));
this.cBFlashWhenLate.UseVisualStyleBackColor = true;
this.cBFlashWhenLate.CheckedChanged += new System.EventHandler(this.cBFlashWhenLate_CheckedChanged);
//
@@ -1023,7 +962,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this.cBCloseMini, "cBCloseMini");
this.cBCloseMini.Name = "cBCloseMini";
- this.toolTip1.SetToolTip(this.cBCloseMini, resources.GetString("cBCloseMini.ToolTip"));
this.cBCloseMini.UseVisualStyleBackColor = true;
this.cBCloseMini.CheckedChanged += new System.EventHandler(this.cBCloseMini_CheckedChanged);
//
@@ -1031,7 +969,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this.cBQuickCharge, "cBQuickCharge");
this.cBQuickCharge.Name = "cBQuickCharge";
- this.toolTip1.SetToolTip(this.cBQuickCharge, resources.GetString("cBQuickCharge.ToolTip"));
this.cBQuickCharge.UseVisualStyleBackColor = true;
this.cBQuickCharge.CheckedChanged += new System.EventHandler(this.cBQuickCharge_CheckedChanged);
//
@@ -1041,7 +978,6 @@ private void InitializeComponent()
this.cBDownloadLangauge.Checked = true;
this.cBDownloadLangauge.CheckState = System.Windows.Forms.CheckState.Checked;
this.cBDownloadLangauge.Name = "cBDownloadLangauge";
- this.toolTip1.SetToolTip(this.cBDownloadLangauge, resources.GetString("cBDownloadLangauge.ToolTip"));
this.cBDownloadLangauge.UseVisualStyleBackColor = true;
this.cBDownloadLangauge.CheckedChanged += new System.EventHandler(this.cBDownloadLangauge_CheckedChanged);
//
@@ -1049,18 +985,16 @@ private void InitializeComponent()
//
resources.ApplyResources(this.cBUpdate, "cBUpdate");
this.cBUpdate.Name = "cBUpdate";
- this.toolTip1.SetToolTip(this.cBUpdate, resources.GetString("cBUpdate.ToolTip"));
this.cBUpdate.UseVisualStyleBackColor = true;
this.cBUpdate.CheckedChanged += new System.EventHandler(this.cBUpdate_CheckedChanged);
//
// pNUpdate
//
- resources.ApplyResources(this.pNUpdate, "pNUpdate");
this.pNUpdate.Controls.Add(this.cBUpdateTime);
this.pNUpdate.Controls.Add(this.lbCheckEvery);
this.pNUpdate.Controls.Add(this.nUDUpdateTime);
+ resources.ApplyResources(this.pNUpdate, "pNUpdate");
this.pNUpdate.Name = "pNUpdate";
- this.toolTip1.SetToolTip(this.pNUpdate, resources.GetString("pNUpdate.ToolTip"));
//
// cBUpdateTime
//
@@ -1071,14 +1005,12 @@ private void InitializeComponent()
resources.GetString("cBUpdateTime.Items"),
resources.GetString("cBUpdateTime.Items1")});
this.cBUpdateTime.Name = "cBUpdateTime";
- this.toolTip1.SetToolTip(this.cBUpdateTime, resources.GetString("cBUpdateTime.ToolTip"));
this.cBUpdateTime.SelectedIndexChanged += new System.EventHandler(this.cBUpdateTime_SelectedIndexChanged);
//
// lbCheckEvery
//
resources.ApplyResources(this.lbCheckEvery, "lbCheckEvery");
this.lbCheckEvery.Name = "lbCheckEvery";
- this.toolTip1.SetToolTip(this.lbCheckEvery, resources.GetString("lbCheckEvery.ToolTip"));
//
// nUDUpdateTime
//
@@ -1089,17 +1021,15 @@ private void InitializeComponent()
0,
0});
this.nUDUpdateTime.Name = "nUDUpdateTime";
- this.toolTip1.SetToolTip(this.nUDUpdateTime, resources.GetString("nUDUpdateTime.ToolTip"));
this.nUDUpdateTime.ValueChanged += new System.EventHandler(this.nUDUpdateTime_ValueChanged);
//
// pnlXIPorts
//
- resources.ApplyResources(this.pnlXIPorts, "pnlXIPorts");
this.pnlXIPorts.Controls.Add(this.lbUseXIPorts);
this.pnlXIPorts.Controls.Add(this.nUDXIPorts);
this.pnlXIPorts.Controls.Add(this.lbLastXIPort);
+ resources.ApplyResources(this.pnlXIPorts, "pnlXIPorts");
this.pnlXIPorts.Name = "pnlXIPorts";
- this.toolTip1.SetToolTip(this.pnlXIPorts, resources.GetString("pnlXIPorts.ToolTip"));
this.pnlXIPorts.MouseEnter += new System.EventHandler(this.pnlXIPorts_MouseEnter);
this.pnlXIPorts.MouseLeave += new System.EventHandler(this.pnlXIPorts_MouseLeave);
//
@@ -1107,7 +1037,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this.lbUseXIPorts, "lbUseXIPorts");
this.lbUseXIPorts.Name = "lbUseXIPorts";
- this.toolTip1.SetToolTip(this.lbUseXIPorts, resources.GetString("lbUseXIPorts.ToolTip"));
//
// nUDXIPorts
//
@@ -1123,7 +1052,6 @@ private void InitializeComponent()
0,
0});
this.nUDXIPorts.Name = "nUDXIPorts";
- this.toolTip1.SetToolTip(this.nUDXIPorts, resources.GetString("nUDXIPorts.ToolTip"));
this.nUDXIPorts.Value = new decimal(new int[] {
1,
0,
@@ -1137,7 +1065,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this.lbLastXIPort, "lbLastXIPort");
this.lbLastXIPort.Name = "lbLastXIPort";
- this.toolTip1.SetToolTip(this.lbLastXIPort, resources.GetString("lbLastXIPort.ToolTip"));
//
// flowLayoutPanel1
//
@@ -1148,14 +1075,12 @@ private void InitializeComponent()
this.flowLayoutPanel1.Controls.Add(this.linkSetup);
this.flowLayoutPanel1.Controls.Add(this.lLBUpdate);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
- this.toolTip1.SetToolTip(this.flowLayoutPanel1, resources.GetString("flowLayoutPanel1.ToolTip"));
//
// linkProfiles
//
resources.ApplyResources(this.linkProfiles, "linkProfiles");
this.linkProfiles.Name = "linkProfiles";
this.linkProfiles.TabStop = true;
- this.toolTip1.SetToolTip(this.linkProfiles, resources.GetString("linkProfiles.ToolTip"));
this.linkProfiles.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkProfiles_LinkClicked);
//
// lnkControllers
@@ -1163,7 +1088,6 @@ private void InitializeComponent()
resources.ApplyResources(this.lnkControllers, "lnkControllers");
this.lnkControllers.Name = "lnkControllers";
this.lnkControllers.TabStop = true;
- this.toolTip1.SetToolTip(this.lnkControllers, resources.GetString("lnkControllers.ToolTip"));
this.lnkControllers.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkControllers_LinkClicked);
//
// linkUninstall
@@ -1171,7 +1095,6 @@ private void InitializeComponent()
resources.ApplyResources(this.linkUninstall, "linkUninstall");
this.linkUninstall.Name = "linkUninstall";
this.linkUninstall.TabStop = true;
- this.toolTip1.SetToolTip(this.linkUninstall, resources.GetString("linkUninstall.ToolTip"));
this.linkUninstall.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkUninstall_LinkClicked);
//
// linkSetup
@@ -1179,7 +1102,6 @@ private void InitializeComponent()
resources.ApplyResources(this.linkSetup, "linkSetup");
this.linkSetup.Name = "linkSetup";
this.linkSetup.TabStop = true;
- this.toolTip1.SetToolTip(this.linkSetup, resources.GetString("linkSetup.ToolTip"));
this.linkSetup.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLSetup_LinkClicked);
//
// lLBUpdate
@@ -1187,16 +1109,14 @@ private void InitializeComponent()
resources.ApplyResources(this.lLBUpdate, "lLBUpdate");
this.lLBUpdate.Name = "lLBUpdate";
this.lLBUpdate.TabStop = true;
- this.toolTip1.SetToolTip(this.lLBUpdate, resources.GetString("lLBUpdate.ToolTip"));
this.lLBUpdate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLBUpdate_LinkClicked);
//
// tabLog
//
- resources.ApplyResources(this.tabLog, "tabLog");
this.tabLog.Controls.Add(this.lvDebug);
this.tabLog.Controls.Add(this.btnClear);
+ resources.ApplyResources(this.tabLog, "tabLog");
this.tabLog.Name = "tabLog";
- this.toolTip1.SetToolTip(this.tabLog, resources.GetString("tabLog.ToolTip"));
this.tabLog.UseVisualStyleBackColor = true;
//
// saveProfiles
@@ -1205,7 +1125,6 @@ private void InitializeComponent()
//
// cMCustomLed
//
- resources.ApplyResources(this.cMCustomLed, "cMCustomLed");
this.cMCustomLed.ImageScalingSize = new System.Drawing.Size(20, 20);
this.cMCustomLed.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.useProfileColorToolStripMenuItem,
@@ -1213,20 +1132,20 @@ private void InitializeComponent()
this.cMCustomLed.Name = "cMCustomLed";
this.cMCustomLed.ShowCheckMargin = true;
this.cMCustomLed.ShowImageMargin = false;
- this.toolTip1.SetToolTip(this.cMCustomLed, resources.GetString("cMCustomLed.ToolTip"));
+ resources.ApplyResources(this.cMCustomLed, "cMCustomLed");
//
// useProfileColorToolStripMenuItem
//
- resources.ApplyResources(this.useProfileColorToolStripMenuItem, "useProfileColorToolStripMenuItem");
this.useProfileColorToolStripMenuItem.Checked = true;
this.useProfileColorToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.useProfileColorToolStripMenuItem.Name = "useProfileColorToolStripMenuItem";
+ resources.ApplyResources(this.useProfileColorToolStripMenuItem, "useProfileColorToolStripMenuItem");
this.useProfileColorToolStripMenuItem.Click += new System.EventHandler(this.useProfileColorToolStripMenuItem_Click);
//
// useCustomColorToolStripMenuItem
//
- resources.ApplyResources(this.useCustomColorToolStripMenuItem, "useCustomColorToolStripMenuItem");
this.useCustomColorToolStripMenuItem.Name = "useCustomColorToolStripMenuItem";
+ resources.ApplyResources(this.useCustomColorToolStripMenuItem, "useCustomColorToolStripMenuItem");
this.useCustomColorToolStripMenuItem.Click += new System.EventHandler(this.useCustomColorToolStripMenuItem_Click);
//
// advColorDialog
@@ -1235,14 +1154,13 @@ private void InitializeComponent()
//
// DS4Form
//
- resources.ApplyResources(this, "$this");
this.AllowDrop = true;
+ resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.tabMain);
this.Controls.Add(this.pnlButton);
this.Name = "DS4Form";
- this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip"));
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ScpForm_Closing);
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragDrop);
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragEnter);
@@ -1252,6 +1170,7 @@ private void InitializeComponent()
this.cMTaskbar.ResumeLayout(false);
this.tabMain.ResumeLayout(false);
this.tabControllers.ResumeLayout(false);
+ this.tabControllers.PerformLayout();
this.tLPControllers.ResumeLayout(false);
this.tLPControllers.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pBStatus1)).EndInit();
diff --git a/DS4Windows/DS4Forms/DS4Form.ar.resx b/DS4Windows/DS4Forms/DS4Form.ar.resx
index e9285255cb..6728b0184b 100644
--- a/DS4Windows/DS4Forms/DS4Form.ar.resx
+++ b/DS4Windows/DS4Forms/DS4Form.ar.resx
@@ -143,7 +143,7 @@
اختصارات لوحة المفاتيح/عن البرنامج
- محو
+ مسح
231, 192
@@ -209,13 +209,13 @@
992, 94
- حرر
+ تعديل
992, 130
- حرر
+ تعديل
846, 23
@@ -224,7 +224,7 @@
992, 58
- حرر
+ تعديل
846, 59
@@ -236,7 +236,7 @@
992, 22
- حرر
+ تعديل
846, 131
diff --git a/DS4Windows/DS4Forms/DS4Form.de-DE.resx b/DS4Windows/DS4Forms/DS4Form.de-DE.resx
index aa32efa5bd..b8d63a3179 100644
--- a/DS4Windows/DS4Forms/DS4Form.de-DE.resx
+++ b/DS4Windows/DS4Forms/DS4Form.de-DE.resx
@@ -638,4 +638,16 @@
Benutze eine eigene Farbe
+
+ ID
+
+
+ Status
+
+
+ Controller
+
+
+ Log
+
\ No newline at end of file
diff --git a/DS4Windows/DS4Forms/DS4Form.fr-FR.resx b/DS4Windows/DS4Forms/DS4Form.fr-FR.resx
index 169b656e28..33a816b967 100644
--- a/DS4Windows/DS4Forms/DS4Form.fr-FR.resx
+++ b/DS4Windows/DS4Forms/DS4Form.fr-FR.resx
@@ -151,9 +151,6 @@
Effacer
-
- 287, 192
-
286, 26
@@ -199,17 +196,23 @@
Sortir (clic central de la souris)
-
- Manettes
+
+ 287, 192
Connecter DS4 exclusivement (expérimental)
+
+ 1077, 94
+
+
+ 41, 28
+
- 476, 26
+ 497, 26
- 974, 94
+ 1008, 94
61, 28
@@ -218,7 +221,7 @@
Éditer
- 974, 130
+ 1008, 130
61, 28
@@ -227,10 +230,10 @@
Éditer
- 826, 23
+ 860, 23
- 974, 58
+ 1008, 58
61, 28
@@ -239,13 +242,13 @@
Éditer
- 826, 59
+ 860, 59
- 826, 95
+ 860, 95
- 974, 22
+ 1008, 22
61, 28
@@ -254,10 +257,10 @@
Éditer
- 826, 131
+ 860, 131
- 825, 0
+ 859, 0
141, 18
@@ -266,7 +269,7 @@
Profil Sélectionné
- 477, 0
+ 497, 0
38, 18
@@ -275,7 +278,7 @@
État
- 683, 0
+ 713, 0
66, 18
@@ -284,100 +287,112 @@
Batterie
- 694, 27
+ 723, 27
- 694, 63
+ 723, 63
- 694, 99
+ 723, 99
- 694, 135
+ 723, 135
- 476, 62
+ 497, 62
- 476, 98
+ 497, 98
- 476, 134
+ 497, 134
- 1043, 22
+ 1077, 22
-
- Aucune manette connectée
+
+ 41, 28
-
- Profils
+
+ 1077, 58
-
- 207, 264
+
+ 41, 28
+
+
+ 1077, 130
+
+
+ 41, 28
+
+
+ Aucune manette connectée (Max 4)
+
+
+ Manettes
- 206, 26
+ 208, 26
Edition
- 206, 26
+ 208, 26
Choisir manette 1
- 206, 26
+ 208, 26
Choisir manette 2
- 206, 26
+ 208, 26
Choisir manette 3
- 206, 26
+ 208, 26
Choisir manette 4
- 206, 26
+ 208, 26
Effacer (Del)
- 206, 26
+ 208, 26
Dupliquer (Ctrl+D)
- 206, 26
+ 208, 26
Nouveau Profil
- 206, 26
+ 208, 26
Importer
- 206, 26
+ 208, 26
Exporter
-
- Options du profil
+
+ 209, 264
105, 24
@@ -409,6 +424,9 @@
Garder les dimensions de la fenêtre après fermeture
+
+ Options du profil
+
92, 24
@@ -463,11 +481,11 @@
Exporter le profil choisi
-
- Profils Auto
+
+ Profils
-
- Paramètres
+
+ Profils Automatique
176, 21
@@ -476,10 +494,10 @@
Cacher la Manette DS4
- 328, 21
+ 341, 21
- Balayer le pavé tactile pour changer de profiles
+ Glisser sur le pavé tactile pour changer de profile
169, 21
@@ -493,9 +511,6 @@
Réduire au Démarrage
-
- 304, 28
-
157, 17
@@ -514,15 +529,15 @@
168, 1
+
+ 304, 28
+
247, 21
Déconnecter du Bluetooth à l'arrêt
-
- 458, 28
-
366, 2
@@ -535,6 +550,9 @@
Faire clignoter la barre lumineuse lors de forte latence
+
+ 458, 28
+
268, 21
@@ -548,10 +566,10 @@
Charge Rapide
- 290, 21
+ 295, 21
- Télécharger le pack de langues avec Maj
+ Télécharger le pack de langues avec MAJ
270, 21
@@ -559,9 +577,6 @@
Vérifier les mises à jour au démarrage
-
- 256, 22
-
heures
@@ -580,11 +595,8 @@
116, 1
-
- 13, 376
-
-
- 276, 28
+
+ 256, 30
153, 17
@@ -598,11 +610,11 @@
223, 4
-
- 479, 13
+
+ 13, 384
-
- 230, 85
+
+ 276, 28
112, 17
@@ -632,20 +644,26 @@
Installation de la Manette
- 159, 17
+ 155, 17
- Vérifier les Mises à Jour
+ Vérifier s'il y a une MAJ
TopLeft
+
+ 479, 13
+
+
+ 230, 85
+
+
+ Paramètres
+
Fichier Log
-
- 307, 56
-
306, 26
@@ -658,11 +676,7 @@
Utiliser une couleur personnalisée
-
-
- Inherit
-
-
- ID
+
+ 307, 56
\ No newline at end of file
diff --git a/DS4Windows/DS4Forms/DS4Form.he.resx b/DS4Windows/DS4Forms/DS4Form.he.resx
index 773c8da216..c90f63774a 100644
--- a/DS4Windows/DS4Forms/DS4Form.he.resx
+++ b/DS4Windows/DS4Forms/DS4Form.he.resx
@@ -197,49 +197,52 @@
התחבר ל-DS4 בלעדית (ניסיוני)
- 1085, 94
+ 1084, 94
- 33, 28
+ 34, 28
+
+
+ 444, 26
- 1031, 94
+ 1030, 94
ערוך
- 1031, 130
+ 1030, 130
ערוך
- 885, 23
+ 884, 23
- 1031, 58
+ 1030, 58
ערוך
- 885, 59
+ 884, 59
- 885, 95
+ 884, 95
- 1031, 22
+ 1030, 22
ערוך
- 885, 131
+ 884, 131
- 906, 0
+ 905, 0
96, 18
@@ -254,7 +257,7 @@
מזהה
- 514, 0
+ 445, 0
37, 18
@@ -263,7 +266,7 @@
מצב
- 743, 0
+ 720, 0
52, 18
@@ -272,34 +275,43 @@
סוללה
- 746, 27
+ 723, 27
- 746, 63
+ 723, 63
- 746, 99
+ 723, 99
- 746, 135
+ 723, 135
+
+
+ 444, 62
+
+
+ 444, 98
+
+
+ 444, 134
- 1085, 22
+ 1084, 22
- 33, 28
+ 34, 28
- 1085, 58
+ 1084, 58
- 33, 28
+ 34, 28
- 1085, 130
+ 1084, 130
- 33, 28
+ 34, 28
לא מחוברים בקרים (מקסימום 4)
@@ -308,64 +320,64 @@
פרופילים
- 187, 264
+ 180, 264
- 186, 26
+ 179, 26
ערוך
- 186, 26
+ 179, 26
הגדר כבקר 1
- 186, 26
+ 179, 26
הגדר כבקר 2
- 186, 26
+ 179, 26
הגדר כבקר 3
- 186, 26
+ 179, 26
הגדר כבקר 4
- 186, 26
+ 179, 26
מחק (Delete)
- 186, 26
+ 179, 26
שכפל (Ctrl+D)
- 186, 26
+ 179, 26
פרופיל חדש
- 186, 26
+ 179, 26
ייבוא
- 186, 26
+ 179, 26
ייצוא
@@ -506,7 +518,7 @@
88, 1
- 224, 21
+ 188, 21
נתק Bluetooth בעת הסגירה
@@ -526,6 +538,12 @@
הבהב אור במהירות גבוהה
+
+ 111, 21
+
+
+ סגירה ממזערת
+
102, 21
@@ -634,7 +652,4 @@
שימוש בצבע מסוים
-
- סגירה ממזערת
-
\ No newline at end of file
diff --git a/DS4Windows/DS4Forms/DS4Form.nl.resx b/DS4Windows/DS4Forms/DS4Form.nl.resx
index bec02bff5f..11fe9f6b96 100644
--- a/DS4Windows/DS4Forms/DS4Form.nl.resx
+++ b/DS4Windows/DS4Forms/DS4Form.nl.resx
@@ -610,4 +610,19 @@
Gebruik Aangepaste Kleuren
+
+ Start
+
+
+ Status
+
+
+ Controller/Driver Setup
+
+
+ Controllers
+
+
+ Log
+
\ No newline at end of file
diff --git a/DS4Windows/DS4Forms/DS4Form.resx b/DS4Windows/DS4Forms/DS4Form.resx
index 31fd403be8..df22ee038d 100644
--- a/DS4Windows/DS4Forms/DS4Form.resx
+++ b/DS4Windows/DS4Forms/DS4Form.resx
@@ -117,3409 +117,3625 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- 4, 4, 4, 4
+
+ Fill
-
- 158, 0
+
+ Lucida Console, 9.75pt
-
- 0
+
+ 4, 4
-
+
4, 4, 4, 4
-
- tLPControllers
-
-
- lbNoControllers
-
-
- bnEditC1
-
-
- NoControl
-
-
- 0, 0
+
+ 1114, 415
-
- Fill
+
+
+ 0
-
- NoControl
+
+ lvDebug
-
- tLPControllers
+
+ System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
+
+ tabLog
-
- 52
+
+ 0
-
-
+
+ Time
-
- 53
+
+ 167
-
- None
+
+ Data
-
- Hide DS4 Controller
+
+ 84
-
- 43
+
+ 17, 17
+
+
+ lbTest
-
- True
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- cMTaskbar
+
+ pnlButton
-
+
0
-
- tSBKeepSize
-
-
- 48
+
+ btnStartStop
-
- 735, 0
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 100%
+
+ pnlButton
-
- tabLog
+
+ 1
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ lbLastMessage
-
- 227, 26
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- tLPControllers
+
+ pnlButton
-
+
2
-
- 1122, 162
-
-
- 53
+
+ llbHelp
-
- None
+
+ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ pnlButton
-
- Edit
+
+ 3
-
- lbID
+
+ Bottom
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 0, 481
-
- 59, 24
+
+ 4, 4, 4, 4
-
- lbLastXIPort
+
+ 1130, 38
-
- 155, 21
+
+ 10
-
+
pnlButton
-
- 84
-
-
- lbPad2
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 2
+
+ $this
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 4
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Bottom, Right
-
- importToolStripMenuItem
+
+ True
-
- 13, 346
+
+ NoControl
-
- 42
+
+ 812, 11
-
+
4, 0, 4, 0
-
- 149, 17
-
-
- None
-
-
- pNUpdate
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 129, 17
-
- Save Profile
+
+ 46
-
- editProfileForController4ToolStripMenuItem
+
+ Used to test values
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ False
-
- 2
+
+ lbTest
-
- 3
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Time
+
+ pnlButton
-
- days
+
+ 0
-
- panel1
+
+ Bottom, Right
-
+
NoControl
-
- 1114, 415
+
+ 1050, 5
-
- 743, 27
+
+ 4, 4, 4, 4
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 72, 29
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 1
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Start
-
- 126, 21
+
+ btnStartStop
-
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
pnlButton
-
+
1
-
- Edit
-
-
- nUDXIPorts
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Bottom, Left, Right
-
- lbStatus
+
+ NoControl
-
- 3
+
+ 5, 11
-
+
4, 0, 4, 0
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
+
+ 931, 22
-
- 1028, 130
+
+ 41
-
- 743, 99
+
+ lbLastMessage
-
- 265, 24
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- None
+
+ pnlButton
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 2
-
- chData
+
+ Bottom, Right
-
-
+
+ True
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ NoControl
-
- None
+
+ 943, 11
-
-
+
+ 4, 0, 4, 0
-
-
+
+ 100, 17
-
- 114, 17
+
+ 13
-
- NoControl
+
+ Hotkeys/About
-
- 882, 23
+
+ llbHelp
-
- tLPControllers
+
+ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Dupliacate Selected Profile (Ctrl+D)
+
+ pnlButton
-
- 0
+
+ 3
-
- 4, 4
+
+ Bottom
-
- 44
+
+ False
-
+
NoControl
-
- tSBExportProfile
+
+ 4, 419
-
- Check for Update Now
+
+ 4, 4, 4, 4
-
-
+
+ 1114, 29
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 9
-
- tLPControllers
+
+ Clear
-
- System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ btnClear
-
- toolTip1
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ tabLog
-
- Left
+
+ 1
-
- tabControllers
+
+ 226, 17
+
+
+ Scp server
-
- NoControl
+
+ 339, 17
+
+
+ 263, 192
-
- 9
+
+ cMTaskbar
-
- tLPControllers
+
+ System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- editProfileForController2ToolStripMenuItem
+
+ DS4 Xinput Tool
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ True
-
- 122, 21
+
+ 262, 26
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Edit Profile for Controller 1
-
- Microsoft Sans Serif, 9pt
+
+ 262, 26
-
- 0
+
+ Edit Profile for Controller 2
-
- 7
+
+ 262, 26
-
- 130, 21
+
+ Edit Profile for Controller 3
-
- cBController4
+
+ 262, 26
-
- System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Edit Profile for Controller 4
-
- NoControl
+
+ 259, 6
-
- 943, 11
+
+ 262, 26
-
- Keep this window size after closing
+
+ Start
-
-
+
+ Segoe UI, 9pt, style=Bold
-
- New
+
+ 262, 26
-
-
+
+ Open
-
- 1
+
+ 262, 26
-
- 510, 62
+
+ Exit (Middle Mouse)
-
- tLPControllers
+
+ 211, 6
-
- 9
+
+ 449, 17
+
+
+ XML Files (*.xml)|*.xml
-
- 100%
+
+ Top
-
- Microsoft Sans Serif, 9pt
+
+ NoControl
-
- Hotkeys/About
+
+ 0, 162
-
- Magenta
+
+ 4, 4, 4, 4
-
- 36, 28
+
+ 1122, 29
-
- 1050, 5
+
+ 48
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Connect DS4 exclusivly (experimental)
-
- 931, 22
+
+ btnConnectDS4Win10
-
- None
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 4
+
+ tabControllers
-
- Edit
+
+ 0
-
- 44
+
+ True
-
- pnlXIPorts
+
+ 6
-
- nUDUpdateTime
+
+ Fill
-
- NoControl
+
+ Flat
-
- 44
+
+ NoControl
-
- Export
+
+ 1089, 94
-
+
4, 4, 4, 4
-
-
+
+ 29, 28
-
-
+
+ 50
-
- 3
+
+ bnLight3
-
-
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- New Profile
+
+ tLPControllers
+
+
+ 0
-
-
+
+ None
-
- 45
+
+ NoControl
-
- lLBUpdate
+
+ 533, 26
-
+
4, 4, 4, 4
-
- 4, 99
+
+ 39, 20
-
- assignToController3ToolStripMenuItem
+
+ AutoSize
-
- 4, 4, 4, 4
+
+ 47
-
- 45
+
+ pBStatus1
-
- 54
+
+ System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Magenta
+
+ tLPControllers
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 1
-
+
Left
-
- 4, 25
+
+ True
-
- 4, 4, 4, 4
+
+ Microsoft Sans Serif, 9pt
-
- cBDownloadLangauge
+
+ NoControl
-
- tabAutoProfiles
+
+ 4, 27
-
- 0
+
+ 4, 0, 4, 0
-
- 11
+
+ 133, 18
-
-
+
+ 44
-
-
+
+ MA:C1:23:45:67:89
-
- Edit Profile for Controller 1
+
+ lbPad1
-
-
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 1
+
+ tLPControllers
-
- None
+
+ 2
-
- 4, 0, 4, 0
+
+ Left
-
-
+
+ True
-
- 0
+
+ Microsoft Sans Serif, 9pt
-
-
+
+ NoControl
-
- Used to test values
+
+ 4, 63
-
- 3
+
+ 4, 0, 4, 0
-
- 4, 4, 4, 4
+
+ 85, 18
-
- 4
+
+ 44
-
- Edit Selected Profile (Enter)
+
+ Controller 2
-
- 4, 4, 4, 4
+
+ lbPad2
-
- 1114, 444
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- All
+
+ tLPControllers
-
- fLPSettings
+
+ 3
-
-
+
+ Left
-
+
NoControl
-
+
+ 1035, 94
+
+
4, 4, 4, 4
-
- 55, 22
+
+ 46, 28
-
-
+
+ 43
-
- tabMain
+
+ Edit
-
- tSTBProfile
+
+ bnEditC3
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 4, 4, 4, 4
-
-
- tSBCancel
+
+ tLPControllers
-
- Magenta
+
+ 4
-
- MA:C1:23:45:67:89
+
+ Left
-
- 4, 0, 4, 0
+
+ NoControl
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 1035, 130
-
- 1082, 94
+
+ 4, 4, 4, 4
-
-
+
+ 46, 28
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 43
-
- 45
+
+ Edit
-
- 44
-
-
- 42
+
+ bnEditC4
-
- advColorDialog
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- fLPSettings
+
+ tLPControllers
-
- pBStatus2
+
+ 5
-
- 40
+
+ Left
-
- panel2
+
+ True
-
- Edit
+
+ Microsoft Sans Serif, 9pt
-
- 42
+
+ NoControl
-
- 4, 4, 4, 4
+
+ 4, 99
-
- 100%
+
+ 4, 0, 4, 0
-
- 1082, 58
+
+ 85, 18
-
- toolStripLabel1
+
+ 44
-
- 5, 11
+
+ Controller 3
-
- 4, 4, 4, 4
+
+ lbPad3
-
- tSBImportProfile
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
tLPControllers
-
- fLPSettings
+
+ 6
-
- tLPControllers
+
+ Left
-
- lbBattery
+
+ True
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Microsoft Sans Serif, 9pt
-
- 262, 26
+
+ NoControl
-
- True
+
+ 4, 135
-
- 4, 4, 4, 4
+
+ 4, 0, 4, 0
-
- <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="bnLight3" Row="3" RowSpan="1" Column="5" 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="4" ColumnSpan="1" /><Control Name="bnEditC4" Row="4" RowSpan="1" Column="4" 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="3" ColumnSpan="1" /><Control Name="bnEditC2" Row="2" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cBController2" Row="2" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="cBController3" Row="3" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="bnEditC1" Row="1" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cBController4" Row="4" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lbSelectedProfile" Row="0" RowSpan="1" Column="3" 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="5" ColumnSpan="1" /><Control Name="bnLight2" Row="2" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="bnLight4" Row="4" RowSpan="1" Column="5" ColumnSpan="1" /></Controls><Columns Styles="Percent,46.27451,Percent,28.23529,Percent,25.4902,AutoSize,0,AutoSize,0,AutoSize,0" /><Rows Styles="AutoSize,0,Percent,25,Percent,25,Percent,25,Percent,25" /></TableLayoutSettings>
+
+ 85, 18
-
- Use Profile Color
+
+ 44
-
- 63, 24
+
+ Controller 4
-
- fLPSettings
+
+ lbPad4
-
- bnEditC3
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- lbUseXIPorts
+
+ tLPControllers
-
- 132, 24
+
+ 7
-
- 12
+
+ None
-
- System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 889, 24
-
- Delete (Del)
+
+ 4, 4, 4, 4
-
- Delete
+
+ 138, 24
-
- System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 42
-
- True
+
+ cBController1
-
- No Controllers Connected (Max 4)
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ tLPControllers
-
- 1
+
+ 8
-
+
+ Left
+
+
NoControl
-
- 11
+
+