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 + + 1035, 58 - - 4, 0, 4, 0 + + 4, 4, 4, 4 - - cBController2 + + 46, 28 - - 4, 0, 4, 0 + + 43 - - True + + Edit - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnEditC2 - - 1114, 27 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + tLPControllers - - + + 9 - - 251, 21 + + None - - 44 + + 889, 60 - - 43 + + 4, 4, 4, 4 - - 9, 9, 0, 11 + + 138, 24 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 42 - - 1114, 390 + + cBController2 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabMain + + tLPControllers - - 7 + + 10 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None - - useProfileColorToolStripMenuItem + + 889, 96 - + 4, 4, 4, 4 - - + + 138, 24 - - 43 + + 42 - - 4, 4, 4, 4 + + cBController3 - - NoControl + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 120, 120 + + tLPControllers - - + + 11 - - + + Left - - True + + NoControl - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1035, 22 - - 232, 28 + + 4, 4, 4, 4 - - startToolStripMenuItem + + 46, 28 - - True + + 43 - - tLPControllers + + Edit - - tSBDupProfile + + bnEditC1 - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tSOptions + + tLPControllers - - + + 12 - - 4, 4, 4, 4 + + None - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 889, 132 - - llbHelp + + 4, 4, 4, 4 - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 138, 24 - - tmrUpdate + + 42 - - 97, 24 + + cBController4 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Import Profile or Profiles + + tLPControllers + + + 13 - - + + None - + True - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Microsoft Sans Serif, 9pt, style=Bold - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - TopDown + + 894, 0 - - lbCheckEvery + + 4, 0, 4, 0 - - 13, 194 + + 127, 18 - - 46 + + 45 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Selected Profile - - 5 + + lbSelectedProfile - - pnlButton + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 46, 28 + + tLPControllers - - 0 + + 14 - - 42 + + Left - - 227, 26 + + True - - tLPControllers + + Microsoft Sans Serif, 9pt, style=Bold - - 22 + + NoControl - - + + 4, 0 - - True + + 4, 0, 4, 0 - - 1 + + 24, 18 - + + 45 + + + ID + + + lbID + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0 + + tLPControllers - - tsBDeleteProfile + + 15 - - Lucida Console, 9.75pt + + None - - 1122, 452 + + True - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Microsoft Sans Serif, 9pt, style=Bold - + NoControl - - 257, 21 + + 524, 0 - - + + 4, 0, 4, 0 - - Microsoft Sans Serif, 9pt + + 56, 18 - - tabProfiles + + 45 - - 44 + + Status - - 2 + + lbStatus System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Exit (Middle Mouse) + + tLPControllers - - + + 16 - - Microsoft Sans Serif, 9pt + + None - - Top, Right + + True - - 1 + + Microsoft Sans Serif, 9pt, style=Bold - + NoControl - + + 747, 0 + + 4, 0, 4, 0 - - 4 + + 61, 18 - - Auto Profiles + + 45 - - 1 + + Battery - - 56, 18 + + lbBattery - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Start Minimized + + tLPControllers - - 3 + + 17 - - tabSettings + + None - - + + True - - 1028, 58 + + Microsoft Sans Serif, 9pt - - 4, 4, 4, 4 + + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 755, 27 - - True + + 4, 0, 4, 0 - - Controller 2 + + 45, 18 - - 39, 20 + + 44 - - Settings + + 100% - + + lbBatt1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tLPControllers - - 202, 26 + + 18 - - TopDown + + None - - 266, 28 + + True - - 882, 95 + + Microsoft Sans Serif, 9pt - - 0 + + NoControl - - Import + + 755, 63 - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 0, 4, 0 - - 0 + + 45, 18 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 44 - - 85, 18 + + 100% - + + lbBatt2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + tLPControllers - - NoControl + + 19 - - 44 + + None - - 47 + + True - - None + + Microsoft Sans Serif, 9pt - - $this + + NoControl - - bnLight1 + + 755, 99 - - Edit Profile for Controller 2 + + 4, 0, 4, 0 - - 46, 28 + + 45, 18 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 44 - - 2 + + 100% - - lvDebug + + lbBatt3 - - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - AutoSize + + tLPControllers - - 1122, 29 + + 20 - - 13, 13 + + None - - 4, 0, 4, 0 + + True - - 263, 192 + + Microsoft Sans Serif, 9pt - + NoControl - - NoControl + + 755, 135 - - 887, 0 + + 4, 0, 4, 0 - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 45, 18 - - panel1 + + 44 - - Controller/Driver Setup + + 100% - - 46, 28 + + lbBatt4 - - assignToController4ToolStripMenuItem + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + tLPControllers - - Magenta + + 21 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - XML Files (*.xml)|*.xml + + 533, 62 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - 51 + + 39, 20 - - Bottom + + AutoSize - - 0 + + 47 - - toolStripSeparator3 + + pBStatus2 - - 4, 4, 4, 4 + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + tLPControllers + + + 22 - - + + None - - 1122, 452 + + NoControl - - 4, 0, 4, 0 + + 533, 98 - - hideDS4CheckBox + + 4, 4, 4, 4 39, 20 - - 4, 4, 4, 4 + + AutoSize - - flowLayoutPanel1 + + 47 - - 1122, 452 + + pBStatus3 - - Fill + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - fLPSettings + + tLPControllers - - Microsoft Sans Serif, 9pt + + 23 - - 4, 0, 4, 0 + + None - - 0 + + NoControl - - 13 + + 533, 134 - - False + + 4, 4, 4, 4 - - btnClear + + 39, 20 - - tLPControllers + + AutoSize - - toolStrip1 + + 47 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pBStatus4 - - tLPControllers + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 186, 27 + + tLPControllers - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 24 - - pnlButton + + Fill - - cBDisconnectBT + + Flat - - 10 + + NoControl - - + + 1089, 22 - + 4, 4, 4, 4 - - 4, 4, 4, 4 + + 29, 28 - - 111, 24 + + 50 - - lbTest + + bnLight1 - - tsBEditProfile + + System.Windows.Forms.Button, 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 - - flowLayoutPanel1 + + 25 - - flowLayoutPanel1 + + Fill - - 39, 20 + + Flat - - 127, 18 + + NoControl - - 45 + + 1089, 58 - - 1130, 519 + + 4, 4, 4, 4 - - tsBNewProfle + + 29, 28 - - 74, 24 + + 51 - - 228, 264 + + bnLight2 - - Bottom, Right + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabProfiles + + tLPControllers - - tabProfiles + + 26 - - 86, 17 + + Fill - - 138, 24 + + Flat - - 4, 4 + + NoControl - - panel2 + + 1089, 130 - - NoControl + + 4, 4, 4, 4 - - Top, Right + + 29, 28 - - Fill + + 52 - - 369, 13 + + bnLight4 - - hours + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + tLPControllers - - System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 27 - - 1 + + Top - - 1122, 452 + + 0, 0 - - 0 + + 4, 4, 4, 4 - - NoControl + + 5 - - 4, 68 + + 1122, 162 - - - 4 + + 46 - - lbBatt1 + + tLPControllers - - 259, 6 + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Profile folder + + tabControllers - - cBQuickCharge + + 1 - - + + <?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,48.95498,Percent,26.82658,Percent,24.21844,AutoSize,0,AutoSize,0,Absolute,35" /><Rows Styles="AutoSize,0,Percent,25,Percent,25,Percent,25,Percent,25" /></TableLayoutSettings> - - True + + Fill - + + False + + NoControl - - AutoSize + + 0, 0 - - 0 + + 4, 0, 4, 0 - - 13 + + 1122, 452 - - Left + + 47 - - + + No Controllers Connected (Max 4) - - Magenta + + MiddleCenter - - 44 + + lbNoControllers - - Edit Profile for Controller 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 56 + + tabControllers - - cBUpdateTime - - - - - - flowLayoutPanel1 + + 2 - - 4, 0, 4, 0 + + 4, 25 - - tabMain + + 4, 4, 4, 4 - - 882, 59 + + 1122, 452 - - + + 3 - - Microsoft Sans Serif, 9pt, style=Bold + + Controllers - - duplicateToolStripMenuItem + + tabControllers - - 2 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Magenta + + tabMain - - True + + 0 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 891, 17 + + + 568, 17 + + + lBProfiles - - tLPControllers + + System.Windows.Forms.ListBox, 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 + + tabProfiles - - tabSettings + + 0 - - True + + tSOptions - - Disconnect from BT when Stopping + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 5 + + tabProfiles - - 26, 17 + + 1 - - tabLog + + toolStrip1 - - Flat + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Selected Profile + + tabProfiles - - + + 2 - + 4, 25 - - 36, 28 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - 252, 21 + + 1122, 452 - - 262, 26 + + 0 - - 47 + + Profiles - - 4, 419 + + tabProfiles - - 17 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 227, 26 + + tabMain - - 61, 18 + + 1 - - openProfiles + + 4, 25 - - NoControl + + 4, 4, 4, 4 - - 25 + + 1122, 452 - - 1130, 481 + + 2 - - 11 + + Auto Profiles - - System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabAutoProfiles - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 227, 26 + + tabMain - - 0 + + 2 - - 4 + + fLPSettings - - 99, 24 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 227, 26 + + tabSettings - - Microsoft Sans Serif, 9.75pt + + 0 - - 55 + + 4, 25 - + 4, 4, 4, 4 - - 39, 20 - - - linkUninstall + + 4, 4, 4, 4 - - True + + 1122, 452 - - fLPSettings + + 4 - - 2 + + Settings - - lbSelectedProfile + + tabSettings - - Battery + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Warnings only + + tabMain - - XML Files (*.xml)|*.xml + + 3 - - 0 + + 4, 25 - - fLPSettings + + 4, 4, 4, 4 - - Flash Lightbar when Latency is over + + 4, 4, 4, 4 - - 5 + + 1122, 452 - + 1 - - 8 + + Log - - chTime + + tabLog - - tabProfiles + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Run at Startup + + tabMain - - 262, 26 + + 4 - - None + + Fill - - Left + + 0, 0 - - 52 + + 4, 4, 4, 4 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1130, 481 - - True + + 12 - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabMain - - 100, 17 + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + $this - - lbBatt2 + + 3 - - 44 + + 788, 17 + + + 228, 264 - - deleteToolStripMenuItem + + cMProfile - - Microsoft Sans Serif, 9pt, style=Bold + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + Fill - - 49 + + Microsoft Sans Serif, 9.75pt - - True + + 20 - - fLPSettings + + 4, 58 - - 502, 0 + + 4, 4, 4, 4 - - Edit + + 1114, 390 - - 8 + + 0 - - + + lBProfiles - - 1028, 22 + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + tabProfiles - - 4, 4 + + 0 - - 46 + + Segoe UI, 9pt, style=Bold - - + + 227, 26 - - pnlButton + + Edit - - 77, 24 + + 227, 26 - - 4, 0, 4, 0 + + Assign to Controller 1 - - NoControl + + 227, 26 - - Microsoft Sans Serif, 9pt + + Assign to Controller 2 - - + + 227, 26 - - nUDLatency + + Assign to Controller 3 - - 1114, 29 + + 227, 26 - - + + Assign to Controller 4 - - Export Selected Profile + + 227, 26 - - 13, 42 + + Delete (Del) - - 4, 4, 4, 4 + + 227, 26 - - 319, 5 + + Duplicate (Ctrl+D) - - NoControl + + 227, 26 - - NoControl + + New Profile - - Left + + 227, 26 - - 4, 4, 4, 4 + + Import - - 4, 4, 4, 4 + + 227, 26 - - tLPControllers + + Export - - 4, 0, 4, 0 + + 891, 17 + + + 4, 31 - - 4, 0, 4, 0 + + 1114, 27 - - Download Language Pack with Update + + 2 - - + + Profile Options - - 45, 18 + + tSOptions - - cBController3 + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Microsoft Sans Serif, 9pt + + tabProfiles - - 13, 382 + + 1 - - 45, 18 + + 99, 24 - - NoControl + + Profile Name: - - 15 + + 186, 27 - - 0 + + <type profile name here> - - Left + + Magenta - - 4, 4, 4, 4 + + 111, 24 - - StartWindowsCheckBox + + Save Profile - - + + Magenta - - fLPSettings + + 77, 24 - - startMinimizedCheckBox + + Cancel - - pnlXIPorts + + 6, 27 - - Open + + Magenta - - tabControllers + + 265, 24 - - 123, 17 + + Keep this window size after closing - - 4, 4, 4, 4 + + 568, 17 + + + 4, 4 - - 4, 4, 4, 4 + + 1114, 27 - - pNUpdate + + 1 - - 4, 27 + + toolStrip1 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStrip1 - - tabControllers + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + tabProfiles - - Profile Name: + + 2 - - lbPad1 + + Magenta - - openToolStripMenuItem + + 63, 24 - - 4, 4, 4, 4 + + New - - Top, Right + + Make a New Profile - - True + + Magenta - - None + + 59, 24 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Edit - - Swipe Touchpad to change profiles + + Edit Selected Profile (Enter) - - NoControl + + Magenta - - fLPSettings + + 77, 24 - - Left + + Delete - - Use Custom Color + + Delete Selected Profile (Delete) - - Fill + + Magenta - - None + + 97, 24 - - Export + + Duplicate - - None + + Dupliacate Selected Profile (Ctrl+D) - - Segoe UI, 9pt, style=Bold + + Magenta - - True + + 78, 24 - - 262, 26 + + Import - - Duplicate (Ctrl+D) + + Import Profile or Profiles - - + + Magenta - - NoControl + + 76, 24 - - Log + + Export - - System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Export Selected Profile - - Delete Selected Profile (Delete) + + True - - 0 + + hideDS4CheckBox - - 3 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + fLPSettings - - 85, 18 - - - 13, 259 - - - lbNotifications - - - 41 + + 0 - - 78, 24 + + cBSwipeProfiles - - System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top, Right + + fLPSettings - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - + + StartWindowsCheckBox - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 348, 28 + + fLPSettings 2 - - 46, 28 + + startMinimizedCheckBox - - assignToController1ToolStripMenuItem + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tLPControllers + + fLPSettings - - 4, 4, 4, 4 + + 3 - - True + + panel1 - - Fill + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + fLPSettings - - False + + 4 - - 43 + + cBDisconnectBT - - 202, 26 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4 + + fLPSettings - - + + 5 - - 570, 277 + + panel2 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Panel, 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 + + fLPSettings - - Top + + 6 - - Edit Profile for Controller 3 + + cBCloseMini - - cBSwipeProfiles + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - flowLayoutPanel1 + + fLPSettings - - True + + 7 - - Quick Charge + + cBQuickCharge - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 17 + + fLPSettings - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - DS4 Xinput Tool + + cBDownloadLangauge - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.NotifyIcon, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + fLPSettings - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - True + + cBUpdate - - 45 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + fLPSettings - - NoControl + + 10 - - 1 + + pNUpdate - - tLPControllers + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + fLPSettings - - 510, 98 + + 11 - - AutoSize + + pnlXIPorts - - True + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top, Right + + fLPSettings - - cBoxNotifications + + 12 - - Fill + + flowLayoutPanel1 - - AutoSize + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 167 + + fLPSettings - - 1 + + 13 - - Data + + Fill - - 72, 29 + + TopDown - - 1114, 27 + + 4, 4 - + 4, 4, 4, 4 - - Show Notifications - - - Make a New Profile - - - - - - 262, 26 + + 9, 9, 0, 11 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1114, 444 - - 4, 0, 4, 0 + + 0 - - 4, 4, 4, 4 + + fLPSettings - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + tabSettings - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - 227, 26 + + True - + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13, 13 - - + + 4, 4, 4, 4 - - Bottom, Left, Right + + 155, 21 - - True + + 13 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Hide DS4 Controller - - Duplicate + + hideDS4CheckBox - - cMProfile + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + fLPSettings - - 50 + + 0 - + + True + + NoControl - + + 13, 42 + + 4, 4, 4, 4 - - 6 + + 252, 21 - - Start + + 54 - - + + Swipe Touchpad to change profiles - - tLPControllers + + cBSwipeProfiles - + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + fLPSettings - - 4, 0, 4, 0 + + 1 - - MiddleCenter + + True - - Check every + + NoControl - - 4 + + 13, 71 - - newProfileToolStripMenuItem + + 4, 4, 4, 4 - - Left + + 122, 21 - - NoControl + + 40 - - 211, 6 + + Run at Startup - - + + StartWindowsCheckBox - - 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Bottom, Right + + fLPSettings - - 4, 0 + + 2 - - 19 + + True - - 18 + + NoControl - + + 13, 100 + + 4, 4, 4, 4 - - Segoe UI, 9pt, style=Bold + + 126, 21 - - NoControl + + 40 - - 4, 25 + + Start Minimized - - 116, 1 + + startMinimizedCheckBox - - Use Xinput Ports + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 57 + + fLPSettings - - 743, 135 + + 3 - - notifyIcon1 + + lbNotifications - - pBStatus1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 31 + + panel1 - + 0 - - - - - 4, 0, 4, 0 + + cBoxNotifications - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + panel1 - - 227, 26 + + 1 - - 152, 17 + + 13, 129 - - 138, 24 + + 4, 4, 4, 4 - - 4, 4 + + 266, 28 - - + + 45 - - 2 + + panel1 - - 1122, 452 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 55, 22 + + fLPSettings - - None + + 4 - - 13, 317 + + True - + NoControl - - System.Windows.Forms.Button, 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 - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 5 - - 4, 63 + + 4, 0, 4, 0 - - flowLayoutPanel1 + + 123, 17 - - 42 + + 45 - - Microsoft Sans Serif, 9pt + + Show Notifications - - 4, 4, 4, 4 + + lbNotifications - - 262, 26 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + panel1 - - 4, 34 + + 0 - - Controller 4 + + Top, Right - - linkProfiles + + None - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Warnings only - - cBCloseMini + + All 130, 1 - - 138, 24 - - - NoControl + + 4, 4, 4, 4 - - 77, 24 + + 132, 24 - - $this + + 44 - - 24 + + cBoxNotifications - - 43 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 27 + + panel1 - - lbLastMessage + + 1 - - 55, 22 + + True - - 44 + + NoControl - - lbPad4 + + 13, 165 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - pBStatus4 + + 251, 21 - - True + + 53 - - 1 + + Disconnect from BT when Stopping - - 21 + + cBDisconnectBT - - Control Panel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 4 + + fLPSettings - - 227, 26 + + 5 - - 20 + + nUDLatency - - pnlXIPorts + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1122, 452 - - - tabMain - - - 93, 17 - - - editProfileForController3ToolStripMenuItem - - - True - - - 3 - - - Assign to Controller 2 + + panel2 - - System.Windows.Forms.SaveFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - btnConnectDS4Win10 + + lbMsLatency - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + panel2 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - 116, 21 + + cBFlashWhenLate - - 227, 26 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + panel2 - - 1 + + 2 - - panel2 + + 13, 194 - + 4, 4, 4, 4 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 348, 28 - - + + 57 - - + + panel2 - - NoControl + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + fLPSettings - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - 36, 28 + + Top, Right - - 26 + + 256, 2 - + 4, 4, 4, 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pBStatus3 + + 55, 22 - - True + + 42 - - 36, 28 + + nUDLatency - - + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - fLPSettings + + panel2 - - Scp server + + 0 - - 4, 0, 4, 0 + + Top, Right - - Close Minimizes + + True - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - pNUpdate + + 319, 5 - - 236, 28 + + 4, 0, 4, 0 - - assignToController2ToolStripMenuItem + + 26, 17 - - Microsoft Sans Serif, 9pt, style=Bold + + 0 - - + + ms - - 6, 27 + + lbMsLatency - - Profiles + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + panel2 - - 179, 4 + + 1 - - + + True - - tLPControllers + + NoControl - - MiddleCenter + + 0, 4 - - None + + 4, 4, 4, 4 - - 20 + + 257, 21 - - 24, 18 + + 53 - - 25, 17 + + Flash Lightbar when Latency is over - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cBFlashWhenLate - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 133, 18 + + panel2 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - + + True + + NoControl - - cBController1 + + 13, 230 - - 2 + + 4, 4, 4, 4 - - 510, 26 + + 130, 21 - - 2 + + 55 - - tabMain + + Close Minimizes - - + + cBCloseMini - - bnEditC4 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + fLPSettings - - 41 + + 7 - - Fill + + True - + NoControl - - 42 + + 13, 259 - - True + + 4, 4, 4, 4 - - True + + 116, 21 - - 95, 1 + + 55 - - tabMain + + Quick Charge - - toolStripSeparator2 + + cBQuickCharge - - 227, 26 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top, Right + + fLPSettings - - False + + 8 - + True - - 5 - - - linkSetup + + NoControl - - 40 + + 13, 288 - - cBUpdate + + 4, 4, 4, 4 - - 0 + + 273, 21 - - 4, 0, 4, 0 + + 41 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Download Language Pack with Update - - 4, 0, 4, 0 + + cBDownloadLangauge - - Controller 3 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + fLPSettings - + 9 - - panel1 - - - - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - None - - - 4, 51 + + True - - Clear + + NoControl - - Fill + + 13, 317 - - exportToolStripMenuItem + + 4, 4, 4, 4 - - Microsoft Sans Serif, 9pt, style=Bold + + 213, 21 - - Assign to Controller 4 + + 41 Check for Updates at Startup - - 882, 131 + + cBUpdate - - + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tSBSaveProfile + + fLPSettings - - 16 + + 10 - - ID + + cBUpdateTime - - 6 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top + + pNUpdate - - 43 + + 0 - - 4, 4, 4, 4 + + lbCheckEvery - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnLight4 + + pNUpdate - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - Bottom + + nUDUpdateTime - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 213, 21 + + pNUpdate - - 0, 162 + + 2 - - 4, 4, 4, 4 + + False - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13, 346 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - MiddleCenter + + 236, 28 - - 6 + + 43 - - 203, 56 + + pNUpdate - - Flat + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tLPControllers + + fLPSettings - - 4, 4, 4, 4 + + 11 - - 2 + + Top, Right - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + hours - - tLPControllers + + days - - bnLight2 + + 158, 0 - - 262, 26 + + 4, 4, 4, 4 - - panel2 + + 74, 24 - - 100% + + 43 - - lnkControllers + + cBUpdateTime - - 4, 4, 4, 4 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + pNUpdate - - DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.4.0, Culture=neutral, PublicKeyToken=null + + 0 - - 4, 135 + + Left - - 50 + + True - - + + NoControl - - exitToolStripMenuItem + + 4, 4 - - 1082, 22 - - - 0, 0 - - - 13, 100 - - - 13, 71 - - - lbPad3 + + 4, 0, 4, 0 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 86, 17 - - 50 + + 0 - - Fill + + Check every - - Status + + lbCheckEvery - - Bottom, Right + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1028, 94 + + pNUpdate 1 - - 0, 481 + + Top, Right - - bnLight3 + + 95, 1 - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - + + 55, 22 - - Start + + 42 - - lbMsLatency + + nUDUpdateTime - - editProfileForController1ToolStripMenuItem + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - fLPSettings + + pNUpdate - - 76, 24 + + 2 - - Edit + + lbUseXIPorts - - + + System.Windows.Forms.Label, 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 + + pnlXIPorts - - NoControl + + 0 - - 510, 134 + + nUDXIPorts - - + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1082, 130 + + pnlXIPorts - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - Import + + lbLastXIPort - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - None + + pnlXIPorts - - 85, 18 + + 2 - - 4, 4, 4, 4 + + 13, 382 - - toolStrip1 + + 4, 4, 4, 4 - - 1 + + 232, 28 - - NoControl + + 44 - - + + pnlXIPorts - - Magenta + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + fLPSettings - - cBFlashWhenLate + + 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Left - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - + NoControl - - 13 + + 4, 4 - - + + 4, 0, 4, 0 - - Assign to Controller 3 + + 114, 17 - - True + + 0 - - 42 + + Use Xinput Ports - - True + + lbUseXIPorts - - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - DS4Form + + pnlXIPorts - - NoControl + + 0 - - 4, 25 + + Top, Right - - 256, 2 + + 116, 1 - - toolStripSeparator1 + + 4, 4, 4, 4 - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 55, 22 - - tLPControllers + + 42 - - 55 + + nUDXIPorts - - 273, 21 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + pnlXIPorts - - Profile Options - - - 47 - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - tLPControllers + + Top, Right - + True - - 10 + + NoControl - - 812, 11 + + 179, 4 - - 12 + + 4, 0, 4, 0 - - True + + 25, 17 - - 4, 4, 4, 4 + + 0 - - 14 + + - 4 - - NoControl - - - 4, 0, 4, 0 + + lbLastXIPort - - 4, 4, 4, 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + pnlXIPorts - - 743, 63 + + 2 - - + + True - - NoControl + + linkProfiles - - saveProfiles + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 44 + + flowLayoutPanel1 - - tabControllers + + 0 - - lbBatt4 + + lnkControllers - + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Magenta + + flowLayoutPanel1 - - + + 1 - - <type profile name here> + + linkUninstall - - Left + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + flowLayoutPanel1 - - False + + 2 - - 4, 4, 4, 4 + + linkSetup - - 4, 0 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 23 + + flowLayoutPanel1 - - 10 + + 3 - - tLPControllers + + lLBUpdate - - 45 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Left + + flowLayoutPanel1 - - 88, 17 + + 4 - - 4, 4, 4, 4 + + TopDown - - 4, 4, 4, 4 + + 369, 13 - - 13, 288 + + 4, 4, 4, 4 - - 141, 17 + + 160, 85 - - tLPControllers + + 56 - - 4, 4, 4, 4 + + flowLayoutPanel1 - - bnEditC2 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + fLPSettings - - 13, 230 + + 13 - - 138, 24 + + True - - 1130, 38 + + NoControl - - 129, 17 + + 4, 0 - - lbBatt3 + + 4, 0, 4, 0 - - tabLog + + 88, 17 - - DS4Windows + + 50 - - editToolStripMenuItem + + Profile folder - - 160, 85 + + linkProfiles - - Cancel + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 25 + + flowLayoutPanel1 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - 45, 18 + + True - + NoControl - - tLPControllers + + 4, 17 - + 4, 0, 4, 0 - - Flat - - - 47 + + 93, 17 - - Connect DS4 exclusivly (experimental) + + 11 - - Left + + Control Panel - - 13, 165 + + lnkControllers - - 13, 129 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cMCustomLed + + flowLayoutPanel1 - - 0 + + 1 - - + + True - - 4, 4, 4, 4 + + NoControl - - 4, 4, 4, 4 + + 4, 34 - - + + 4, 0, 4, 0 - - btnStartStop + + 141, 17 - - 45, 18 + + 44 - - 4, 58 + + Uninstall VBus Driver - - Top, Right + + MiddleCenter - - tLPControllers + + linkUninstall - - useCustomColorToolStripMenuItem + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + flowLayoutPanel1 - - Assign to Controller 1 + + 2 - - pNUpdate + + True - - tLPControllers + + NoControl - - 4, 4, 4, 4 + + 4, 51 - - NoControl + + 4, 0, 4, 0 - - + + 152, 17 - - 41 + + 52 - - Uninstall VBus Driver + + Controller/Driver Setup - - Controllers + + linkSetup - - 47 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lBProfiles + + flowLayoutPanel1 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - 4, 4, 4, 4 + + True - - ms + + NoControl - + + 4, 68 + + 4, 0, 4, 0 - - + + 149, 17 - - Magenta + + 49 + + + Check for Update Now + + + MiddleCenter + + + lLBUpdate + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 4 - - 339, 17 - - - 788, 17 - - - True - - - 226, 17 - - - 1110, 17 - 673, 17 - - ru-RU - - - 891, 17 - - - 449, 17 - - - 17, 17 - + + XML Files (*.xml)|*.xml + 997, 17 + + 1110, 17 + + + 203, 56 + + + cMCustomLed + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 202, 26 + + + Use Profile Color + + + 202, 26 + + + Use Custom Color + 1264, 17 - - 568, 17 + + True + + 120, 120 + + + 1130, 519 + + + 4, 4, 4, 4 + + + 570, 277 + + + DS4Windows + + + chTime + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + chData + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tmrUpdate + + + System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + notifyIcon1 + + + System.Windows.Forms.NotifyIcon, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + editProfileForController1ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + editProfileForController2ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + editProfileForController3ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + editProfileForController4ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + toolStripSeparator1 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + startToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + openToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + exitToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + toolStripSeparator2 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + openProfiles + + + System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + editToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + assignToController1ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + assignToController2ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + assignToController3ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + assignToController4ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + deleteToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + duplicateToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + newProfileToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + importToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + exportToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + toolStripLabel1 + + + System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSTBProfile + + + System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSBSaveProfile + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSBCancel + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + toolStripSeparator3 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSBKeepSize + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsBNewProfle + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsBEditProfile + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsBDeleteProfile + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSBDupProfile + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSBImportProfile + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSBExportProfile + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + saveProfiles + + + System.Windows.Forms.SaveFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + toolTip1 + + + System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + useProfileColorToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + useCustomColorToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + advColorDialog + + + DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.401.0, Culture=neutral, PublicKeyToken=null + + + DS4Form + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/DS4Form.ru-RU.resx b/DS4Windows/DS4Forms/DS4Form.ru-RU.resx index 6dcbec778e..ad2dbf834d 100644 --- a/DS4Windows/DS4Forms/DS4Form.ru-RU.resx +++ b/DS4Windows/DS4Forms/DS4Form.ru-RU.resx @@ -6372,16 +6372,16 @@ Эксклюзивное подключение DS4 (эксперементально) - 1089, 94 + 1085, 94 - 29, 28 + 33, 28 - 441, 26 + 438, 26 - 952, 94 + 948, 94 129, 28 @@ -6390,7 +6390,7 @@ Редактировать - 952, 130 + 948, 130 129, 28 @@ -6399,10 +6399,10 @@ Редактировать - 786, 24 + 782, 23 - 952, 58 + 948, 58 129, 28 @@ -6411,13 +6411,13 @@ Редактировать - 786, 60 + 782, 59 - 786, 96 + 782, 95 - 952, 22 + 948, 22 129, 28 @@ -6426,10 +6426,10 @@ Редактировать - 786, 132 + 782, 131 - 766, 0 + 762, 0 178, 18 @@ -6444,7 +6444,7 @@ ID устройства: - 385, 0 + 382, 0 151, 18 @@ -6453,7 +6453,7 @@ Тип подключения: - 606, 0 + 602, 0 118, 18 @@ -6462,43 +6462,43 @@ аккумулятора - 642, 27 + 639, 27 - 642, 63 + 639, 63 - 642, 99 + 639, 99 - 642, 135 + 639, 135 - 441, 62 + 438, 62 - 441, 98 + 438, 98 - 441, 134 + 438, 134 - 1089, 22 + 1085, 22 - 29, 28 + 33, 28 - 1089, 58 + 1085, 58 - 29, 28 + 33, 28 - 1089, 130 + 1085, 130 - 29, 28 + 33, 28 Контроллеры не подключены (не больше четырёх) @@ -6717,10 +6717,10 @@ 418, 5 - 360, 21 + 356, 21 - Вспышка световой панели при высокой задержке + Мигание световой панели при высокой задержке 447, 28 @@ -6789,10 +6789,10 @@ 262, 22 - 203, 17 + 198, 17 - Показать папку с профилями + Открыть папку с профилями 218, 17 diff --git a/DS4Windows/DS4Forms/Hotkeys.Designer.cs b/DS4Windows/DS4Forms/Hotkeys.Designer.cs index 4c8302ef16..9f8f836fd2 100644 --- a/DS4Windows/DS4Forms/Hotkeys.Designer.cs +++ b/DS4Windows/DS4Forms/Hotkeys.Designer.cs @@ -41,24 +41,30 @@ private void InitializeComponent() this.lbHotkeys = new System.Windows.Forms.Label(); this.tPCredits = new System.Windows.Forms.TabPage(); this.tLPTranslators = new System.Windows.Forms.TableLayoutPanel(); - this.lbGerman = new System.Windows.Forms.Label(); + this.lbes = new System.Windows.Forms.Label(); + this.lbSpanishT = new System.Windows.Forms.Label(); + this.lbpl = new System.Windows.Forms.Label(); + this.lbPolishT = new System.Windows.Forms.Label(); + this.lbde = new System.Windows.Forms.Label(); this.lbGermanT = new System.Windows.Forms.Label(); this.lbItalianT = new System.Windows.Forms.Label(); - this.lbItalian = new System.Windows.Forms.Label(); - this.lbRussian = new System.Windows.Forms.Label(); + this.lbitIT = new System.Windows.Forms.Label(); + this.lbruRU = new System.Windows.Forms.Label(); this.lbRussianT = new System.Windows.Forms.Label(); - this.lbRomanian = new System.Windows.Forms.Label(); + this.lbroRO = new System.Windows.Forms.Label(); this.lbRomanianT = new System.Windows.Forms.Label(); - this.lbTurkish = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.lbChineseS = new System.Windows.Forms.Label(); + this.lbtr = new System.Windows.Forms.Label(); + this.lbTurkishT = new System.Windows.Forms.Label(); + this.lbzhHans = new System.Windows.Forms.Label(); this.lbChineseST = new System.Windows.Forms.Label(); - this.lbChineseT = new System.Windows.Forms.Label(); + this.lbzhHant = new System.Windows.Forms.Label(); this.lbChineseTT = new System.Windows.Forms.Label(); - this.lbArabic = new System.Windows.Forms.Label(); + this.lbar = new System.Windows.Forms.Label(); this.lbArabicT = new System.Windows.Forms.Label(); - this.lbHebrew = new System.Windows.Forms.Label(); + this.lbhe = new System.Windows.Forms.Label(); this.lbHebrewT = new System.Windows.Forms.Label(); + this.lbfrFR = new System.Windows.Forms.Label(); + this.lbFrenchT = new System.Windows.Forms.Label(); this.lbTranslators = new System.Windows.Forms.Label(); this.linkSourceCode = new System.Windows.Forms.LinkLabel(); this.lbLinkText = new System.Windows.Forms.Label(); @@ -117,9 +123,9 @@ private void InitializeComponent() // // tCAbout // - resources.ApplyResources(this.tCAbout, "tCAbout"); this.tCAbout.Controls.Add(this.tPHotkeys); this.tCAbout.Controls.Add(this.tPCredits); + resources.ApplyResources(this.tCAbout, "tCAbout"); this.tCAbout.Name = "tCAbout"; this.tCAbout.SelectedIndex = 0; // @@ -137,7 +143,6 @@ private void InitializeComponent() // // tPCredits // - resources.ApplyResources(this.tPCredits, "tPCredits"); this.tPCredits.Controls.Add(this.tLPTranslators); this.tPCredits.Controls.Add(this.lbTranslators); this.tPCredits.Controls.Add(this.linkElectro); @@ -146,36 +151,63 @@ private void InitializeComponent() this.tPCredits.Controls.Add(this.linkJays2Kings); this.tPCredits.Controls.Add(this.linkJhebbel); this.tPCredits.Controls.Add(this.linkInhexSTER); + resources.ApplyResources(this.tPCredits, "tPCredits"); this.tPCredits.Name = "tPCredits"; this.tPCredits.UseVisualStyleBackColor = true; // // tLPTranslators // resources.ApplyResources(this.tLPTranslators, "tLPTranslators"); - this.tLPTranslators.Controls.Add(this.lbGerman, 0, 0); + this.tLPTranslators.Controls.Add(this.lbes, 0, 11); + this.tLPTranslators.Controls.Add(this.lbSpanishT, 0, 11); + this.tLPTranslators.Controls.Add(this.lbpl, 0, 10); + this.tLPTranslators.Controls.Add(this.lbPolishT, 0, 10); + this.tLPTranslators.Controls.Add(this.lbde, 0, 0); this.tLPTranslators.Controls.Add(this.lbGermanT, 1, 0); this.tLPTranslators.Controls.Add(this.lbItalianT, 1, 1); - this.tLPTranslators.Controls.Add(this.lbItalian, 0, 1); - this.tLPTranslators.Controls.Add(this.lbRussian, 0, 2); + this.tLPTranslators.Controls.Add(this.lbitIT, 0, 1); + this.tLPTranslators.Controls.Add(this.lbruRU, 0, 2); this.tLPTranslators.Controls.Add(this.lbRussianT, 1, 2); - this.tLPTranslators.Controls.Add(this.lbRomanian, 0, 3); + this.tLPTranslators.Controls.Add(this.lbroRO, 0, 3); this.tLPTranslators.Controls.Add(this.lbRomanianT, 1, 3); - this.tLPTranslators.Controls.Add(this.lbTurkish, 0, 4); - this.tLPTranslators.Controls.Add(this.label2, 1, 4); - this.tLPTranslators.Controls.Add(this.lbChineseS, 0, 5); + this.tLPTranslators.Controls.Add(this.lbtr, 0, 4); + this.tLPTranslators.Controls.Add(this.lbTurkishT, 1, 4); + this.tLPTranslators.Controls.Add(this.lbzhHans, 0, 5); this.tLPTranslators.Controls.Add(this.lbChineseST, 1, 5); - this.tLPTranslators.Controls.Add(this.lbChineseT, 0, 6); + this.tLPTranslators.Controls.Add(this.lbzhHant, 0, 6); this.tLPTranslators.Controls.Add(this.lbChineseTT, 1, 6); - this.tLPTranslators.Controls.Add(this.lbArabic, 0, 7); + this.tLPTranslators.Controls.Add(this.lbar, 0, 7); this.tLPTranslators.Controls.Add(this.lbArabicT, 1, 7); - this.tLPTranslators.Controls.Add(this.lbHebrew, 0, 8); + this.tLPTranslators.Controls.Add(this.lbhe, 0, 8); this.tLPTranslators.Controls.Add(this.lbHebrewT, 1, 8); + this.tLPTranslators.Controls.Add(this.lbfrFR, 0, 9); + this.tLPTranslators.Controls.Add(this.lbFrenchT, 1, 9); this.tLPTranslators.Name = "tLPTranslators"; // - // lbGerman + // lbes + // + resources.ApplyResources(this.lbes, "lbes"); + this.lbes.Name = "lbes"; + // + // lbSpanishT + // + resources.ApplyResources(this.lbSpanishT, "lbSpanishT"); + this.lbSpanishT.Name = "lbSpanishT"; + // + // lbpl // - resources.ApplyResources(this.lbGerman, "lbGerman"); - this.lbGerman.Name = "lbGerman"; + resources.ApplyResources(this.lbpl, "lbpl"); + this.lbpl.Name = "lbpl"; + // + // lbPolishT + // + resources.ApplyResources(this.lbPolishT, "lbPolishT"); + this.lbPolishT.Name = "lbPolishT"; + // + // lbde + // + resources.ApplyResources(this.lbde, "lbde"); + this.lbde.Name = "lbde"; // // lbGermanT // @@ -187,81 +219,91 @@ private void InitializeComponent() resources.ApplyResources(this.lbItalianT, "lbItalianT"); this.lbItalianT.Name = "lbItalianT"; // - // lbItalian + // lbitIT // - resources.ApplyResources(this.lbItalian, "lbItalian"); - this.lbItalian.Name = "lbItalian"; + resources.ApplyResources(this.lbitIT, "lbitIT"); + this.lbitIT.Name = "lbitIT"; // - // lbRussian + // lbruRU // - resources.ApplyResources(this.lbRussian, "lbRussian"); - this.lbRussian.Name = "lbRussian"; + resources.ApplyResources(this.lbruRU, "lbruRU"); + this.lbruRU.Name = "lbruRU"; // // lbRussianT // resources.ApplyResources(this.lbRussianT, "lbRussianT"); this.lbRussianT.Name = "lbRussianT"; // - // lbRomanian + // lbroRO // - resources.ApplyResources(this.lbRomanian, "lbRomanian"); - this.lbRomanian.Name = "lbRomanian"; + resources.ApplyResources(this.lbroRO, "lbroRO"); + this.lbroRO.Name = "lbroRO"; // // lbRomanianT // resources.ApplyResources(this.lbRomanianT, "lbRomanianT"); this.lbRomanianT.Name = "lbRomanianT"; // - // lbTurkish + // lbtr // - resources.ApplyResources(this.lbTurkish, "lbTurkish"); - this.lbTurkish.Name = "lbTurkish"; + resources.ApplyResources(this.lbtr, "lbtr"); + this.lbtr.Name = "lbtr"; // - // label2 + // lbTurkishT // - resources.ApplyResources(this.label2, "label2"); - this.label2.Name = "label2"; + resources.ApplyResources(this.lbTurkishT, "lbTurkishT"); + this.lbTurkishT.Name = "lbTurkishT"; // - // lbChineseS + // lbzhHans // - resources.ApplyResources(this.lbChineseS, "lbChineseS"); - this.lbChineseS.Name = "lbChineseS"; + resources.ApplyResources(this.lbzhHans, "lbzhHans"); + this.lbzhHans.Name = "lbzhHans"; // // lbChineseST // resources.ApplyResources(this.lbChineseST, "lbChineseST"); this.lbChineseST.Name = "lbChineseST"; // - // lbChineseT + // lbzhHant // - resources.ApplyResources(this.lbChineseT, "lbChineseT"); - this.lbChineseT.Name = "lbChineseT"; + resources.ApplyResources(this.lbzhHant, "lbzhHant"); + this.lbzhHant.Name = "lbzhHant"; // // lbChineseTT // resources.ApplyResources(this.lbChineseTT, "lbChineseTT"); this.lbChineseTT.Name = "lbChineseTT"; // - // lbArabic + // lbar // - resources.ApplyResources(this.lbArabic, "lbArabic"); - this.lbArabic.Name = "lbArabic"; + resources.ApplyResources(this.lbar, "lbar"); + this.lbar.Name = "lbar"; // // lbArabicT // resources.ApplyResources(this.lbArabicT, "lbArabicT"); this.lbArabicT.Name = "lbArabicT"; // - // lbHebrew + // lbhe // - resources.ApplyResources(this.lbHebrew, "lbHebrew"); - this.lbHebrew.Name = "lbHebrew"; + resources.ApplyResources(this.lbhe, "lbhe"); + this.lbhe.Name = "lbhe"; // // lbHebrewT // resources.ApplyResources(this.lbHebrewT, "lbHebrewT"); this.lbHebrewT.Name = "lbHebrewT"; // + // lbfrFR + // + resources.ApplyResources(this.lbfrFR, "lbfrFR"); + this.lbfrFR.Name = "lbfrFR"; + // + // lbFrenchT + // + resources.ApplyResources(this.lbFrenchT, "lbFrenchT"); + this.lbFrenchT.Name = "lbFrenchT"; + // // lbTranslators // resources.ApplyResources(this.lbTranslators, "lbTranslators"); @@ -317,24 +359,30 @@ private void InitializeComponent() private System.Windows.Forms.Label lbTranslators; private System.Windows.Forms.Label lbHotkeys; private System.Windows.Forms.TableLayoutPanel tLPTranslators; - private System.Windows.Forms.Label lbGerman; + private System.Windows.Forms.Label lbde; private System.Windows.Forms.Label lbGermanT; private System.Windows.Forms.Label lbItalianT; - private System.Windows.Forms.Label lbItalian; - private System.Windows.Forms.Label lbRussian; + private System.Windows.Forms.Label lbitIT; + private System.Windows.Forms.Label lbruRU; private System.Windows.Forms.Label lbRussianT; private System.Windows.Forms.Label lbLinkText; - private System.Windows.Forms.Label lbRomanian; + private System.Windows.Forms.Label lbroRO; private System.Windows.Forms.Label lbRomanianT; - private System.Windows.Forms.Label lbTurkish; - private System.Windows.Forms.Label label2; - private System.Windows.Forms.Label lbChineseS; + private System.Windows.Forms.Label lbtr; + private System.Windows.Forms.Label lbTurkishT; + private System.Windows.Forms.Label lbzhHans; private System.Windows.Forms.Label lbChineseST; - private System.Windows.Forms.Label lbChineseT; + private System.Windows.Forms.Label lbzhHant; private System.Windows.Forms.Label lbChineseTT; - private System.Windows.Forms.Label lbArabic; + private System.Windows.Forms.Label lbar; private System.Windows.Forms.Label lbArabicT; - private System.Windows.Forms.Label lbHebrew; + private System.Windows.Forms.Label lbhe; private System.Windows.Forms.Label lbHebrewT; + private System.Windows.Forms.Label lbes; + private System.Windows.Forms.Label lbSpanishT; + private System.Windows.Forms.Label lbpl; + private System.Windows.Forms.Label lbPolishT; + private System.Windows.Forms.Label lbfrFR; + private System.Windows.Forms.Label lbFrenchT; } } \ No newline at end of file diff --git a/DS4Windows/DS4Forms/Hotkeys.cs b/DS4Windows/DS4Forms/Hotkeys.cs index 0f1705dd0a..4cf1a016bf 100644 --- a/DS4Windows/DS4Forms/Hotkeys.cs +++ b/DS4Windows/DS4Forms/Hotkeys.cs @@ -13,11 +13,15 @@ public partial class Hotkeys : Form public Hotkeys() { InitializeComponent(); - /* switch (Thread.CurrentThread.CurrentUICulture.ToString()) + string s = Thread.CurrentThread.CurrentUICulture.ToString().Split('-')[0]; + + Control[] ctrls = tLPTranslators.Controls.Find("lb" + s, true); + if (ctrls.Length > 0) { - case "ar": lbArabic.ForeColor = Color.Green; break; - case "de-DE": lbGerman.ForeColor = Color.Green; break; - }*/ + ((Label)ctrls[0]).ForeColor = Color.DarkGreen; + int ind = tLPTranslators.Controls.IndexOf(ctrls[0]) + 1; + ((Label)tLPTranslators.Controls[ind]).ForeColor = Color.DarkGreen; + } FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location); string version = fvi.FileVersion; lbAbout.Text += version + ")"; diff --git a/DS4Windows/DS4Forms/Hotkeys.fr-FR.resx b/DS4Windows/DS4Forms/Hotkeys.fr-FR.resx index 510a588a0b..c867eece25 100644 --- a/DS4Windows/DS4Forms/Hotkeys.fr-FR.resx +++ b/DS4Windows/DS4Forms/Hotkeys.fr-FR.resx @@ -119,82 +119,178 @@ - 528, 19 + 652, 19 7, 3 - 103, 13 + 136, 17 Liste de nouveautés - 421, 3 + 540, 2 - 103, 13 + 104, 17 - Donation via PayPal + Don via PayPal - 497, 505 + 615, 505 - Cacher manette DS4: Cacher les entrées de base (Dinput) de la DS4 de la vérification des autres programmes si vous observez des entrées doubles en plein jeu ou si R2 met le jeu en pause + Cacher manette DS4: Cache les entrées de base (Dinput) de la DS4 de la vérification des autres programmes, cochez si vous observez des entrées doubles en jeu ou si R2 met le jeu en pause Cliquez sur le côté gauche du pavé tactile: Left Touch Cliquez sur le côté droit du pavé tactile: Right Touch Cliquez sur le pavé tactile avec 2 doigts: Multitouch Cliquez sur la partie supérieure du pavé tactile: Upper Touch PS + Options ou maintenir PS pendant 10 secondes: Déconnecter la manette (Bluetooth seulement) Pavé tactile + PS: Désactiver les glissements sur le pavé tactile (le clique fonctionne toujours) -Clic sur la partie inférieure et droite du pavé tactile*: Clic droit (conseillé d'utiliser quand le côté droit est utilisé comme bouton de souris) +Clic sur la partie inférieure droite du pavé tactile*: Clic droit (conseillé d'utiliser quand le côté droit est utilisé comme bouton de souris) Deux doigts haut/bas sur la pavé tactile*: Défiler vers le Haut/Bas Appuyer puis maintenir le pavé tactile*: Glisser du clic gauche de la souris -Glisser gauche ou droit avec 2 doigts sur le pavé tactile*: Cycle through profiles +Glisser avec 2 doigts gauche ou droit sur le pavé tactile*: Cycle through profiles Shift Modifer: Maintenir une action pour utiliser un autre ensemble de commandes Pendant que vous configurez le clavier et la souris: Toggle: La touche restera dans un état "enfoncée" tant qu'elle n'aura pas été pressée une nouvelle fois Macro: Assigner plusieurs touches à une entrée -Scan du code: Les touches sont interprétées différemment. Peut-être nécessaire pour certains jeux +Scan du code: Les touches sont interprétées différemment. Peut être nécessaire pour certains jeux *Si Activé - 520, 384 + 644, 421 + + + Raccourcis + + + 3, 230 + + + 162, 230 + + + 3, 210 + + + 100, 20 + + + 162, 210 + + + 100, 20 + + + 573, 21 + + + 163, 21 + + + 573, 21 + + + 4, 21 + + + 4, 42 + + + 163, 42 + + + 573, 21 + + + 4, 63 + + + 163, 63 + + + 573, 21 + + + 4, 84 + + + 163, 84 + + + 573, 21 + + + 4, 105 + + + 163, 105 + + + 4, 126 + + + 163, 126 + + + 4, 147 + + + 163, 147 + + + 4, 168 + + + 163, 168 + + + 3, 189 + + + 100, 21 + + + 162, 189 + + + 100, 21 - 3, 110 + 4, 142 - 514, 258 + 636, 258 + + + 8, 195 - 64, 13 + 85, 17 Traducteurs - 3, 368 + 4, 400 - 520, 384 + 644, 421 + + + Crédits 0, 19 - 528, 410 + 652, 450 - 528, 429 - - - Crédits - - - Raccourcis + 652, 469 \ No newline at end of file diff --git a/DS4Windows/DS4Forms/Hotkeys.resx b/DS4Windows/DS4Forms/Hotkeys.resx index 93e2fa1121..b449c85cf8 100644 --- a/DS4Windows/DS4Forms/Hotkeys.resx +++ b/DS4Windows/DS4Forms/Hotkeys.resx @@ -117,208 +117,250 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + - - 748, 474 + + 8, 58 - - CenterParent + + 4, 0, 4, 0 - - tLPTranslators + + 201, 17 - - lbArabic + + 18 - - - 13 + + electrobrains (Branched off of) - + + linkElectro + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tPCredits - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 756, 27 + + True - - tLPTranslators + + 8, 4 - - 22 + + 4, 0, 4, 0 - - Jan-Stefan Janetzky, Michél, Ammonjak, An Op Turk - @Invariant - - tLPTranslators + + 80, 17 - - tLPTranslators + + 18 - - 16 + + Jays2Kings + + + linkJays2Kings + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPCredits + + + 5 + + + Top Microsoft Sans Serif, 8.25pt, style=Bold - - Syaoran Domoto + + 0, 0 + + + 4, 0, 4, 0 + + + 756, 27 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DS4Windows - Jays2Kings Build (Version - - 2 + + MiddleCenter + + + lbAbout - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbRussian + + $this - - 4, 189 + + 3 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - NoControl + + 8, 31 - - lbAbout + + 4, 0, 4, 0 - - 2 + + 210, 17 - - tLPTranslators + + 18 InhexSTER (Starter of DS4Tool) - @Invariant - - 3 - - True + + linkInhexSTER System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this + + tPCredits - - $this + + 7 - - 23 + + True - - 16 + + 8, 85 - + 4, 0, 4, 0 - - 4 + + 115, 17 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 18 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + jhebbel (DSDCS) - - 210, 17 + + linkJhebbel - - 4, 4, 4, 4 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 42, 17 + + tPCredits - - 8, 58 + + 6 - - tLPTranslators + + True - - 19 + + 9, 6 - - tLPTranslators + + 4, 0, 4, 0 - - NoControl + + 76, 17 - - Help - @Invariant - - linkJays2Kings + + 20 - - 740, 277 + + Changelog - - 27 + + lLChangelog - - Chinese (Traditional) + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - DS4Windows - Jays2Kings Build (Version + + $this - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - 7 + + Top, Right - + True - - True + + 625, 6 - - 17 + + 4, 0, 4, 0 - - Links displayed here - @Invariant - - NoControl + + 123, 17 - - NoControl + + 21 - - tLPTranslators + + Donate via Paypal - - 1 + + linkDonate - - 85, 17 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + $this + + + 0 + + + True + + + Top + + + NoControl + + + 4, 4 + + 4, 0, 4, 0 - - tLPTranslators + + 719, 559 - + + 3 + + Hide DS4 Controller: Hides the DS4's regular input (Dinput) from other programs, check if you are getting double input in games or R2 pauses games Click left side of touchpad: Left Touch @@ -353,910 +395,1045 @@ Scan Code: Keys are interpreted differently. May be needed for certain games *If enabled - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tCAbout + + lbHotkeys - - 625, 6 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18 + + tPHotkeys - - True + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 25 - - 72, 17 + + 4, 4, 4, 4 - - 4, 0, 4, 0 + + 4, 4, 4, 4 - - 13 + + 748, 474 0 - - 4, 4, 4, 4 + + Hotkeys - - 163, 54 + + tPHotkeys - - 9 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8, 16 + + tCAbout - - 163, 135 + + 0 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - + True - - Jays2Kings - @Invariant - - 13 + + 3, 253 - - tPCredits + + 114, 17 - - Credits + + 0 - - 4, 0, 4, 0 + + Spanish/Español - - 4, 0, 4, 0 + + lbes - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + tLPTranslators + + 0 - - tPCredits + + True - - lbItalian + + 180, 253 - - avi12 + + 56, 17 - - lbChineseT + + 1 - - 163, 108 + + Saikuro - - 138, 17 + + lbSpanishT - - 4, 4, 4, 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + tLPTranslators - - tPCredits + + 1 - - Bottom + + True - - tPCredits + + 3, 230 - - 4, 176 + + 86, 17 - - True + + 2 - - 25 + + Polish/ polski - - True + + lbpl - - 4, 25 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18 + + tLPTranslators - - lbChineseS + + 2 - - 133, 17 + + True - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 180, 230 - - True + + 188, 17 - - 18 + + 3 - - NoControl + + FlameMan, NoNick1337, vhs - - NoControl + + lbPolishT - - 4, 25 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this + + tLPTranslators - - Italian/Italiano - @Invariant - + 3 - - 0 + + True - - 114, 17 + + NoControl - - lbArabicT + + 4, 0 - + 4, 0, 4, 0 - - NoControl + + 115, 17 - - 0, 0 + + 13 - - 756, 503 + + German/Deutsch - - NoControl + + lbde - - Giulio - @Invariant - - KoNoRIMCI, Sr_psycho - @Invariant - - System.Windows.Forms.LinkLabel, 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 - - Donate via Paypal + + tLPTranslators - + + 4 + + True - - tLPTranslators + + Fill - - 670, 516 + + NoControl - - 573, 27 + + 181, 0 - + 4, 0, 4, 0 - - Turkish - @Invariant - - 84, 17 + + 555, 23 - - 4, 0, 4, 0 + + 13 - + + Jan-Stefan Janetzky, Michél, Ammonjak, An Op Turk + + + lbGermanT + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + tLPTranslators - - 1 + + 5 - - lbRomanian + + True - - 163, 0 + + Fill - - 4, 0, 4, 0 + + NoControl - + + 181, 23 + + 4, 0, 4, 0 - - lbLinkText + + 555, 23 - - True + + 13 - - NoControl + + Giulio - - 26 + + lbItalianT - - 17 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tLPTranslators - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - 29, 17 + + True - - 4, 0, 4, 0 + + NoControl - + + 4, 23 + + 4, 0, 4, 0 - - NoControl + + 94, 17 - - 4, 4 + + 13 - + + Italian/Italiano + + + lbitIT + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + tLPTranslators - - tPCredits + + 7 - - lbGerman + + True - - tCAbout + + NoControl - - 4, 135 + + 4, 46 - - linkJhebbel + + 4, 0, 4, 0 - - 2 + + 151, 17 - - Fill + + 13 - - Chinese (Simplified) + + Russian/ру́сский язы́к - - jhebbel (DSDCS) - @Invariant - - 8 + + lbruRU - - System.Windows.Forms.TabPage, 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 - - lbTranslators + + tLPTranslators - - 1 + + 8 - - 573, 27 + + True - - 573, 27 + + Fill - - 5 + + NoControl - - 80, 17 + + 181, 46 - - label2 + + 4, 0, 4, 0 - - Fill + + 555, 23 - - 9, 6 + + 13 - - electrobrains (Branched off of) - @Invariant - - lbHotkeys + + KoNoRIMCI, Sr_psycho - - 4, 0, 4, 0 + + lbRussianT - - Fill + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + tLPTranslators - - 8, 85 + + 9 - - 118, 17 + + True - + NoControl - - True - - - Lütfi Tekin - @Invariant - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="lbGerman" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbGermanT" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbItalianT" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbItalian" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbRussian" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbRussianT" Row="2" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbRomanian" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbRomanianT" Row="3" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbTurkish" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="label2" Row="4" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbChineseS" Row="5" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbChineseST" Row="5" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbChineseT" Row="6" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbChineseTT" Row="6" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbArabic" Row="7" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbArabicT" Row="7" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbHebrew" Row="8" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbHebrewT" Row="8" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="AutoSize,0,AutoSize,0" /><Rows Styles="Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10" /></TableLayoutSettings> + + 4, 69 - - 4, 4, 4, 4 + + 4, 0, 4, 0 - - 94, 17 + + 124, 17 - - lbChineseST + + 16 - - tLPTranslators + + Romanian/ română - - 4, 108 + + lbroRO - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Changelog + + tLPTranslators - - 19 + + 10 - - 13 + + True - - 0 + + Fill - + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - linkInhexSTER + + 181, 69 - + 4, 0, 4, 0 - - 719, 559 - - - 13 + + 555, 23 - - 115, 17 + + 17 - - Romanian - @Invariant - - tLPTranslators + + Vlad Giurgiu, Anonim - - Hotkeys + + lbRomanianT - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 216 - - - Hebrew - - - 0 - - - 4, 4, 4, 4 - - - 10 - - - 163, 189 + + tLPTranslators - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - 13 + + True - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 22 + + 4, 92 - - 15 + + 4, 0, 4, 0 - - 55, 17 + + 103, 17 - - 76, 17 + + 18 - - K.F + + Turkish/Türkçe - - 4, 0, 4, 0 + + lbtr - - lbHebrew + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + tLPTranslators - - NoControl + + 12 - + True - + Fill - - tLPTranslators + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 181, 92 - - Hotkeys + + 4, 0, 4, 0 - - $this + + 555, 23 - - German/Deutsch - @Invariant - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 19 - - Source Code - @Invariant - - 4, 453 + + Lütfi Tekin - - 163, 162 + + lbTurkishT - - 5 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tLPTranslators - - Translators: + + 13 - - 4, 0, 4, 0 + + True - - 7 + + NoControl - - 151, 17 + + 4, 115 - - 573, 27 + + 4, 0, 4, 0 - - 4, 54 + + 169, 17 - - 8, 155 + + 21 - - 4, 0 + + Chinese (Simp.)/中文(简体) - - 3 + + lbzhHans - - 573, 27 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + tLPTranslators + + + 14 - + True - - lbHebrewT + + NoControl - - Bottom + + 181, 115 - - 4, 81 + + 4, 0, 4, 0 - - tLPTranslators + + 118, 17 - - True + + 20 Jonasn J. Lauvlid - - NoControl + + lbChineseST - - System.Windows.Forms.TableLayoutPanel, 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 - - True + + tLPTranslators - + + 15 + + True - - 1 + + NoControl - - 21 + + 4, 138 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 0, 4, 0 - - tLPTranslators + + 165, 17 - - Top + + 23 - - 123, 17 + + Chinese (Trad.)/中文(繁體) - - 4, 4, 4, 4 + + lbzhHant - - 4, 162 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbItalianT + + tLPTranslators - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16 - - NoControl + + True - + NoControl - - 4, 0, 4, 0 - - - lbChineseTT + + 181, 138 - - 2 + + 4, 0, 4, 0 - - 13 + + 114, 17 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22 - - 163, 81 + + Syaoran Domoto - - 18 + + lbChineseTT - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tPCredits - - - 201, 17 + + tLPTranslators - - linkDonate + + 17 - - 14 + + True - + NoControl - + + 4, 161 + + 4, 0, 4, 0 - + + 85, 17 + + + 25 + + Arabic/ العربية - - 115, 17 + + lbar - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + tLPTranslators - - 6 + + 18 - + True - - Russian/ру́сский язы́к - @Invariant - + NoControl - - lbGermanT + + 181, 161 - - 8, 4 + + 4, 0, 4, 0 - - lbRussianT + + 29, 17 - - tPCredits + + 24 - - True + + K.F - - 4, 0, 4, 0 + + lbArabicT - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + tLPTranslators - + + 19 + + True - - lbRomanianT + + NoControl - - linkSourceCode + + 4, 184 - - Fill + + 4, 0, 4, 0 - - 96, 4 + + 95, 17 - - 20 + + 27 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Hebrew/עברית‏ - - NoControl + + lbhe - - 756, 530 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tCAbout + + tLPTranslators - - 4, 0, 4, 0 + + 20 - - 4, 27 + + True NoControl + + 181, 184 + 4, 0, 4, 0 - - 4, 0, 4, 0 + + 42, 17 - - tPHotkeys + + 26 - - NoControl + + avi12 - - True + + lbHebrewT - - 8, 31 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top + + tLPTranslators - + + 21 + + True - - tLPTranslators + + 3, 207 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 110, 17 - - 20 + + 28 - - lbTurkish + + French/Français - - 4, 0, 4, 0 + + lbfrFR - - 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + tLPTranslators + + + 22 + + True - - Fill + + NoControl - + + 180, 207 + + + 163, 17 + + + 29 + + + Morgan Front, alexnader + + + lbFrenchT + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 163, 216 + + tLPTranslators - - 10 + + 23 - - 748, 474 + + Bottom - - 18 + + 4, 176 - - 4, 0, 4, 0 + + 4, 4, 4, 4 - - 163, 27 + + 10 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 740, 277 - - 56, 17 + + 19 - - 4, 0, 4, 0 + + tLPTranslators - + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tPCredits - - MiddleCenter + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="lbes" Row="11" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbSpanishT" Row="11" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbpl" Row="10" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbPolishT" Row="10" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbde" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbGermanT" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbItalianT" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbitIT" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbruRU" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbRussianT" Row="2" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbroRO" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbRomanianT" Row="3" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbtr" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbTurkishT" Row="4" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbzhHans" Row="5" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbChineseST" Row="5" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbzhHant" Row="6" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbChineseTT" Row="6" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbar" Row="7" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbArabicT" Row="7" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbhe" Row="8" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbHebrewT" Row="8" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbfrFR" Row="9" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbFrenchT" Row="9" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="AutoSize,0,AutoSize,0" /><Rows Styles="Percent,8.333333,Percent,8.333333,Percent,8.333333,Percent,8.333333,Percent,8.333333,Percent,8.333333,Percent,8.333333,Percent,8.333333,Percent,8.333333,Percent,8.333333,Percent,8.333333,Percent,8.333333" /></TableLayoutSettings> Bottom, Left - - 24 + + True + + + NoControl + + + 8, 155 + + + 4, 0, 4, 0 + + + 84, 17 + + + 13 + + + Translators: + + + lbTranslators + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPCredits + + + 1 + + + True + + + NoControl + + + 96, 4 + + + 4, 0, 4, 0 90, 17 - - tPHotkeys + + 18 + + + Source Code + + + linkSourceCode + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPCredits + + + 3 + + + True + + + Bottom + + + NoControl + + + 4, 453 4, 0, 4, 0 - - linkElectro + + 138, 17 - - Top, Right + + 13 - - 6 + + Links displayed here - - tLPTranslators + + lbLinkText + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPCredits + + + 4 + + + 4, 25 + + + 4, 4, 4, 4 + + + 4, 4, 4, 4 + + + 748, 474 + + + 1 + + + Credits + + + tPCredits + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tCAbout + + + 1 + + + Fill 0, 27 - - lLChangelog + + 4, 4, 4, 4 - - 140, 17 + + 756, 503 - - 4 + + 22 - - 21 + + tCAbout - - Vlad Giurgiu, Anonim - @Invariant - - 4, 0, 4, 0 + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18 + + $this - - 0 + + 2 True - - vi - + + 8, 16 + + + 756, 530 + + + 4, 4, 4, 4 + + + 670, 516 + + + CenterParent + + + Help + + + Hotkeys + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/Hotkeys.vi.resx b/DS4Windows/DS4Forms/Hotkeys.vi.resx index e40cadf78a..9e349b0259 100644 --- a/DS4Windows/DS4Forms/Hotkeys.vi.resx +++ b/DS4Windows/DS4Forms/Hotkeys.vi.resx @@ -133,6 +133,9 @@ Quyên góp qua Paypal + + Phím nóng + Giấu DS4 Controller: Ngăn tín hiệu Dinput của DS4 đọc bởi các chuơng trình khác, chọn trong trường hợp bị nhân đôi tín hiệu hoặc nút R2 làm dừng game. Nhấn bên trái touchpad: Left Touch @@ -151,16 +154,82 @@ Toggle: phím sẽ giữ trạng thái nhấn đến khi được nhấn lần n Macro: Gán nhiều lệnh cho một phím bấm + + Công bởi + + + 100, 20 + + + 100, 20 + + + 573, 23 + + + 163, 23 + + + 573, 23 + + + 4, 23 + + + 4, 46 + + + 163, 46 + + + 573, 23 + + + 4, 69 + + + 163, 69 + + + 573, 23 + + + 4, 92 + + + 163, 92 + + + 573, 23 + + + 4, 115 + + + 163, 115 + + + 4, 138 + + + 163, 138 + + + 4, 161 + + + 163, 161 + + + 4, 184 + + + 163, 184 + - 89, 17 + 47, 17 N.M.D - - Công bởi - - - Phím nóng - \ No newline at end of file diff --git a/DS4Windows/DS4Forms/KBM360.de-DE.resx b/DS4Windows/DS4Forms/KBM360.de-DE.resx index 40c1b6e0b7..20c61b6e87 100644 --- a/DS4Windows/DS4Forms/KBM360.de-DE.resx +++ b/DS4Windows/DS4Forms/KBM360.de-DE.resx @@ -211,4 +211,25 @@ 431, 279 + + Test + + + Zu Verschiebenen Trigger Auswählen + + + Extras + + + B + + + G + + + R + + + Regulär + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/KBM360.fr-FR.resx b/DS4Windows/DS4Forms/KBM360.fr-FR.resx index 636e938bcd..5803a2a12c 100644 --- a/DS4Windows/DS4Forms/KBM360.fr-FR.resx +++ b/DS4Windows/DS4Forms/KBM360.fr-FR.resx @@ -214,4 +214,22 @@ R + + Selection Gachette Shift + + + Basculer entre + + + Extras + + + Macro activé, Choisir une touche a désactiver, ou fermer la fenêtre pour sauvegarder + + + Normale + + + Modification de Shift + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/KBM360.ru-RU.resx b/DS4Windows/DS4Forms/KBM360.ru-RU.resx index 0eb6b2d95d..9c7d844a4a 100644 --- a/DS4Windows/DS4Forms/KBM360.ru-RU.resx +++ b/DS4Windows/DS4Forms/KBM360.ru-RU.resx @@ -228,4 +228,10 @@ Режим Сдвига + + Выбрать кнопку для Режима Сдвига + + + Обычний + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/Options.Designer.cs b/DS4Windows/DS4Forms/Options.Designer.cs index 5b7dc27bf6..4e71cdce68 100644 --- a/DS4Windows/DS4Forms/Options.Designer.cs +++ b/DS4Windows/DS4Forms/Options.Designer.cs @@ -75,6 +75,8 @@ private void InitializeComponent() this.nUDLS = new System.Windows.Forms.NumericUpDown(); this.nUDL2 = new System.Windows.Forms.NumericUpDown(); this.gBTouchpad = new System.Windows.Forms.GroupBox(); + this.pnlTPMouse = new System.Windows.Forms.Panel(); + this.cbStartTouchpadOff = new System.Windows.Forms.CheckBox(); this.rBTPControls = new System.Windows.Forms.RadioButton(); this.rBTPMouse = new System.Windows.Forms.RadioButton(); this.fLPTouchSwipe = new System.Windows.Forms.FlowLayoutPanel(); @@ -111,8 +113,6 @@ private void InitializeComponent() this.lbSwipeLeft = new System.Windows.Forms.Label(); this.bnSwipeRight = new System.Windows.Forms.Button(); this.lbSwipeRight = new System.Windows.Forms.Label(); - this.pnlTPMouse = new System.Windows.Forms.Panel(); - this.cbStartTouchpadOff = new System.Windows.Forms.CheckBox(); this.gBOther = new System.Windows.Forms.GroupBox(); this.cBDinput = new System.Windows.Forms.CheckBox(); this.pBProgram = new System.Windows.Forms.PictureBox(); @@ -323,9 +323,9 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.nUDLS)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDL2)).BeginInit(); this.gBTouchpad.SuspendLayout(); + this.pnlTPMouse.SuspendLayout(); this.fLPTouchSwipe.SuspendLayout(); this.cMSPresets.SuspendLayout(); - this.pnlTPMouse.SuspendLayout(); this.gBOther.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pBProgram)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDSixaxis)).BeginInit(); @@ -378,8 +378,8 @@ private void InitializeComponent() // // lowColorChooserButton // - this.lowColorChooserButton.BackColor = System.Drawing.Color.White; resources.ApplyResources(this.lowColorChooserButton, "lowColorChooserButton"); + this.lowColorChooserButton.BackColor = System.Drawing.Color.White; this.lowColorChooserButton.Name = "lowColorChooserButton"; this.lowColorChooserButton.UseVisualStyleBackColor = false; this.lowColorChooserButton.Click += new System.EventHandler(this.lowColorChooserButton_Click); @@ -594,8 +594,8 @@ private void InitializeComponent() // // nUDIdleDisconnect // - this.nUDIdleDisconnect.DecimalPlaces = 1; resources.ApplyResources(this.nUDIdleDisconnect, "nUDIdleDisconnect"); + this.nUDIdleDisconnect.DecimalPlaces = 1; this.nUDIdleDisconnect.Maximum = new decimal(new int[] { 60, 0, @@ -606,13 +606,13 @@ private void InitializeComponent() // // nUDR2 // + resources.ApplyResources(this.nUDR2, "nUDR2"); this.nUDR2.DecimalPlaces = 2; this.nUDR2.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - resources.ApplyResources(this.nUDR2, "nUDR2"); this.nUDR2.Maximum = new decimal(new int[] { 1, 0, @@ -718,6 +718,7 @@ private void InitializeComponent() // // pnlFull // + resources.ApplyResources(this.pnlFull, "pnlFull"); this.pnlFull.Controls.Add(this.lbFull); this.pnlFull.Controls.Add(this.lbRed); this.pnlFull.Controls.Add(this.lbGreen); @@ -725,11 +726,11 @@ private void InitializeComponent() this.pnlFull.Controls.Add(this.tBRedBar); this.pnlFull.Controls.Add(this.tBGreenBar); this.pnlFull.Controls.Add(this.tBBlueBar); - resources.ApplyResources(this.pnlFull, "pnlFull"); this.pnlFull.Name = "pnlFull"; // // pnlLowBattery // + resources.ApplyResources(this.pnlLowBattery, "pnlLowBattery"); this.pnlLowBattery.Controls.Add(this.lowColorChooserButton); this.pnlLowBattery.Controls.Add(this.lbLowRed); this.pnlLowBattery.Controls.Add(this.lbLowGreen); @@ -738,7 +739,6 @@ private void InitializeComponent() this.pnlLowBattery.Controls.Add(this.tBLowGreenBar); this.pnlLowBattery.Controls.Add(this.tBLowBlueBar); this.pnlLowBattery.Controls.Add(this.lbEmpty); - resources.ApplyResources(this.pnlLowBattery, "pnlLowBattery"); this.pnlLowBattery.Name = "pnlLowBattery"; // // lbRS @@ -753,13 +753,13 @@ private void InitializeComponent() // // nUDRS // + resources.ApplyResources(this.nUDRS, "nUDRS"); this.nUDRS.DecimalPlaces = 2; this.nUDRS.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - resources.ApplyResources(this.nUDRS, "nUDRS"); this.nUDRS.Maximum = new decimal(new int[] { 1, 0, @@ -791,13 +791,13 @@ private void InitializeComponent() // // nUDLS // + resources.ApplyResources(this.nUDLS, "nUDLS"); this.nUDLS.DecimalPlaces = 2; this.nUDLS.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - resources.ApplyResources(this.nUDLS, "nUDLS"); this.nUDLS.Maximum = new decimal(new int[] { 1, 0, @@ -813,13 +813,13 @@ private void InitializeComponent() // // nUDL2 // + resources.ApplyResources(this.nUDL2, "nUDL2"); this.nUDL2.DecimalPlaces = 2; this.nUDL2.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - resources.ApplyResources(this.nUDL2, "nUDL2"); this.nUDL2.Maximum = new decimal(new int[] { 1, 0, @@ -830,16 +830,39 @@ private void InitializeComponent() // // gBTouchpad // + resources.ApplyResources(this.gBTouchpad, "gBTouchpad"); this.gBTouchpad.BackColor = System.Drawing.Color.Transparent; + this.gBTouchpad.Controls.Add(this.pnlTPMouse); this.gBTouchpad.Controls.Add(this.rBTPControls); this.gBTouchpad.Controls.Add(this.rBTPMouse); this.gBTouchpad.Controls.Add(this.fLPTouchSwipe); - this.gBTouchpad.Controls.Add(this.pnlTPMouse); this.gBTouchpad.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.gBTouchpad, "gBTouchpad"); this.gBTouchpad.Name = "gBTouchpad"; this.gBTouchpad.TabStop = false; // + // pnlTPMouse + // + resources.ApplyResources(this.pnlTPMouse, "pnlTPMouse"); + this.pnlTPMouse.Controls.Add(this.nUDScroll); + this.pnlTPMouse.Controls.Add(this.cBDoubleTap); + this.pnlTPMouse.Controls.Add(this.cBScroll); + this.pnlTPMouse.Controls.Add(this.cBTouchpadJitterCompensation); + this.pnlTPMouse.Controls.Add(this.nUDTap); + this.pnlTPMouse.Controls.Add(this.cBlowerRCOn); + this.pnlTPMouse.Controls.Add(this.cBTap); + this.pnlTPMouse.Controls.Add(this.cBSlide); + this.pnlTPMouse.Controls.Add(this.nUDTouch); + this.pnlTPMouse.Controls.Add(this.cbStartTouchpadOff); + this.pnlTPMouse.Name = "pnlTPMouse"; + // + // cbStartTouchpadOff + // + resources.ApplyResources(this.cbStartTouchpadOff, "cbStartTouchpadOff"); + this.cbStartTouchpadOff.ForeColor = System.Drawing.SystemColors.ControlLightLight; + this.cbStartTouchpadOff.Name = "cbStartTouchpadOff"; + this.cbStartTouchpadOff.UseVisualStyleBackColor = true; + this.cbStartTouchpadOff.CheckedChanged += new System.EventHandler(this.cbStartTouchpadOff_CheckedChanged); + // // rBTPControls // resources.ApplyResources(this.rBTPControls, "rBTPControls"); @@ -860,6 +883,7 @@ private void InitializeComponent() // // fLPTouchSwipe // + resources.ApplyResources(this.fLPTouchSwipe, "fLPTouchSwipe"); this.fLPTouchSwipe.Controls.Add(this.bnSwipeUp); this.fLPTouchSwipe.Controls.Add(this.lbSwipeUp); this.fLPTouchSwipe.Controls.Add(this.bnSwipeDown); @@ -868,14 +892,13 @@ private void InitializeComponent() this.fLPTouchSwipe.Controls.Add(this.lbSwipeLeft); this.fLPTouchSwipe.Controls.Add(this.bnSwipeRight); this.fLPTouchSwipe.Controls.Add(this.lbSwipeRight); - resources.ApplyResources(this.fLPTouchSwipe, "fLPTouchSwipe"); this.fLPTouchSwipe.Name = "fLPTouchSwipe"; // // bnSwipeUp // + resources.ApplyResources(this.bnSwipeUp, "bnSwipeUp"); this.bnSwipeUp.BackColor = System.Drawing.SystemColors.ControlText; this.bnSwipeUp.ContextMenuStrip = this.cMSPresets; - resources.ApplyResources(this.bnSwipeUp, "bnSwipeUp"); this.bnSwipeUp.ForeColor = System.Drawing.SystemColors.ControlLightLight; this.bnSwipeUp.Name = "bnSwipeUp"; this.bnSwipeUp.UseVisualStyleBackColor = false; @@ -883,6 +906,7 @@ private void InitializeComponent() // // cMSPresets // + resources.ApplyResources(this.cMSPresets, "cMSPresets"); this.cMSPresets.ImageScalingSize = new System.Drawing.Size(20, 20); this.cMSPresets.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.controlToolStripMenuItem, @@ -897,7 +921,6 @@ private void InitializeComponent() this.MouseToolStripMenuItem}); this.cMSPresets.Name = "contextMenuStrip1"; this.cMSPresets.ShowImageMargin = false; - resources.ApplyResources(this.cMSPresets, "cMSPresets"); this.cMSPresets.Opened += new System.EventHandler(this.cMSPresets_Opened); // // controlToolStripMenuItem @@ -907,173 +930,173 @@ private void InitializeComponent() // // toolStripSeparator1 // - this.toolStripSeparator1.Name = "toolStripSeparator1"; resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); + this.toolStripSeparator1.Name = "toolStripSeparator1"; // // defaultToolStripMenuItem // - this.defaultToolStripMenuItem.Name = "defaultToolStripMenuItem"; resources.ApplyResources(this.defaultToolStripMenuItem, "defaultToolStripMenuItem"); + this.defaultToolStripMenuItem.Name = "defaultToolStripMenuItem"; this.defaultToolStripMenuItem.Click += new System.EventHandler(this.SetPreset); // // DpadToolStripMenuItem // + resources.ApplyResources(this.DpadToolStripMenuItem, "DpadToolStripMenuItem"); this.DpadToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tSMIDPadInverted, this.tSMIDPadInvertedX, this.tSMIDPadInvertedY}); this.DpadToolStripMenuItem.Name = "DpadToolStripMenuItem"; - resources.ApplyResources(this.DpadToolStripMenuItem, "DpadToolStripMenuItem"); this.DpadToolStripMenuItem.Click += new System.EventHandler(this.SetPreset); // // tSMIDPadInverted // - this.tSMIDPadInverted.Name = "tSMIDPadInverted"; resources.ApplyResources(this.tSMIDPadInverted, "tSMIDPadInverted"); + this.tSMIDPadInverted.Name = "tSMIDPadInverted"; this.tSMIDPadInverted.Click += new System.EventHandler(this.SetPreset); // // tSMIDPadInvertedX // - this.tSMIDPadInvertedX.Name = "tSMIDPadInvertedX"; resources.ApplyResources(this.tSMIDPadInvertedX, "tSMIDPadInvertedX"); + this.tSMIDPadInvertedX.Name = "tSMIDPadInvertedX"; this.tSMIDPadInvertedX.Click += new System.EventHandler(this.SetPreset); // // tSMIDPadInvertedY // - this.tSMIDPadInvertedY.Name = "tSMIDPadInvertedY"; resources.ApplyResources(this.tSMIDPadInvertedY, "tSMIDPadInvertedY"); + this.tSMIDPadInvertedY.Name = "tSMIDPadInvertedY"; this.tSMIDPadInvertedY.Click += new System.EventHandler(this.SetPreset); // // LSToolStripMenuItem // + resources.ApplyResources(this.LSToolStripMenuItem, "LSToolStripMenuItem"); this.LSToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tSMILSInverted, this.tSMILSInvertedX, this.tSMILSInvertedY}); this.LSToolStripMenuItem.Name = "LSToolStripMenuItem"; - resources.ApplyResources(this.LSToolStripMenuItem, "LSToolStripMenuItem"); this.LSToolStripMenuItem.Click += new System.EventHandler(this.SetPreset); // // tSMILSInverted // - this.tSMILSInverted.Name = "tSMILSInverted"; resources.ApplyResources(this.tSMILSInverted, "tSMILSInverted"); + this.tSMILSInverted.Name = "tSMILSInverted"; this.tSMILSInverted.Click += new System.EventHandler(this.SetPreset); // // tSMILSInvertedX // - this.tSMILSInvertedX.Name = "tSMILSInvertedX"; resources.ApplyResources(this.tSMILSInvertedX, "tSMILSInvertedX"); + this.tSMILSInvertedX.Name = "tSMILSInvertedX"; this.tSMILSInvertedX.Click += new System.EventHandler(this.SetPreset); // // tSMILSInvertedY // - this.tSMILSInvertedY.Name = "tSMILSInvertedY"; resources.ApplyResources(this.tSMILSInvertedY, "tSMILSInvertedY"); + this.tSMILSInvertedY.Name = "tSMILSInvertedY"; this.tSMILSInvertedY.Click += new System.EventHandler(this.SetPreset); // // RSToolStripMenuItem // + resources.ApplyResources(this.RSToolStripMenuItem, "RSToolStripMenuItem"); this.RSToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tSMIRSInverted, this.tSMIRSInvertedX, this.tSMIRSInvertedY}); this.RSToolStripMenuItem.Name = "RSToolStripMenuItem"; - resources.ApplyResources(this.RSToolStripMenuItem, "RSToolStripMenuItem"); this.RSToolStripMenuItem.Click += new System.EventHandler(this.SetPreset); // // tSMIRSInverted // - this.tSMIRSInverted.Name = "tSMIRSInverted"; resources.ApplyResources(this.tSMIRSInverted, "tSMIRSInverted"); + this.tSMIRSInverted.Name = "tSMIRSInverted"; this.tSMIRSInverted.Click += new System.EventHandler(this.SetPreset); // // tSMIRSInvertedX // - this.tSMIRSInvertedX.Name = "tSMIRSInvertedX"; resources.ApplyResources(this.tSMIRSInvertedX, "tSMIRSInvertedX"); + this.tSMIRSInvertedX.Name = "tSMIRSInvertedX"; this.tSMIRSInvertedX.Click += new System.EventHandler(this.SetPreset); // // tSMIRSInvertedY // - this.tSMIRSInvertedY.Name = "tSMIRSInvertedY"; resources.ApplyResources(this.tSMIRSInvertedY, "tSMIRSInvertedY"); + this.tSMIRSInvertedY.Name = "tSMIRSInvertedY"; this.tSMIRSInvertedY.Click += new System.EventHandler(this.SetPreset); // // ABXYToolStripMenuItem // - this.ABXYToolStripMenuItem.Name = "ABXYToolStripMenuItem"; resources.ApplyResources(this.ABXYToolStripMenuItem, "ABXYToolStripMenuItem"); + this.ABXYToolStripMenuItem.Name = "ABXYToolStripMenuItem"; this.ABXYToolStripMenuItem.Click += new System.EventHandler(this.SetPreset); // // WASDToolStripMenuItem // + resources.ApplyResources(this.WASDToolStripMenuItem, "WASDToolStripMenuItem"); this.WASDToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.wScanCodeWASDToolStripMenuItem}); this.WASDToolStripMenuItem.Name = "WASDToolStripMenuItem"; - resources.ApplyResources(this.WASDToolStripMenuItem, "WASDToolStripMenuItem"); this.WASDToolStripMenuItem.Click += new System.EventHandler(this.SetPreset); // // wScanCodeWASDToolStripMenuItem // + resources.ApplyResources(this.wScanCodeWASDToolStripMenuItem, "wScanCodeWASDToolStripMenuItem"); this.wScanCodeWASDToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.wScanCodeWASDToolStripMenuItem.Name = "wScanCodeWASDToolStripMenuItem"; - resources.ApplyResources(this.wScanCodeWASDToolStripMenuItem, "wScanCodeWASDToolStripMenuItem"); this.wScanCodeWASDToolStripMenuItem.Click += new System.EventHandler(this.SetPreset); // // ArrowKeysToolStripMenuItem // + resources.ApplyResources(this.ArrowKeysToolStripMenuItem, "ArrowKeysToolStripMenuItem"); this.ArrowKeysToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.wScanCodeArrowKeysToolStripMenuItem}); this.ArrowKeysToolStripMenuItem.Name = "ArrowKeysToolStripMenuItem"; - resources.ApplyResources(this.ArrowKeysToolStripMenuItem, "ArrowKeysToolStripMenuItem"); this.ArrowKeysToolStripMenuItem.Click += new System.EventHandler(this.SetPreset); // // wScanCodeArrowKeysToolStripMenuItem // - this.wScanCodeArrowKeysToolStripMenuItem.Name = "wScanCodeArrowKeysToolStripMenuItem"; resources.ApplyResources(this.wScanCodeArrowKeysToolStripMenuItem, "wScanCodeArrowKeysToolStripMenuItem"); + this.wScanCodeArrowKeysToolStripMenuItem.Name = "wScanCodeArrowKeysToolStripMenuItem"; this.wScanCodeArrowKeysToolStripMenuItem.Click += new System.EventHandler(this.SetPreset); // // MouseToolStripMenuItem // + resources.ApplyResources(this.MouseToolStripMenuItem, "MouseToolStripMenuItem"); this.MouseToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tSMIMouseInverted, this.tSMIMouseInvertedX, this.tSMIMouseInvertedY}); this.MouseToolStripMenuItem.Name = "MouseToolStripMenuItem"; - resources.ApplyResources(this.MouseToolStripMenuItem, "MouseToolStripMenuItem"); this.MouseToolStripMenuItem.Click += new System.EventHandler(this.SetPreset); // // tSMIMouseInverted // - this.tSMIMouseInverted.Name = "tSMIMouseInverted"; resources.ApplyResources(this.tSMIMouseInverted, "tSMIMouseInverted"); + this.tSMIMouseInverted.Name = "tSMIMouseInverted"; this.tSMIMouseInverted.Click += new System.EventHandler(this.SetPreset); // // tSMIMouseInvertedX // - this.tSMIMouseInvertedX.Name = "tSMIMouseInvertedX"; resources.ApplyResources(this.tSMIMouseInvertedX, "tSMIMouseInvertedX"); + this.tSMIMouseInvertedX.Name = "tSMIMouseInvertedX"; this.tSMIMouseInvertedX.Click += new System.EventHandler(this.SetPreset); // // tSMIMouseInvertedY // - this.tSMIMouseInvertedY.Name = "tSMIMouseInvertedY"; resources.ApplyResources(this.tSMIMouseInvertedY, "tSMIMouseInvertedY"); + this.tSMIMouseInvertedY.Name = "tSMIMouseInvertedY"; this.tSMIMouseInvertedY.Click += new System.EventHandler(this.SetPreset); // // lbSwipeUp // - this.lbSwipeUp.ForeColor = System.Drawing.SystemColors.ControlLightLight; resources.ApplyResources(this.lbSwipeUp, "lbSwipeUp"); + this.lbSwipeUp.ForeColor = System.Drawing.SystemColors.ControlLightLight; this.lbSwipeUp.Name = "lbSwipeUp"; // // bnSwipeDown // + resources.ApplyResources(this.bnSwipeDown, "bnSwipeDown"); this.bnSwipeDown.BackColor = System.Drawing.SystemColors.ControlText; this.bnSwipeDown.ContextMenuStrip = this.cMSPresets; - resources.ApplyResources(this.bnSwipeDown, "bnSwipeDown"); this.bnSwipeDown.ForeColor = System.Drawing.SystemColors.ControlLightLight; this.bnSwipeDown.Name = "bnSwipeDown"; this.bnSwipeDown.UseVisualStyleBackColor = false; @@ -1081,15 +1104,15 @@ private void InitializeComponent() // // lbSwipeDown // - this.lbSwipeDown.ForeColor = System.Drawing.SystemColors.ControlLightLight; resources.ApplyResources(this.lbSwipeDown, "lbSwipeDown"); + this.lbSwipeDown.ForeColor = System.Drawing.SystemColors.ControlLightLight; this.lbSwipeDown.Name = "lbSwipeDown"; // // bnSwipeLeft // + resources.ApplyResources(this.bnSwipeLeft, "bnSwipeLeft"); this.bnSwipeLeft.BackColor = System.Drawing.SystemColors.ControlText; this.bnSwipeLeft.ContextMenuStrip = this.cMSPresets; - resources.ApplyResources(this.bnSwipeLeft, "bnSwipeLeft"); this.bnSwipeLeft.ForeColor = System.Drawing.SystemColors.ControlLightLight; this.bnSwipeLeft.Name = "bnSwipeLeft"; this.bnSwipeLeft.UseVisualStyleBackColor = false; @@ -1097,15 +1120,15 @@ private void InitializeComponent() // // lbSwipeLeft // - this.lbSwipeLeft.ForeColor = System.Drawing.SystemColors.ControlLightLight; resources.ApplyResources(this.lbSwipeLeft, "lbSwipeLeft"); + this.lbSwipeLeft.ForeColor = System.Drawing.SystemColors.ControlLightLight; this.lbSwipeLeft.Name = "lbSwipeLeft"; // // bnSwipeRight // + resources.ApplyResources(this.bnSwipeRight, "bnSwipeRight"); this.bnSwipeRight.BackColor = System.Drawing.SystemColors.ControlText; this.bnSwipeRight.ContextMenuStrip = this.cMSPresets; - resources.ApplyResources(this.bnSwipeRight, "bnSwipeRight"); this.bnSwipeRight.ForeColor = System.Drawing.SystemColors.ControlLightLight; this.bnSwipeRight.Name = "bnSwipeRight"; this.bnSwipeRight.UseVisualStyleBackColor = false; @@ -1113,35 +1136,13 @@ private void InitializeComponent() // // lbSwipeRight // - this.lbSwipeRight.ForeColor = System.Drawing.SystemColors.ControlLightLight; resources.ApplyResources(this.lbSwipeRight, "lbSwipeRight"); + this.lbSwipeRight.ForeColor = System.Drawing.SystemColors.ControlLightLight; this.lbSwipeRight.Name = "lbSwipeRight"; // - // pnlTPMouse - // - this.pnlTPMouse.Controls.Add(this.nUDScroll); - this.pnlTPMouse.Controls.Add(this.cBDoubleTap); - this.pnlTPMouse.Controls.Add(this.cBScroll); - this.pnlTPMouse.Controls.Add(this.cBTouchpadJitterCompensation); - this.pnlTPMouse.Controls.Add(this.nUDTap); - this.pnlTPMouse.Controls.Add(this.cBlowerRCOn); - this.pnlTPMouse.Controls.Add(this.cBTap); - this.pnlTPMouse.Controls.Add(this.cBSlide); - this.pnlTPMouse.Controls.Add(this.nUDTouch); - this.pnlTPMouse.Controls.Add(this.cbStartTouchpadOff); - resources.ApplyResources(this.pnlTPMouse, "pnlTPMouse"); - this.pnlTPMouse.Name = "pnlTPMouse"; - // - // cbStartTouchpadOff - // - resources.ApplyResources(this.cbStartTouchpadOff, "cbStartTouchpadOff"); - this.cbStartTouchpadOff.ForeColor = System.Drawing.SystemColors.ControlLightLight; - this.cbStartTouchpadOff.Name = "cbStartTouchpadOff"; - this.cbStartTouchpadOff.UseVisualStyleBackColor = true; - this.cbStartTouchpadOff.CheckedChanged += new System.EventHandler(this.cbStartTouchpadOff_CheckedChanged); - // // gBOther // + resources.ApplyResources(this.gBOther, "gBOther"); this.gBOther.BackColor = System.Drawing.Color.WhiteSmoke; this.gBOther.Controls.Add(this.cBDinput); this.gBOther.Controls.Add(this.pBProgram); @@ -1157,7 +1158,6 @@ private void InitializeComponent() this.gBOther.Controls.Add(this.numUDMouseSens); this.gBOther.Controls.Add(this.cBFlushHIDQueue); this.gBOther.Controls.Add(this.lbIdleMinutes); - resources.ApplyResources(this.gBOther, "gBOther"); this.gBOther.Name = "gBOther"; this.gBOther.TabStop = false; // @@ -1240,6 +1240,7 @@ private void InitializeComponent() // // gBLightbar // + resources.ApplyResources(this.gBLightbar, "gBLightbar"); this.gBLightbar.BackColor = System.Drawing.Color.WhiteSmoke; this.gBLightbar.Controls.Add(this.btnRainbow); this.gBLightbar.Controls.Add(this.lbRainbowB); @@ -1256,14 +1257,13 @@ private void InitializeComponent() this.gBLightbar.Controls.Add(this.cBLightbyBattery); this.gBLightbar.Controls.Add(this.pnlLowBattery); this.gBLightbar.Controls.Add(this.pnlFull); - resources.ApplyResources(this.gBLightbar, "gBLightbar"); this.gBLightbar.Name = "gBLightbar"; this.gBLightbar.TabStop = false; // // btnRainbow // - this.btnRainbow.Image = global::DS4Windows.Properties.Resources.rainbow; resources.ApplyResources(this.btnRainbow, "btnRainbow"); + this.btnRainbow.Image = global::DS4Windows.Properties.Resources.rainbow; this.btnRainbow.Name = "btnRainbow"; this.btnRainbow.UseVisualStyleBackColor = true; this.btnRainbow.Click += new System.EventHandler(this.btnRainbow_Click); @@ -1291,17 +1291,18 @@ private void InitializeComponent() // // cBFlashType // + resources.ApplyResources(this.cBFlashType, "cBFlashType"); this.cBFlashType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cBFlashType.FormattingEnabled = true; this.cBFlashType.Items.AddRange(new object[] { resources.GetString("cBFlashType.Items"), resources.GetString("cBFlashType.Items1")}); - resources.ApplyResources(this.cBFlashType, "cBFlashType"); this.cBFlashType.Name = "cBFlashType"; this.cBFlashType.SelectedIndexChanged += new System.EventHandler(this.cBFlashType_SelectedIndexChanged); // // cBWhileCharging // + resources.ApplyResources(this.cBWhileCharging, "cBWhileCharging"); this.cBWhileCharging.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cBWhileCharging.FormattingEnabled = true; this.cBWhileCharging.Items.AddRange(new object[] { @@ -1309,22 +1310,21 @@ private void InitializeComponent() resources.GetString("cBWhileCharging.Items1"), resources.GetString("cBWhileCharging.Items2"), resources.GetString("cBWhileCharging.Items3")}); - resources.ApplyResources(this.cBWhileCharging, "cBWhileCharging"); this.cBWhileCharging.Name = "cBWhileCharging"; this.cBWhileCharging.SelectedIndexChanged += new System.EventHandler(this.cBWhileCharging_SelectedIndexChanged); // // btnFlashColor // - this.btnFlashColor.BackColor = System.Drawing.Color.White; resources.ApplyResources(this.btnFlashColor, "btnFlashColor"); + this.btnFlashColor.BackColor = System.Drawing.Color.White; this.btnFlashColor.Name = "btnFlashColor"; this.btnFlashColor.UseVisualStyleBackColor = false; this.btnFlashColor.Click += new System.EventHandler(this.btnFlashColor_Click); // // btnChargingColor // - this.btnChargingColor.BackColor = System.Drawing.Color.White; resources.ApplyResources(this.btnChargingColor, "btnChargingColor"); + this.btnChargingColor.BackColor = System.Drawing.Color.White; this.btnChargingColor.Name = "btnChargingColor"; this.btnChargingColor.UseVisualStyleBackColor = false; this.btnChargingColor.Click += new System.EventHandler(this.btnChargingColor_Click); @@ -1341,23 +1341,23 @@ private void InitializeComponent() // // nUDflashLED // + resources.ApplyResources(this.nUDflashLED, "nUDflashLED"); this.nUDflashLED.Increment = new decimal(new int[] { 10, 0, 0, 0}); - resources.ApplyResources(this.nUDflashLED, "nUDflashLED"); this.nUDflashLED.Name = "nUDflashLED"; this.nUDflashLED.ValueChanged += new System.EventHandler(this.nUDflashLED_ValueChanged); // // gBRumble // + resources.ApplyResources(this.gBRumble, "gBRumble"); this.gBRumble.BackColor = System.Drawing.Color.WhiteSmoke; this.gBRumble.Controls.Add(this.lbPercentRumble); this.gBRumble.Controls.Add(this.btnRumbleLightTest); this.gBRumble.Controls.Add(this.btnRumbleHeavyTest); this.gBRumble.Controls.Add(this.nUDRumbleBoost); - resources.ApplyResources(this.gBRumble, "gBRumble"); this.gBRumble.Name = "gBRumble"; this.gBRumble.TabStop = false; // @@ -1385,13 +1385,13 @@ private void InitializeComponent() // // nUDSZ // + resources.ApplyResources(this.nUDSZ, "nUDSZ"); this.nUDSZ.DecimalPlaces = 2; this.nUDSZ.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - resources.ApplyResources(this.nUDSZ, "nUDSZ"); this.nUDSZ.Maximum = new decimal(new int[] { 1, 0, @@ -1407,13 +1407,13 @@ private void InitializeComponent() // // nUDSX // + resources.ApplyResources(this.nUDSX, "nUDSX"); this.nUDSX.DecimalPlaces = 2; this.nUDSX.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - resources.ApplyResources(this.nUDSX, "nUDSX"); this.nUDSX.Maximum = new decimal(new int[] { 1, 0, @@ -1427,8 +1427,13 @@ private void InitializeComponent() 131072}); this.nUDSX.ValueChanged += new System.EventHandler(this.nUDSX_ValueChanged); // + // openFileDialog1 + // + resources.ApplyResources(this.openFileDialog1, "openFileDialog1"); + // // lbL2TrackS // + resources.ApplyResources(this.lbL2TrackS, "lbL2TrackS"); this.lbL2TrackS.Controls.Add(this.pnlSATrack); this.lbL2TrackS.Controls.Add(this.lbL2Track); this.lbL2TrackS.Controls.Add(this.lbRSTip); @@ -1441,30 +1446,29 @@ private void InitializeComponent() this.lbL2TrackS.Controls.Add(this.pnlSixaxis); this.lbL2TrackS.Controls.Add(this.pnlLSTrack); this.lbL2TrackS.Controls.Add(this.pnlRSTrack); - resources.ApplyResources(this.lbL2TrackS, "lbL2TrackS"); this.lbL2TrackS.Name = "lbL2TrackS"; this.lbL2TrackS.UseVisualStyleBackColor = true; // // pnlSATrack // + resources.ApplyResources(this.pnlSATrack, "pnlSATrack"); this.pnlSATrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pnlSATrack.Controls.Add(this.btnSATrack); this.pnlSATrack.Controls.Add(this.btnSATrackS); - resources.ApplyResources(this.pnlSATrack, "pnlSATrack"); this.pnlSATrack.Name = "pnlSATrack"; this.pnlSATrack.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlSATrack_Paint); // // btnSATrack // - this.btnSATrack.BackColor = System.Drawing.Color.Black; resources.ApplyResources(this.btnSATrack, "btnSATrack"); + this.btnSATrack.BackColor = System.Drawing.Color.Black; this.btnSATrack.Name = "btnSATrack"; this.btnSATrack.UseVisualStyleBackColor = false; // // btnSATrackS // - this.btnSATrackS.BackColor = System.Drawing.Color.DimGray; resources.ApplyResources(this.btnSATrackS, "btnSATrackS"); + this.btnSATrackS.BackColor = System.Drawing.Color.DimGray; this.btnSATrackS.ForeColor = System.Drawing.SystemColors.ControlDark; this.btnSATrackS.Name = "btnSATrackS"; this.btnSATrackS.UseVisualStyleBackColor = false; @@ -1520,6 +1524,7 @@ private void InitializeComponent() // // pnlSixaxis // + resources.ApplyResources(this.pnlSixaxis, "pnlSixaxis"); this.pnlSixaxis.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pnlSixaxis.Controls.Add(this.tBsixaxisAccelX); this.pnlSixaxis.Controls.Add(this.lb6Accel); @@ -1529,7 +1534,6 @@ private void InitializeComponent() this.pnlSixaxis.Controls.Add(this.tBsixaxisGyroZ); this.pnlSixaxis.Controls.Add(this.tBsixaxisAccelY); this.pnlSixaxis.Controls.Add(this.tBsixaxisAccelZ); - resources.ApplyResources(this.pnlSixaxis, "pnlSixaxis"); this.pnlSixaxis.Name = "pnlSixaxis"; this.pnlSixaxis.Click += new System.EventHandler(this.SixaxisPanel_Click); // @@ -1599,54 +1603,55 @@ private void InitializeComponent() // // pnlLSTrack // + resources.ApplyResources(this.pnlLSTrack, "pnlLSTrack"); this.pnlLSTrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pnlLSTrack.Controls.Add(this.btnLSTrack); this.pnlLSTrack.Controls.Add(this.btnLSTrackS); - resources.ApplyResources(this.pnlLSTrack, "pnlLSTrack"); this.pnlLSTrack.Name = "pnlLSTrack"; this.pnlLSTrack.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlLSTrack_Paint); // // btnLSTrack // - this.btnLSTrack.BackColor = System.Drawing.Color.Black; resources.ApplyResources(this.btnLSTrack, "btnLSTrack"); + this.btnLSTrack.BackColor = System.Drawing.Color.Black; this.btnLSTrack.Name = "btnLSTrack"; this.btnLSTrack.UseVisualStyleBackColor = false; // // btnLSTrackS // - this.btnLSTrackS.BackColor = System.Drawing.Color.DimGray; resources.ApplyResources(this.btnLSTrackS, "btnLSTrackS"); + this.btnLSTrackS.BackColor = System.Drawing.Color.DimGray; this.btnLSTrackS.ForeColor = System.Drawing.SystemColors.ControlDark; this.btnLSTrackS.Name = "btnLSTrackS"; this.btnLSTrackS.UseVisualStyleBackColor = false; // // pnlRSTrack // + resources.ApplyResources(this.pnlRSTrack, "pnlRSTrack"); this.pnlRSTrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pnlRSTrack.Controls.Add(this.btnRSTrackS); this.pnlRSTrack.Controls.Add(this.btnRSTrack); - resources.ApplyResources(this.pnlRSTrack, "pnlRSTrack"); this.pnlRSTrack.Name = "pnlRSTrack"; this.pnlRSTrack.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlRSTrack_Paint); // // btnRSTrackS // - this.btnRSTrackS.BackColor = System.Drawing.Color.DimGray; resources.ApplyResources(this.btnRSTrackS, "btnRSTrackS"); + this.btnRSTrackS.BackColor = System.Drawing.Color.DimGray; this.btnRSTrackS.ForeColor = System.Drawing.SystemColors.ControlDark; this.btnRSTrackS.Name = "btnRSTrackS"; this.btnRSTrackS.UseVisualStyleBackColor = false; // // btnRSTrack // - this.btnRSTrack.BackColor = System.Drawing.Color.Black; resources.ApplyResources(this.btnRSTrack, "btnRSTrack"); + this.btnRSTrack.BackColor = System.Drawing.Color.Black; this.btnRSTrack.Name = "btnRSTrack"; this.btnRSTrack.UseVisualStyleBackColor = false; // // fLPTiltControls // + resources.ApplyResources(this.fLPTiltControls, "fLPTiltControls"); this.fLPTiltControls.Controls.Add(this.bnGyroZN); this.fLPTiltControls.Controls.Add(this.lbGyroZN); this.fLPTiltControls.Controls.Add(this.bnGyroZP); @@ -1655,13 +1660,12 @@ private void InitializeComponent() this.fLPTiltControls.Controls.Add(this.lbGyroXP); this.fLPTiltControls.Controls.Add(this.bnGyroXN); this.fLPTiltControls.Controls.Add(this.lbGyroXN); - resources.ApplyResources(this.fLPTiltControls, "fLPTiltControls"); this.fLPTiltControls.Name = "fLPTiltControls"; // // bnGyroZN // - this.bnGyroZN.ContextMenuStrip = this.cMSPresets; resources.ApplyResources(this.bnGyroZN, "bnGyroZN"); + this.bnGyroZN.ContextMenuStrip = this.cMSPresets; this.bnGyroZN.Name = "bnGyroZN"; this.bnGyroZN.UseVisualStyleBackColor = true; this.bnGyroZN.Click += new System.EventHandler(this.Show_ControlsBn); @@ -1673,8 +1677,8 @@ private void InitializeComponent() // // bnGyroZP // - this.bnGyroZP.ContextMenuStrip = this.cMSPresets; resources.ApplyResources(this.bnGyroZP, "bnGyroZP"); + this.bnGyroZP.ContextMenuStrip = this.cMSPresets; this.bnGyroZP.Name = "bnGyroZP"; this.bnGyroZP.UseVisualStyleBackColor = true; this.bnGyroZP.Click += new System.EventHandler(this.Show_ControlsBn); @@ -1686,8 +1690,8 @@ private void InitializeComponent() // // bnGyroXP // - this.bnGyroXP.ContextMenuStrip = this.cMSPresets; resources.ApplyResources(this.bnGyroXP, "bnGyroXP"); + this.bnGyroXP.ContextMenuStrip = this.cMSPresets; this.bnGyroXP.Name = "bnGyroXP"; this.bnGyroXP.UseVisualStyleBackColor = true; this.bnGyroXP.Click += new System.EventHandler(this.Show_ControlsBn); @@ -1699,8 +1703,8 @@ private void InitializeComponent() // // bnGyroXN // - this.bnGyroXN.ContextMenuStrip = this.cMSPresets; resources.ApplyResources(this.bnGyroXN, "bnGyroXN"); + this.bnGyroXN.ContextMenuStrip = this.cMSPresets; this.bnGyroXN.Name = "bnGyroXN"; this.bnGyroXN.UseVisualStyleBackColor = true; this.bnGyroXN.Click += new System.EventHandler(this.Show_ControlsBn); @@ -1712,10 +1716,10 @@ private void InitializeComponent() // // tCControls // + resources.ApplyResources(this.tCControls, "tCControls"); this.tCControls.Controls.Add(this.tPControls); this.tCControls.Controls.Add(this.tPSpecial); this.tCControls.Controls.Add(this.lbL2TrackS); - resources.ApplyResources(this.tCControls, "tCControls"); this.tCControls.Name = "tCControls"; this.tCControls.SelectedIndex = 0; this.tCControls.SelectedIndexChanged += new System.EventHandler(this.tabControls_SelectedIndexChanged); @@ -1775,16 +1779,16 @@ private void InitializeComponent() // // lbControlTip // + resources.ApplyResources(this.lbControlTip, "lbControlTip"); this.lbControlTip.BackColor = System.Drawing.Color.Transparent; this.lbControlTip.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbControlTip, "lbControlTip"); this.lbControlTip.Name = "lbControlTip"; // // pnlController // + resources.ApplyResources(this.pnlController, "pnlController"); this.pnlController.BackColor = System.Drawing.Color.Transparent; this.pnlController.BackgroundImage = global::DS4Windows.Properties.Resources.DS4_Config; - resources.ApplyResources(this.pnlController, "pnlController"); this.pnlController.Controls.Add(this.pBHoveredButton); this.pnlController.Controls.Add(this.lbLRS); this.pnlController.Controls.Add(this.lbLLS); @@ -1848,22 +1852,22 @@ private void InitializeComponent() // // lbLRS // + resources.ApplyResources(this.lbLRS, "lbLRS"); this.lbLRS.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLRS.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLRS, "lbLRS"); this.lbLRS.Name = "lbLRS"; // // lbLLS // + resources.ApplyResources(this.lbLLS, "lbLLS"); this.lbLLS.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLLS.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLLS, "lbLLS"); this.lbLLS.Name = "lbLLS"; // // bnRSDown // - this.bnRSDown.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnRSDown, "bnRSDown"); + this.bnRSDown.BackColor = System.Drawing.Color.Transparent; this.bnRSDown.ContextMenuStrip = this.cMSPresets; this.bnRSDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnRSDown.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -1878,22 +1882,22 @@ private void InitializeComponent() // // lbLTouchUpper // + resources.ApplyResources(this.lbLTouchUpper, "lbLTouchUpper"); this.lbLTouchUpper.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLTouchUpper.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLTouchUpper, "lbLTouchUpper"); this.lbLTouchUpper.Name = "lbLTouchUpper"; // // lbLTouchRight // + resources.ApplyResources(this.lbLTouchRight, "lbLTouchRight"); this.lbLTouchRight.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLTouchRight.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLTouchRight, "lbLTouchRight"); this.lbLTouchRight.Name = "lbLTouchRight"; // // bnL3 // - this.bnL3.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnL3, "bnL3"); + this.bnL3.BackColor = System.Drawing.Color.Transparent; this.bnL3.ContextMenuStrip = this.cMSPresets; this.bnL3.Cursor = System.Windows.Forms.Cursors.Default; this.bnL3.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -1908,15 +1912,15 @@ private void InitializeComponent() // // lbLTouchLM // + resources.ApplyResources(this.lbLTouchLM, "lbLTouchLM"); this.lbLTouchLM.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLTouchLM.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLTouchLM, "lbLTouchLM"); this.lbLTouchLM.Name = "lbLTouchLM"; // // bnRSUp // - this.bnRSUp.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnRSUp, "bnRSUp"); + this.bnRSUp.BackColor = System.Drawing.Color.Transparent; this.bnRSUp.ContextMenuStrip = this.cMSPresets; this.bnRSUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnRSUp.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -1931,15 +1935,15 @@ private void InitializeComponent() // // lbLR2 // + resources.ApplyResources(this.lbLR2, "lbLR2"); this.lbLR2.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLR2.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLR2, "lbLR2"); this.lbLR2.Name = "lbLR2"; // // bnRSRight // - this.bnRSRight.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnRSRight, "bnRSRight"); + this.bnRSRight.BackColor = System.Drawing.Color.Transparent; this.bnRSRight.ContextMenuStrip = this.cMSPresets; this.bnRSRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnRSRight.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -1954,15 +1958,15 @@ private void InitializeComponent() // // lbLL2 // + resources.ApplyResources(this.lbLL2, "lbLL2"); this.lbLL2.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLL2.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLL2, "lbLL2"); this.lbLL2.Name = "lbLL2"; // // bnR3 // - this.bnR3.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnR3, "bnR3"); + this.bnR3.BackColor = System.Drawing.Color.Transparent; this.bnR3.ContextMenuStrip = this.cMSPresets; this.bnR3.Cursor = System.Windows.Forms.Cursors.Default; this.bnR3.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -1977,15 +1981,15 @@ private void InitializeComponent() // // lbLR1 // + resources.ApplyResources(this.lbLR1, "lbLR1"); this.lbLR1.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLR1.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLR1, "lbLR1"); this.lbLR1.Name = "lbLR1"; // // bnRSLeft // - this.bnRSLeft.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnRSLeft, "bnRSLeft"); + this.bnRSLeft.BackColor = System.Drawing.Color.Transparent; this.bnRSLeft.ContextMenuStrip = this.cMSPresets; this.bnRSLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnRSLeft.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -2000,15 +2004,15 @@ private void InitializeComponent() // // lbLL1 // + resources.ApplyResources(this.lbLL1, "lbLL1"); this.lbLL1.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLL1.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLL1, "lbLL1"); this.lbLL1.Name = "lbLL1"; // // bnLSLeft // - this.bnLSLeft.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnLSLeft, "bnLSLeft"); + this.bnLSLeft.BackColor = System.Drawing.Color.Transparent; this.bnLSLeft.ContextMenuStrip = this.cMSPresets; this.bnLSLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnLSLeft.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -2023,15 +2027,15 @@ private void InitializeComponent() // // lbLPS // + resources.ApplyResources(this.lbLPS, "lbLPS"); this.lbLPS.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLPS.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLPS, "lbLPS"); this.lbLPS.Name = "lbLPS"; // // bnLSUp // - this.bnLSUp.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnLSUp, "bnLSUp"); + this.bnLSUp.BackColor = System.Drawing.Color.Transparent; this.bnLSUp.ContextMenuStrip = this.cMSPresets; this.bnLSUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnLSUp.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -2046,15 +2050,15 @@ private void InitializeComponent() // // lbLLeft // + resources.ApplyResources(this.lbLLeft, "lbLLeft"); this.lbLLeft.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLLeft.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLLeft, "lbLLeft"); this.lbLLeft.Name = "lbLLeft"; // // bnLSRight // - this.bnLSRight.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnLSRight, "bnLSRight"); + this.bnLSRight.BackColor = System.Drawing.Color.Transparent; this.bnLSRight.ContextMenuStrip = this.cMSPresets; this.bnLSRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnLSRight.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -2069,15 +2073,15 @@ private void InitializeComponent() // // lbLright // + resources.ApplyResources(this.lbLright, "lbLright"); this.lbLright.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLright.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLright, "lbLright"); this.lbLright.Name = "lbLright"; // // bnLSDown // - this.bnLSDown.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnLSDown, "bnLSDown"); + this.bnLSDown.BackColor = System.Drawing.Color.Transparent; this.bnLSDown.ContextMenuStrip = this.cMSPresets; this.bnLSDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnLSDown.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -2092,15 +2096,15 @@ private void InitializeComponent() // // lbLDown // + resources.ApplyResources(this.lbLDown, "lbLDown"); this.lbLDown.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLDown.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLDown, "lbLDown"); this.lbLDown.Name = "lbLDown"; // // bnR2 // - this.bnR2.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnR2, "bnR2"); + this.bnR2.BackColor = System.Drawing.Color.Transparent; this.bnR2.Cursor = System.Windows.Forms.Cursors.Default; this.bnR2.FlatAppearance.BorderColor = System.Drawing.Color.White; this.bnR2.FlatAppearance.BorderSize = 0; @@ -2114,8 +2118,8 @@ private void InitializeComponent() // // bnUp // - this.bnUp.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnUp, "bnUp"); + this.bnUp.BackColor = System.Drawing.Color.Transparent; this.bnUp.ContextMenuStrip = this.cMSPresets; this.bnUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnUp.DialogResult = System.Windows.Forms.DialogResult.Cancel; @@ -2131,8 +2135,8 @@ private void InitializeComponent() // // bnDown // - this.bnDown.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnDown, "bnDown"); + this.bnDown.BackColor = System.Drawing.Color.Transparent; this.bnDown.ContextMenuStrip = this.cMSPresets; this.bnDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnDown.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -2147,8 +2151,8 @@ private void InitializeComponent() // // bnTriangle // - this.bnTriangle.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnTriangle, "bnTriangle"); + this.bnTriangle.BackColor = System.Drawing.Color.Transparent; this.bnTriangle.ContextMenuStrip = this.cMSPresets; this.bnTriangle.Cursor = System.Windows.Forms.Cursors.Default; this.bnTriangle.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -2163,8 +2167,8 @@ private void InitializeComponent() // // bnR1 // - this.bnR1.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnR1, "bnR1"); + this.bnR1.BackColor = System.Drawing.Color.Transparent; this.bnR1.Cursor = System.Windows.Forms.Cursors.Default; this.bnR1.FlatAppearance.BorderColor = System.Drawing.Color.White; this.bnR1.FlatAppearance.BorderSize = 0; @@ -2178,8 +2182,8 @@ private void InitializeComponent() // // bnSquare // - this.bnSquare.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnSquare, "bnSquare"); + this.bnSquare.BackColor = System.Drawing.Color.Transparent; this.bnSquare.ContextMenuStrip = this.cMSPresets; this.bnSquare.Cursor = System.Windows.Forms.Cursors.Default; this.bnSquare.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -2194,8 +2198,8 @@ private void InitializeComponent() // // bnRight // - this.bnRight.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnRight, "bnRight"); + this.bnRight.BackColor = System.Drawing.Color.Transparent; this.bnRight.ContextMenuStrip = this.cMSPresets; this.bnRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnRight.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -2210,15 +2214,15 @@ private void InitializeComponent() // // lbLUp // + resources.ApplyResources(this.lbLUp, "lbLUp"); this.lbLUp.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLUp.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLUp, "lbLUp"); this.lbLUp.Name = "lbLUp"; // // bnLeft // - this.bnLeft.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnLeft, "bnLeft"); + this.bnLeft.BackColor = System.Drawing.Color.Transparent; this.bnLeft.ContextMenuStrip = this.cMSPresets; this.bnLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnLeft.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -2233,15 +2237,15 @@ private void InitializeComponent() // // lbLShare // + resources.ApplyResources(this.lbLShare, "lbLShare"); this.lbLShare.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLShare.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLShare, "lbLShare"); this.lbLShare.Name = "lbLShare"; // // bnOptions // - this.bnOptions.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnOptions, "bnOptions"); + this.bnOptions.BackColor = System.Drawing.Color.Transparent; this.bnOptions.Cursor = System.Windows.Forms.Cursors.Default; this.bnOptions.FlatAppearance.BorderColor = System.Drawing.Color.White; this.bnOptions.FlatAppearance.BorderSize = 0; @@ -2255,8 +2259,8 @@ private void InitializeComponent() // // bnShare // - this.bnShare.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnShare, "bnShare"); + this.bnShare.BackColor = System.Drawing.Color.Transparent; this.bnShare.Cursor = System.Windows.Forms.Cursors.Default; this.bnShare.FlatAppearance.BorderColor = System.Drawing.Color.White; this.bnShare.FlatAppearance.BorderSize = 0; @@ -2270,15 +2274,15 @@ private void InitializeComponent() // // lbLOptions // + resources.ApplyResources(this.lbLOptions, "lbLOptions"); this.lbLOptions.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLOptions.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLOptions, "lbLOptions"); this.lbLOptions.Name = "lbLOptions"; // // bnL1 // - this.bnL1.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnL1, "bnL1"); + this.bnL1.BackColor = System.Drawing.Color.Transparent; this.bnL1.Cursor = System.Windows.Forms.Cursors.Default; this.bnL1.FlatAppearance.BorderColor = System.Drawing.Color.White; this.bnL1.FlatAppearance.BorderSize = 0; @@ -2292,8 +2296,8 @@ private void InitializeComponent() // // bnTouchRight // - this.bnTouchRight.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnTouchRight, "bnTouchRight"); + this.bnTouchRight.BackColor = System.Drawing.Color.Transparent; this.bnTouchRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnTouchRight.FlatAppearance.BorderColor = System.Drawing.Color.White; this.bnTouchRight.FlatAppearance.BorderSize = 0; @@ -2307,8 +2311,8 @@ private void InitializeComponent() // // bnL2 // - this.bnL2.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnL2, "bnL2"); + this.bnL2.BackColor = System.Drawing.Color.Transparent; this.bnL2.Cursor = System.Windows.Forms.Cursors.Default; this.bnL2.FlatAppearance.BorderColor = System.Drawing.Color.White; this.bnL2.FlatAppearance.BorderSize = 0; @@ -2322,15 +2326,15 @@ private void InitializeComponent() // // lbLTriangle // + resources.ApplyResources(this.lbLTriangle, "lbLTriangle"); this.lbLTriangle.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLTriangle.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLTriangle, "lbLTriangle"); this.lbLTriangle.Name = "lbLTriangle"; // // bnTouchLeft // - this.bnTouchLeft.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnTouchLeft, "bnTouchLeft"); + this.bnTouchLeft.BackColor = System.Drawing.Color.Transparent; this.bnTouchLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnTouchLeft.FlatAppearance.BorderColor = System.Drawing.Color.White; this.bnTouchLeft.FlatAppearance.BorderSize = 0; @@ -2344,15 +2348,15 @@ private void InitializeComponent() // // lbLSquare // + resources.ApplyResources(this.lbLSquare, "lbLSquare"); this.lbLSquare.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLSquare.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLSquare, "lbLSquare"); this.lbLSquare.Name = "lbLSquare"; // // bnTouchMulti // - this.bnTouchMulti.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnTouchMulti, "bnTouchMulti"); + this.bnTouchMulti.BackColor = System.Drawing.Color.Transparent; this.bnTouchMulti.Cursor = System.Windows.Forms.Cursors.Default; this.bnTouchMulti.FlatAppearance.BorderColor = System.Drawing.Color.White; this.bnTouchMulti.FlatAppearance.BorderSize = 0; @@ -2366,22 +2370,22 @@ private void InitializeComponent() // // lbLCircle // + resources.ApplyResources(this.lbLCircle, "lbLCircle"); this.lbLCircle.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLCircle.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLCircle, "lbLCircle"); this.lbLCircle.Name = "lbLCircle"; // // lbLCross // + resources.ApplyResources(this.lbLCross, "lbLCross"); this.lbLCross.BackColor = System.Drawing.SystemColors.ControlLightLight; this.lbLCross.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbLCross, "lbLCross"); this.lbLCross.Name = "lbLCross"; // // bnTouchUpper // - this.bnTouchUpper.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnTouchUpper, "bnTouchUpper"); + this.bnTouchUpper.BackColor = System.Drawing.Color.Transparent; this.bnTouchUpper.Cursor = System.Windows.Forms.Cursors.Default; this.bnTouchUpper.FlatAppearance.BorderColor = System.Drawing.Color.White; this.bnTouchUpper.FlatAppearance.BorderSize = 0; @@ -2395,9 +2399,9 @@ private void InitializeComponent() // // btnLightbar // + resources.ApplyResources(this.btnLightbar, "btnLightbar"); this.btnLightbar.BackColor = System.Drawing.Color.Transparent; this.btnLightbar.BackgroundImage = global::DS4Windows.Properties.Resources.DS4_lightbar; - resources.ApplyResources(this.btnLightbar, "btnLightbar"); this.btnLightbar.Cursor = System.Windows.Forms.Cursors.Default; this.btnLightbar.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.btnLightbar.FlatAppearance.BorderSize = 0; @@ -2411,8 +2415,8 @@ private void InitializeComponent() // // bnPS // - this.bnPS.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnPS, "bnPS"); + this.bnPS.BackColor = System.Drawing.Color.Transparent; this.bnPS.Cursor = System.Windows.Forms.Cursors.Default; this.bnPS.FlatAppearance.BorderColor = System.Drawing.Color.White; this.bnPS.FlatAppearance.BorderSize = 0; @@ -2426,8 +2430,8 @@ private void InitializeComponent() // // bnCross // - this.bnCross.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnCross, "bnCross"); + this.bnCross.BackColor = System.Drawing.Color.Transparent; this.bnCross.ContextMenuStrip = this.cMSPresets; this.bnCross.Cursor = System.Windows.Forms.Cursors.Default; this.bnCross.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -2442,8 +2446,8 @@ private void InitializeComponent() // // bnCircle // - this.bnCircle.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.bnCircle, "bnCircle"); + this.bnCircle.BackColor = System.Drawing.Color.Transparent; this.bnCircle.ContextMenuStrip = this.cMSPresets; this.bnCircle.Cursor = System.Windows.Forms.Cursors.Default; this.bnCircle.FlatAppearance.BorderColor = System.Drawing.Color.White; @@ -2458,34 +2462,34 @@ private void InitializeComponent() // // lbControlName // + resources.ApplyResources(this.lbControlName, "lbControlName"); this.lbControlName.BackColor = System.Drawing.Color.Transparent; this.lbControlName.ForeColor = System.Drawing.SystemColors.ControlLightLight; - resources.ApplyResources(this.lbControlName, "lbControlName"); this.lbControlName.Name = "lbControlName"; this.lbControlName.Click += new System.EventHandler(this.Show_ControlsList); // // tPSpecial // - this.tPSpecial.Controls.Add(this.pnlActions); resources.ApplyResources(this.tPSpecial, "tPSpecial"); + this.tPSpecial.Controls.Add(this.pnlActions); this.tPSpecial.Name = "tPSpecial"; this.tPSpecial.UseVisualStyleBackColor = true; // // pnlActions // + resources.ApplyResources(this.pnlActions, "pnlActions"); this.pnlActions.Controls.Add(this.lVActions); this.pnlActions.Controls.Add(this.panel2); - resources.ApplyResources(this.pnlActions, "pnlActions"); this.pnlActions.Name = "pnlActions"; // // lVActions // + resources.ApplyResources(this.lVActions, "lVActions"); this.lVActions.CheckBoxes = true; this.lVActions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.cHName, this.cHTrigger, this.cHAction}); - resources.ApplyResources(this.lVActions, "lVActions"); this.lVActions.FullRowSelect = true; this.lVActions.HideSelection = false; this.lVActions.MultiSelect = false; @@ -2509,17 +2513,17 @@ private void InitializeComponent() // // panel2 // + resources.ApplyResources(this.panel2, "panel2"); this.panel2.Controls.Add(this.fLPActionButtons); this.panel2.Controls.Add(this.lbActionsTip); - resources.ApplyResources(this.panel2, "panel2"); this.panel2.Name = "panel2"; // // fLPActionButtons // + resources.ApplyResources(this.fLPActionButtons, "fLPActionButtons"); this.fLPActionButtons.Controls.Add(this.btnNewAction); this.fLPActionButtons.Controls.Add(this.btnEditAction); this.fLPActionButtons.Controls.Add(this.btnRemAction); - resources.ApplyResources(this.fLPActionButtons, "fLPActionButtons"); this.fLPActionButtons.Name = "fLPActionButtons"; // // btnNewAction @@ -2550,14 +2554,15 @@ private void InitializeComponent() // // tCSens // + resources.ApplyResources(this.tCSens, "tCSens"); this.tCSens.Controls.Add(this.tPDeadzone); this.tCSens.Controls.Add(this.tPCurve); - resources.ApplyResources(this.tCSens, "tCSens"); this.tCSens.Name = "tCSens"; this.tCSens.SelectedIndex = 0; // // tPDeadzone // + resources.ApplyResources(this.tPDeadzone, "tPDeadzone"); this.tPDeadzone.BackColor = System.Drawing.Color.WhiteSmoke; this.tPDeadzone.Controls.Add(this.lbL2); this.tPDeadzone.Controls.Add(this.nUDL2); @@ -2571,11 +2576,11 @@ private void InitializeComponent() this.tPDeadzone.Controls.Add(this.lbRS); this.tPDeadzone.Controls.Add(this.lbLS); this.tPDeadzone.Controls.Add(this.nUDSZ); - resources.ApplyResources(this.tPDeadzone, "tPDeadzone"); this.tPDeadzone.Name = "tPDeadzone"; // // tPCurve // + resources.ApplyResources(this.tPCurve, "tPCurve"); this.tPCurve.BackColor = System.Drawing.Color.WhiteSmoke; this.tPCurve.Controls.Add(this.nUDLSCurve); this.tPCurve.Controls.Add(this.nUDRSCurve); @@ -2583,28 +2588,27 @@ private void InitializeComponent() this.tPCurve.Controls.Add(this.lbRSCurvePercent); this.tPCurve.Controls.Add(this.lbLSCurvePercent); this.tPCurve.Controls.Add(this.lbLSCurve); - resources.ApplyResources(this.tPCurve, "tPCurve"); this.tPCurve.Name = "tPCurve"; // // nUDLSCurve // + resources.ApplyResources(this.nUDLSCurve, "nUDLSCurve"); this.nUDLSCurve.Increment = new decimal(new int[] { 10, 0, 0, 0}); - resources.ApplyResources(this.nUDLSCurve, "nUDLSCurve"); this.nUDLSCurve.Name = "nUDLSCurve"; this.nUDLSCurve.ValueChanged += new System.EventHandler(this.nUDLSCurve_ValueChanged); // // nUDRSCurve // + resources.ApplyResources(this.nUDRSCurve, "nUDRSCurve"); this.nUDRSCurve.Increment = new decimal(new int[] { 10, 0, 0, 0}); - resources.ApplyResources(this.nUDRSCurve, "nUDRSCurve"); this.nUDRSCurve.Name = "nUDRSCurve"; this.nUDRSCurve.ValueChanged += new System.EventHandler(this.nUDRSCurve_ValueChanged); // @@ -2642,12 +2646,12 @@ private void InitializeComponent() // // gBGyro // + resources.ApplyResources(this.gBGyro, "gBGyro"); this.gBGyro.BackColor = System.Drawing.Color.WhiteSmoke; this.gBGyro.Controls.Add(this.rBSAControls); this.gBGyro.Controls.Add(this.rBSAMouse); this.gBGyro.Controls.Add(this.pnlSAMouse); this.gBGyro.Controls.Add(this.fLPTiltControls); - resources.ApplyResources(this.gBGyro, "gBGyro"); this.gBGyro.Name = "gBGyro"; this.gBGyro.TabStop = false; // @@ -2669,6 +2673,7 @@ private void InitializeComponent() // // pnlSAMouse // + resources.ApplyResources(this.pnlSAMouse, "pnlSAMouse"); this.pnlSAMouse.Controls.Add(this.cBGyroInvertY); this.pnlSAMouse.Controls.Add(this.cBGyroInvertX); this.pnlSAMouse.Controls.Add(this.lbGyroInvert); @@ -2676,7 +2681,6 @@ private void InitializeComponent() this.pnlSAMouse.Controls.Add(this.btnGyroTriggers); this.pnlSAMouse.Controls.Add(this.nUDGyroSensitivity); this.pnlSAMouse.Controls.Add(this.lbGyroSens); - resources.ApplyResources(this.pnlSAMouse, "pnlSAMouse"); this.pnlSAMouse.Name = "pnlSAMouse"; // // cBGyroInvertY @@ -2733,6 +2737,7 @@ private void InitializeComponent() // // gBSensitivity // + resources.ApplyResources(this.gBSensitivity, "gBSensitivity"); this.gBSensitivity.BackColor = System.Drawing.Color.WhiteSmoke; this.gBSensitivity.Controls.Add(this.lbL2S); this.gBSensitivity.Controls.Add(this.nUDL2S); @@ -2746,7 +2751,6 @@ private void InitializeComponent() this.gBSensitivity.Controls.Add(this.lbRSS); this.gBSensitivity.Controls.Add(this.lbLSS); this.gBSensitivity.Controls.Add(this.nUDSZS); - resources.ApplyResources(this.gBSensitivity, "gBSensitivity"); this.gBSensitivity.Name = "gBSensitivity"; this.gBSensitivity.TabStop = false; // @@ -2757,13 +2761,13 @@ private void InitializeComponent() // // nUDL2S // + resources.ApplyResources(this.nUDL2S, "nUDL2S"); this.nUDL2S.DecimalPlaces = 2; this.nUDL2S.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - resources.ApplyResources(this.nUDL2S, "nUDL2S"); this.nUDL2S.Maximum = new decimal(new int[] { 15, 0, @@ -2784,13 +2788,13 @@ private void InitializeComponent() // // nUDLSS // + resources.ApplyResources(this.nUDLSS, "nUDLSS"); this.nUDLSS.DecimalPlaces = 2; this.nUDLSS.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - resources.ApplyResources(this.nUDLSS, "nUDLSS"); this.nUDLSS.Maximum = new decimal(new int[] { 15, 0, @@ -2816,13 +2820,13 @@ private void InitializeComponent() // // nUDR2S // + resources.ApplyResources(this.nUDR2S, "nUDR2S"); this.nUDR2S.DecimalPlaces = 2; this.nUDR2S.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - resources.ApplyResources(this.nUDR2S, "nUDR2S"); this.nUDR2S.Maximum = new decimal(new int[] { 15, 0, @@ -2848,13 +2852,13 @@ private void InitializeComponent() // // nUDRSS // + resources.ApplyResources(this.nUDRSS, "nUDRSS"); this.nUDRSS.DecimalPlaces = 2; this.nUDRSS.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - resources.ApplyResources(this.nUDRSS, "nUDRSS"); this.nUDRSS.Maximum = new decimal(new int[] { 15, 0, @@ -2880,13 +2884,13 @@ private void InitializeComponent() // // nUDSXS // + resources.ApplyResources(this.nUDSXS, "nUDSXS"); this.nUDSXS.DecimalPlaces = 2; this.nUDSXS.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - resources.ApplyResources(this.nUDSXS, "nUDSXS"); this.nUDSXS.Maximum = new decimal(new int[] { 15, 0, @@ -2917,13 +2921,13 @@ private void InitializeComponent() // // nUDSZS // + resources.ApplyResources(this.nUDSZS, "nUDSZS"); this.nUDSZS.DecimalPlaces = 2; this.nUDSZS.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - resources.ApplyResources(this.nUDSZS, "nUDSZS"); this.nUDSZS.Maximum = new decimal(new int[] { 15, 0, @@ -2944,6 +2948,7 @@ private void InitializeComponent() // // cMGyroTriggers // + resources.ApplyResources(this.cMGyroTriggers, "cMGyroTriggers"); this.cMGyroTriggers.BackColor = System.Drawing.SystemColors.Control; this.cMGyroTriggers.ImageScalingSize = new System.Drawing.Size(20, 20); this.cMGyroTriggers.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { @@ -2970,165 +2975,164 @@ private void InitializeComponent() this.cMGyroTriggers.Name = "cMGyroTriggers"; this.cMGyroTriggers.ShowCheckMargin = true; this.cMGyroTriggers.ShowImageMargin = false; - resources.ApplyResources(this.cMGyroTriggers, "cMGyroTriggers"); // // crossToolStripMenuItem // + resources.ApplyResources(this.crossToolStripMenuItem, "crossToolStripMenuItem"); this.crossToolStripMenuItem.CheckOnClick = true; this.crossToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.crossToolStripMenuItem.Name = "crossToolStripMenuItem"; - resources.ApplyResources(this.crossToolStripMenuItem, "crossToolStripMenuItem"); this.crossToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // circleToolStripMenuItem // + resources.ApplyResources(this.circleToolStripMenuItem, "circleToolStripMenuItem"); this.circleToolStripMenuItem.CheckOnClick = true; this.circleToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.circleToolStripMenuItem.Name = "circleToolStripMenuItem"; - resources.ApplyResources(this.circleToolStripMenuItem, "circleToolStripMenuItem"); this.circleToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // squareToolStripMenuItem // + resources.ApplyResources(this.squareToolStripMenuItem, "squareToolStripMenuItem"); this.squareToolStripMenuItem.CheckOnClick = true; this.squareToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.squareToolStripMenuItem.Name = "squareToolStripMenuItem"; - resources.ApplyResources(this.squareToolStripMenuItem, "squareToolStripMenuItem"); this.squareToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // triangleToolStripMenuItem // + resources.ApplyResources(this.triangleToolStripMenuItem, "triangleToolStripMenuItem"); this.triangleToolStripMenuItem.CheckOnClick = true; this.triangleToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.triangleToolStripMenuItem.Name = "triangleToolStripMenuItem"; - resources.ApplyResources(this.triangleToolStripMenuItem, "triangleToolStripMenuItem"); this.triangleToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // l1ToolStripMenuItem // + resources.ApplyResources(this.l1ToolStripMenuItem, "l1ToolStripMenuItem"); this.l1ToolStripMenuItem.CheckOnClick = true; this.l1ToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.l1ToolStripMenuItem.Name = "l1ToolStripMenuItem"; - resources.ApplyResources(this.l1ToolStripMenuItem, "l1ToolStripMenuItem"); this.l1ToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // l2ToolStripMenuItem // + resources.ApplyResources(this.l2ToolStripMenuItem, "l2ToolStripMenuItem"); this.l2ToolStripMenuItem.CheckOnClick = true; this.l2ToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.l2ToolStripMenuItem.Name = "l2ToolStripMenuItem"; - resources.ApplyResources(this.l2ToolStripMenuItem, "l2ToolStripMenuItem"); this.l2ToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // r1ToolStripMenuItem // + resources.ApplyResources(this.r1ToolStripMenuItem, "r1ToolStripMenuItem"); this.r1ToolStripMenuItem.CheckOnClick = true; this.r1ToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.r1ToolStripMenuItem.Name = "r1ToolStripMenuItem"; - resources.ApplyResources(this.r1ToolStripMenuItem, "r1ToolStripMenuItem"); this.r1ToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // r2ToolStripMenuItem // + resources.ApplyResources(this.r2ToolStripMenuItem, "r2ToolStripMenuItem"); this.r2ToolStripMenuItem.CheckOnClick = true; this.r2ToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.r2ToolStripMenuItem.Name = "r2ToolStripMenuItem"; - resources.ApplyResources(this.r2ToolStripMenuItem, "r2ToolStripMenuItem"); this.r2ToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // onTouchpadToolStripMenuItem // + resources.ApplyResources(this.onTouchpadToolStripMenuItem, "onTouchpadToolStripMenuItem"); this.onTouchpadToolStripMenuItem.CheckOnClick = true; this.onTouchpadToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.onTouchpadToolStripMenuItem.Name = "onTouchpadToolStripMenuItem"; - resources.ApplyResources(this.onTouchpadToolStripMenuItem, "onTouchpadToolStripMenuItem"); this.onTouchpadToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // downToolStripMenuItem // + resources.ApplyResources(this.downToolStripMenuItem, "downToolStripMenuItem"); this.downToolStripMenuItem.CheckOnClick = true; this.downToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.downToolStripMenuItem.Name = "downToolStripMenuItem"; - resources.ApplyResources(this.downToolStripMenuItem, "downToolStripMenuItem"); this.downToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // leftToolStripMenuItem // + resources.ApplyResources(this.leftToolStripMenuItem, "leftToolStripMenuItem"); this.leftToolStripMenuItem.CheckOnClick = true; this.leftToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.leftToolStripMenuItem.Name = "leftToolStripMenuItem"; - resources.ApplyResources(this.leftToolStripMenuItem, "leftToolStripMenuItem"); this.leftToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // rightToolStripMenuItem // + resources.ApplyResources(this.rightToolStripMenuItem, "rightToolStripMenuItem"); this.rightToolStripMenuItem.CheckOnClick = true; this.rightToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.rightToolStripMenuItem.Name = "rightToolStripMenuItem"; - resources.ApplyResources(this.rightToolStripMenuItem, "rightToolStripMenuItem"); this.rightToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // l3ToolStripMenuItem // + resources.ApplyResources(this.l3ToolStripMenuItem, "l3ToolStripMenuItem"); this.l3ToolStripMenuItem.CheckOnClick = true; this.l3ToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.l3ToolStripMenuItem.Name = "l3ToolStripMenuItem"; - resources.ApplyResources(this.l3ToolStripMenuItem, "l3ToolStripMenuItem"); this.l3ToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // r3ToolStripMenuItem // + resources.ApplyResources(this.r3ToolStripMenuItem, "r3ToolStripMenuItem"); this.r3ToolStripMenuItem.CheckOnClick = true; this.r3ToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.r3ToolStripMenuItem.Name = "r3ToolStripMenuItem"; - resources.ApplyResources(this.r3ToolStripMenuItem, "r3ToolStripMenuItem"); this.r3ToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // fingerOnTouchpadToolStripMenuItem // + resources.ApplyResources(this.fingerOnTouchpadToolStripMenuItem, "fingerOnTouchpadToolStripMenuItem"); this.fingerOnTouchpadToolStripMenuItem.CheckOnClick = true; this.fingerOnTouchpadToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.fingerOnTouchpadToolStripMenuItem.Name = "fingerOnTouchpadToolStripMenuItem"; - resources.ApplyResources(this.fingerOnTouchpadToolStripMenuItem, "fingerOnTouchpadToolStripMenuItem"); this.fingerOnTouchpadToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // fingersOnTouchpadToolStripMenuItem // + resources.ApplyResources(this.fingersOnTouchpadToolStripMenuItem, "fingersOnTouchpadToolStripMenuItem"); this.fingersOnTouchpadToolStripMenuItem.CheckOnClick = true; this.fingersOnTouchpadToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.fingersOnTouchpadToolStripMenuItem.Name = "fingersOnTouchpadToolStripMenuItem"; - resources.ApplyResources(this.fingersOnTouchpadToolStripMenuItem, "fingersOnTouchpadToolStripMenuItem"); this.fingersOnTouchpadToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // optionsToolStripMenuItem // + resources.ApplyResources(this.optionsToolStripMenuItem, "optionsToolStripMenuItem"); this.optionsToolStripMenuItem.CheckOnClick = true; this.optionsToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem"; - resources.ApplyResources(this.optionsToolStripMenuItem, "optionsToolStripMenuItem"); this.optionsToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // shareToolStripMenuItem // + resources.ApplyResources(this.shareToolStripMenuItem, "shareToolStripMenuItem"); this.shareToolStripMenuItem.CheckOnClick = true; this.shareToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.shareToolStripMenuItem.Name = "shareToolStripMenuItem"; - resources.ApplyResources(this.shareToolStripMenuItem, "shareToolStripMenuItem"); this.shareToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // pSToolStripMenuItem // + resources.ApplyResources(this.pSToolStripMenuItem, "pSToolStripMenuItem"); this.pSToolStripMenuItem.CheckOnClick = true; this.pSToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.pSToolStripMenuItem.Name = "pSToolStripMenuItem"; - resources.ApplyResources(this.pSToolStripMenuItem, "pSToolStripMenuItem"); this.pSToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // alwaysOnToolStripMenuItem // + resources.ApplyResources(this.alwaysOnToolStripMenuItem, "alwaysOnToolStripMenuItem"); this.alwaysOnToolStripMenuItem.CheckOnClick = true; this.alwaysOnToolStripMenuItem.Name = "alwaysOnToolStripMenuItem"; - resources.ApplyResources(this.alwaysOnToolStripMenuItem, "alwaysOnToolStripMenuItem"); this.alwaysOnToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // Options @@ -3167,10 +3171,10 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.nUDL2)).EndInit(); this.gBTouchpad.ResumeLayout(false); this.gBTouchpad.PerformLayout(); - this.fLPTouchSwipe.ResumeLayout(false); - this.cMSPresets.ResumeLayout(false); this.pnlTPMouse.ResumeLayout(false); this.pnlTPMouse.PerformLayout(); + this.fLPTouchSwipe.ResumeLayout(false); + this.cMSPresets.ResumeLayout(false); this.gBOther.ResumeLayout(false); this.gBOther.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pBProgram)).EndInit(); diff --git a/DS4Windows/DS4Forms/Options.de-DE.resx b/DS4Windows/DS4Forms/Options.de-DE.resx index 09ca403d30..1994b8da34 100644 --- a/DS4Windows/DS4Forms/Options.de-DE.resx +++ b/DS4Windows/DS4Forms/Options.de-DE.resx @@ -238,9 +238,6 @@ Starte mit Gleiten/Blättern aus - - 154, 244 - 153, 26 @@ -253,12 +250,6 @@ Standard - - 153, 26 - - - Steuerkreuz - 156, 26 @@ -277,11 +268,11 @@ Invertiert Y - + 153, 26 - - Linker Stick + + Steuerkreuz 156, 26 @@ -301,11 +292,11 @@ Invertiert Y - + 153, 26 - - Rechter Stick + + Linker Stick 156, 26 @@ -325,38 +316,38 @@ Invertiert Y + + 153, 26 + + + Rechter Stick + 153, 26 Gesichtsknöpfe - - 153, 26 - 148, 26 Scancode - + 153, 26 - - Pfeiltasten - 148, 26 Scancode - + 153, 26 - - Maus + + Pfeiltasten 156, 26 @@ -376,8 +367,14 @@ Invertiert Y - - Andere + + 153, 26 + + + Maus + + + 154, 244 7, 183 @@ -416,7 +413,7 @@ Benutze Controller - 184, 42 + 173, 43 163, 21 @@ -427,11 +424,15 @@ 140, 110 + + + False + - 177, 102 + 184, 103 - 203, 21 + 142, 41 für Zuordung und Auslesen @@ -445,8 +446,8 @@ Trenne, wenn nicht benutzt - - Lichtbalken + + Andere 288, 271 @@ -481,21 +482,8 @@ Während des Ladens: - - - False - - - 165, 19 - - - 165, 98 - - - Benutze für den Umschalter Modus eine andere Farbe - - - Vibration + + Lichtbalken 214, 19 @@ -506,6 +494,9 @@ Teste schwache Vibration + + Vibration + Rechter Stick @@ -521,9 +512,6 @@ Sixaxis: X Achse ist vertauscht, um sie leichter lesen zu können - - 277, 156 - 163, 30 @@ -551,38 +539,17 @@ 163, 98 - - Modifikator - - - 41, 17 - - - Halte - - - 345, 372 - - - 201, 17 - - - um diese Steuerung zu nutzen - - - (nichts)/Umschalter aus - - - Steuerung + + 277, 156 - 244, 30 + 102, 295 Drücke den Lichtbalken für den Farbenauswähler - - Spezialaktionen + + Steuerung Auslöser @@ -602,6 +569,9 @@ Halte die ausgewählten Tasten, um die Aktion auszuführen. Hake die Aktion an, um sie im Spiel zu benutzen + + Spezialaktionen + Toter Bereich @@ -641,9 +611,6 @@ Gyro Empfindlichkeit: - - 290, 524 - 289, 26 @@ -707,47 +674,13 @@ 289, 26 - + 289, 26 - - Zurücksetzen + + Immer an - - - Inherit - - - Normal - - - Name - - - Empfindlichkeit - - - Touchpad - - - B - - - G - - - B - - - G - - - R - - - R - - - Controller Kalibrierung + + 290, 524 \ No newline at end of file diff --git a/DS4Windows/DS4Forms/Options.fr-FR.resx b/DS4Windows/DS4Forms/Options.fr-FR.resx index 92bae4932c..41a99da862 100644 --- a/DS4Windows/DS4Forms/Options.fr-FR.resx +++ b/DS4Windows/DS4Forms/Options.fr-FR.resx @@ -119,13 +119,7 @@ - 38, 276 - - - 10, 277 - - - 8, 239 + 40, 269 220, 21 @@ -140,7 +134,13 @@ V - 90, 280 + 92, 273 + + + 105, 17 + + + secondes/cycle 158, 48 @@ -181,11 +181,15 @@ 92, 11 + + + False + 9, 14 - 96, 34 + 96, 38 Sensibilité de la souris : @@ -196,15 +200,27 @@ Coin en bas à droite pour RMB - - 30, 17 + + 191, 21 + + + Compensation de sursaut - - mins + + 299, 57 + + + 230, 55 11, 211 + + 90, 21 + + + Vider HID + Tester fort @@ -229,33 +245,18 @@ 113, 21 - - Pavé tactile - - - 196, 21 - - - Démarrer avec le scroll off - - - 161, 244 - - 160, 26 + 184, 26 - 157, 6 + 181, 6 - 160, 26 + 184, 26 Par défaut - - 160, 26 - 143, 26 @@ -274,11 +275,11 @@ Y inversé - - 160, 26 + + 184, 26 - - Stick Gauche + + Croix Directionnelle 143, 26 @@ -298,11 +299,11 @@ Y inversé - - 160, 26 + + 184, 26 - - Stick Droit + + Stick Gauche 143, 26 @@ -322,27 +323,39 @@ Y inversé + + 184, 26 + + + Stick Droit + - 160, 26 + 184, 26 - Boutons de face + Boutons avant + + + 194, 26 + + + Sans/ Code Scan - 160, 26 + 184, 26 + + + 194, 26 + + + Sans/ Code Scan - 160, 26 + 184, 26 Flèches - - 160, 26 - - - Souris - 143, 26 @@ -361,8 +374,23 @@ Y inversé - - Autre + + 184, 26 + + + Souris + + + 185, 244 + + + 217, 21 + + + Démarrer sans Glisser/Défiler + + + Pavé tactile 10, 182 @@ -376,6 +404,9 @@ 267, 126 + + False + 9, 124 @@ -400,6 +431,9 @@ Utiliser manette + + False + 182, 12 @@ -412,6 +446,9 @@ 115, 90 + + False + 153, 82 @@ -421,14 +458,20 @@ Pour mappage et lecture valeurs - - Barre lumineuse + + 213, 21 + + + Déconnecter lorsque inutilisé + + + Autre - 254, 275 + 275, 275 - 189, 275 + 210, 275 Clignoter à @@ -451,30 +494,24 @@ En charge: - - 308, 21 - - - Utiliser une autre couleur pour le mode Shift - - - 17, 17 - - - V - - - Vibrer + + Barre lumineuse Tester léger - - Visualisation des commandes + + Vibrer Stick Droit + + 130, 17 + + + Delais Saisi: N/Ams + Stick Gauche @@ -499,30 +536,15 @@ Gyroscope - - 66, 17 - - - Maintenir - - - 1182, 553 - - - 188, 17 - - - pour utiliser ces commandes + + 327, 152 - - (rien)/shift off + + Cliquez la barre de lumière pour changer sa couleur Commandes - - Actions spéciales - Nom @@ -538,28 +560,124 @@ Effacer action + + Maintenir les touches sélectionnées pour effectuer l'action, cocher l'Action pour l'utiliser losque le profil est charger. Max 50 actions. + + + Actions Spéciales + Zone morte - - Cliquez sur la barre de lumière pour changer de couleur + + Courbe - - Normal + + 173, 25 - - B + + 167, 21 + + + Utiliser pour contrôles + + + 10, 25 + + + 163, 21 + + + Utiliser comme souris + + + 63, 17 - Invertir : + Inverser: + + + 77, 17 + + + Gachettes: + + + 149, 17 + + + Sensibilité Gyroscope: + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + 259, 26 + + + Doigts sur le Pavé Tactile + + + 259, 26 + + + 2 Doigts sur le Pavé Tactile + + + 259, 26 + + + 259, 26 + + + 259, 26 - - B + + 259, 26 - - R + + Toujours allumer - - R + + 260, 524 \ No newline at end of file diff --git a/DS4Windows/DS4Forms/Options.resx b/DS4Windows/DS4Forms/Options.resx index 1aee764c44..397cd85953 100644 --- a/DS4Windows/DS4Forms/Options.resx +++ b/DS4Windows/DS4Forms/Options.resx @@ -117,9534 +117,7608 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Flat - - - NoControl - - - 55, 11 - - - 4, 4, 4, 4 - - - 16, 16 + + 151, 26 - - 49 - - - lowColorChooserButton - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - pnlLowBattery + + pnlSAMouse - - 0 + + + Yes - - 38, 269 + + NoControl - - 4, 4, 4, 4 + + None - - 49, 22 + + gBSensitivity - - 167 + + 300 - - nUDRainbow + + pnlController - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 236 - - gBLightbar + + Other - - 10 + + fLPSettings - + False - - NoControl + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 91 + + 210, 29 - - 4, 4, 4, 4 + + bnL2 - - 125, 25 + + 288 - - 12 + + 31, 156 - - tBBlueBar + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 40 - - pnlFull + + btnRumbleHeavyTest - - 6 + + nUDRumbleBoost - + False - - NoControl + + lbLRS - - 32, 62 + + NoControl - - 4, 4, 4, 4 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 125, 25 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + fingerOnTouchpadToolStripMenuItem - - tBGreenBar + + gBLightbar - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - pnlFull + + 33, 33 - - 5 + + pnlLowBattery - - False + + 3 - - NoControl + + 4, 4, 4, 4 - - 32, 30 + + 171 - + 4, 4, 4, 4 - - 125, 25 - - - 10 + + gBRumble - - tBRedBar + + 5 - - System.Windows.Forms.TrackBar, 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 - - pnlFull + + tPCurve - - 4 + + Yes - - True + + 11 - - NoControl + + r3ToolStripMenuItem - - 8, 239 + + 3 - + 4, 4, 4, 4 - - 147, 21 + + gBRumble - - 162 + + pnlController - - Color by Battery % + + 2 - - cBLightbyBattery + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, 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 - - gBLightbar + + 0 - - 12 + + 4, 4, 4, 4 - - True + + 4 - - NoControl + + 340, 98 - - 11, 95 + + gBSensitivity - - 4, 0, 4, 0 + + Controller Readings - - 17, 17 + + bnCircle - - 160 + + 25, 17 - - B + + 4, 25 - - lbBlue + + 237 - + + 211 + + + gBOther + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlFull + + 61, 24 - - 3 + + G - - True + + 151, 26 - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 12, 66 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 19, 17 + + 4, 4, 4, 4 - - 159 + + 8 - - G + + 214 - - lbGreen + + 91, 151 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 50, 22 - - pnlFull + + 8 - - 2 + + 265, 3 - - True + + tBGreenBar - - NoControl + + 285 - - 90, 273 + + 89, 99 - - 4, 0, 4, 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 73, 17 + + 61, 22 - - 157 + + 5, 69 secs/cycle - - lbspc - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Left Touch : - - gBLightbar + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + btnChargingColor - - True + + Right Stick Left : - + NoControl - - 12, 34 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + Pulse - - 18, 17 + + 4, 4, 4, 4 - - 158 + + lbGyroXP - - R + + gBSensitivity - - lbRed + + System.Windows.Forms.TrackBar, 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 + + 54, 22 - - pnlFull + + 100, 29 - - 1 + + Left Button - - True + + Yes - + + btnRumbleLightTest + + NoControl - - 136, 49 + + Flat - - 4, 4, 4, 4 + + 291 - - No + + cMGyroTriggers - - 104, 21 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 226 + + pnlSAMouse - - Double Tap + + lbLowBlue - - cBDoubleTap + + lbGyroInvert - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 251 - - pnlTPMouse + + 2 - - 1 + + 100, 29 - - True + + False - - NoControl + + gBOther - - 14, 49 + + None - - 4, 4, 4, 4 + + None - + Yes - - 55, 21 + + 6 - - 230 + + lbSixaxisZS - - Tap + + 18, 109 - - cBTap + + btnLightbar - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + fLPTouchSwipe - - pnlTPMouse + + lbSwipeLeft - - 6 + + gBLightbar - - 79, 49 + + 705, 593 - - 4, 4, 4, 4 + + Right X-Axis- - - 50, 22 + + NoControl - - 227 + + 212 - - nUDTap + + 50, 22 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlTPMouse + + 109, 92 - - 4 + + bnR3 - - True + + 151, 26 - - NoControl + + 100, 29 - - 135, 12 + + gBOther - - 4, 4, 4, 4 + + None - - Yes + + 5 - - 65, 21 + + False - - 231 + + TopRight - - Scroll + + Popup - - cBScroll + + 4, 4, 4, 4 - - System.Windows.Forms.CheckBox, 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 - - pnlTPMouse + + 27, 17 - - 2 + + False - - True + + 4, 4, 4, 4 - - NoControl + + fLPTiltControls - - 9, 12 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + 61, 22 - - Yes + + 233, 76 - - 61, 21 + + Mouse +Acceleration - - 232 + + 4, 4 - - Slide + + Flat - - cBSlide + + 4, 4, 4, 4 - - System.Windows.Forms.CheckBox, 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 - - pnlTPMouse + + Flat - - 7 + + 328, 190 - - 209, 11 + + tPDeadzone - - 4, 4, 4, 4 + + 203 - - 50, 22 + + -4, 62 - - 228 + + 0 - - nUDScroll + + 170, 29 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 51 - - pnlTPMouse + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + 4, 4, 4, 4 - - 79, 11 + + NoControl - - 4, 4, 4, 4 + + NoControl - - 50, 22 + + nUDLSCurve - - 229 + + lBControls - - nUDTouch + + True - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlSAMouse - - pnlTPMouse + + 55, 11 - - 8 + + 61, 24 - - True + + 4, 4, 4, 4 - - NoControl + + 233, 26 - - 6, 21 + + $this - + 4, 0, 4, 0 - - 121, 17 - - - 206 + + tPDeadzone - - Mouse Sensitivity: + + None - - TopRight + + 4, 4, 4, 4 - - lbButtonMouseSens + + pnlController - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + R2 - - gBOther + + 167 - - 10 + + MiddleLeft - - True + + Flat - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18, 109 + + cBFlashType - + 4, 4, 4, 4 - - No + + Flat - - 158, 21 + + B - - 223 + + 151, 26 - - Lower Right as RMB + + 211 - - cBlowerRCOn + + lbActionsTip - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 41 - - pnlTPMouse + + pnlController - - 5 + + 89, 65 - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18, 82 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + 4, 4, 4, 4 - - No - - - 155, 21 - - - 224 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Jitter Compensation + + NoControl - - cBTouchpadJitterCompensation + + circleToolStripMenuItem - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Normal - - pnlTPMouse + + L2 - - 3 + + 4, 4, 4, 4 - - True + + Action - - NoControl + + advColorDialog - - 8, 5 + + gBSensitivity - - 4, 0, 4, 0 + + Rainbow - - 24, 17 + + lbSixaxisZ - - 196 + + 125, 25 - - L2 + + 237 - - lbL2 + + 84 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - tPDeadzone + + pnlController - - 0 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + True - - NoControl - - - 102, 6 + + 4, 4, 4, 4 - - 4, 0, 4, 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 26, 17 + + tPControls - - 197 + + NoControl - - R2 + + 18, 108 - - lbR2 + + 208 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - tPDeadzone + + NoControl - - 7 + + fLPTouchSwipe - - True + + cBMouseAccel - + NoControl - - 210, 59 - - - 4, 0, 4, 0 + + 4, 4, 4, 4 - - 37, 17 + + pnlSATrack - - 200 + + 5, 23 - - mins + + 2 - - lbIdleMinutes + + 6 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None - - gBOther + + bnTouchRight - - 13 + + lbLSCurvePercent - - 142, 55 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + NoControl - - 61, 22 + + Right Stick - - 201 + + X - - nUDIdleDisconnect + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBOther + + r2ToolStripMenuItem - - 8 + + NoControl - - 131, 3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + 5 - - 50, 22 + + True - - 202 + + Flat - - nUDR2 + + 151, 26 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 288 - - tPDeadzone + + lbspc - - 4 + + 216 - - flushHIDQueue + + 136, 26 - - True + + 205 - - NoControl + + 101, 5 - - 7, 202 + + Cross: A - - 4, 4, 4, 4 - - - Yes - - - 91, 21 - - - 198 + + 4, 0, 4, 0 - - Flush HID + + Fill - - cBFlushHIDQueue + + 100, 29 - - System.Windows.Forms.CheckBox, 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 - - gBOther + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 12 + + PS - - 5, 23 + + 3, 324 - - 4, 4, 4, 4 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 54, 22 + + tBLowBlueBar - - 211 + + None - - nUDRumbleBoost + + 67, 25 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnUp - - gBRumble + + NoControl - - 3 + + Rumble - + NoControl - - 96, 19 + + mins - - 4, 4, 4, 4 + + fLPTouchSwipe - - 89, 29 + + R1 : - - 214 + + Sixaxis Right : - - Test Heavy + + Left Stick Down : - - btnRumbleHeavyTest + + 182, 2 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - gBRumble + + 4, 4 - - 2 + + Left Y-Axis+ - - True + + 97, 168 - - NoControl + + 47, 17 - - 9, 9 + + 29 - - 4, 0, 4, 0 + + 0 - - 34, 17 + + 250 - - 225 + + Idle Disconnect - - Full: + + pnlController - - lbFull + + None - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4 - - pnlFull + + 159 - - 0 + + 100, 29 - + True - + NoControl - - 8, 37 - - + 4, 0, 4, 0 - - 18, 17 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 158 + + lbLTouchRight - - R + + Finger on Touchpad - - lbLowRed + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + fLPActionButtons - - pnlLowBattery + + 233, 26 - - 1 + + bnSwipeDown - - True + + pnlFull - - NoControl + + pnlTPMouse - - 8, 66 + + 10 - - 4, 0, 4, 0 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 19, 17 + + 4, 0, 4, 0 - - 159 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - G + + 250 - - lbLowGreen + + pBProgram - - System.Windows.Forms.Label, 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 - + pnlLowBattery - - 2 + + None - + True - - NoControl - - - 7, 95 - - + 4, 0, 4, 0 - - 17, 17 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 160 + + 29, 29 - - B + + 4, 4, 4, 4 - - lbLowBlue + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - pnlLowBattery + + 125, 25 - - 3 + + 27, 17 - + False - + + 49, 22 + + NoControl - - 28, 32 + + pnlController - - 4, 4, 4, 4 + + gBLightbar - - 125, 25 + + True - - 10 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tBLowRedBar + + None - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6, 209 - - pnlLowBattery + + 4, 0, 4, 0 - + 4 - - False + + 282 - - NoControl + + 4, 4, 4, 4 - - 28, 61 + + pnlFull - - 4, 4, 4, 4 + + NoControl - - 125, 25 + + 251, 5 - - 11 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tBLowGreenBar + + MiddleLeft - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 210, 29 - - pnlLowBattery + + lVActions - - 5 + + No - - False + + 250 NoControl - - 28, 90 + + 13 - - 4, 4, 4, 4 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 125, 25 + + True - - 12 + + 73 - - tBLowBlueBar + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + No - - pnlLowBattery + + A Button - - 6 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + None - - NoControl + + 207 - - 9, 11 + + bnSquare - - 4, 0, 4, 0 + + optionsToolStripMenuItem - - 51, 17 + + rBSAControls - - 225 + + True - - Empty: + + False - - lbEmpty + + Jitter Compensation - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - pnlLowBattery + + Flat - - 7 + + 135, 24 - - 1, 24 + + NoControl - - 4, 4, 4, 4 + + 4 - - 168, 120 + + 164 - - 235 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlFull + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - gBLightbar + + 4, 0, 4, 0 - - 14 + + 96, 19 - - 177, 23 + + MiddleCenter - - 4, 4, 4, 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 158, 121 + + 9 - - 234 + + None - - pnlLowBattery + + panel2 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 14 - - gBLightbar + + Up Button - - 13 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 329, 150 - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 43 + + 227, 28 - - 4, 0, 4, 0 + + Zoom - - 27, 17 + + lbControlName - - 197 + + Lower Right as RMB - - RS + + Inverted - - lbRS + + fLPSettings - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 272, 210 - - tPDeadzone + + 33 - - 9 + + NoControl - - True + + 168, 120 - - NoControl + + 130, 21 - - 8, 42 + + True - - 4, 0, 4, 0 + + 256 - - 25, 17 + + NoControl - - 196 + + 38, 37 - - LS + + NoControl - - lbLS + + 7 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlFull - - tPDeadzone + + pnlSixaxis - - 10 + + 286 - - 131, 39 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + 4, 4, 4, 4 - - No - - - 50, 22 + + NoControl - - 203 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - nUDRS + + 65, 17 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + R3 - - tPDeadzone + + bnOptions - - 6 + + fLPTiltControls - - 136, 20 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + False - - 61, 22 + + 4 - - 241 + + 286 - - numUDMouseSens + + 2, 2 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBOther + + TopRight - - 11 + + 20, 17 - - 38, 39 + + pnlController - - 4, 4, 4, 4 + + False - - No + + 28, 90 - - 50, 22 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 203 + + 0 - - nUDLS + + Edit Action - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - tPDeadzone + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + 4, 4, 4, 4 - - 38, 2 + + 0 - - 4, 4, 4, 4 + + Flat - - No + + Gyro - - 50, 22 + + NoControl - - 203 + + True nUDL2 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - tPDeadzone + + gBGyro - - 1 + + 6 - - rBTPControls + + 5 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBTouchpad + + 216 - + 0 - - rBTPMouse + + 0, 82 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - gBTouchpad + + 4, 4, 4, 4 - - 1 + + 42, 23 - - fLPTouchSwipe + + Flat - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlController - - gBTouchpad + + 65, 21 - - 2 + + lbLOptions - - pnlTPMouse + + 196, 41 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Remove Action - - gBTouchpad + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + False - - 3, 324 - - - 4, 4, 4, 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 337, 227 + + 9, 4 - - 246 + + 244 - - Touchpad + + True - - gBTouchpad + + 1 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 79, 49 - - tPControls + + pnlSATrack - + 1 - - True + + 4, 25 - + + Popup + + NoControl - - 172, 22 + + Multitouch : - - 131, 21 + + NoControl - - 235 + + Sixaxis Up : - - Use for Controls + + 2, 2 - - rBTPControls + + 3, 65 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 50, 22 - - gBTouchpad + + 204 - - 0 + + Flat - - True + + 162, 56 - + + System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 8, 22 + + pnlSAMouse - + 119, 21 - - 234 + + Start - - Use as Mouse + + lbSixaxisXS - - rBTPMouse + + L3 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tCControls - - gBTouchpad + + % - - 1 + + NoControl - - bnSwipeUp + + 120, 131 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 136, 26 - - fLPTouchSwipe + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + 4, 4, 4, 4 - - lbSwipeUp + + 549, 564 - - System.Windows.Forms.Label, 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 - - fLPTouchSwipe + + 4, 4, 4, 4 - - 1 + + pnlController - - bnSwipeDown + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - fLPTouchSwipe + + 229 - - 2 + + 311, 179 - - lbSwipeDown + + Profile Options - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + % - - fLPTouchSwipe + + 297 - - 3 + + NoControl - - bnSwipeLeft + + 59, 84 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + RSToolStripMenuItem - - fLPTouchSwipe + + cBlowerRCOn - - 4 + + 4, 4, 4, 4 - - lbSwipeLeft + + 50, 22 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Options - - fLPTouchSwipe + + 147, 179 - - 5 + + pnlTPMouse - - bnSwipeRight + + gBOther - - System.Windows.Forms.Button, 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 - - fLPTouchSwipe + + NoControl - - 6 + + 213 - - lbSwipeRight + + 2, 2 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - fLPTouchSwipe + + 202 - - 7 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5, 64 + + 4, 4 - - 4, 4, 4, 4 + + bnCross - - 325, 151 + + fLPTiltControls - - 256 + + True - - fLPTouchSwipe - - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBTouchpad - - - 2 - - - 326, 13 - - - 137, 244 - - - cMSPresets - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Flat - - - NoControl - - - 4, 4 - - - 4, 4, 4, 4 - - - 100, 29 - - - 250 - - - Swipe Up - - - bnSwipeUp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPTouchSwipe - - - 0 - - - False - - - 136, 26 - - - Control - - - 133, 6 - - - 136, 26 - - - Default - - - 136, 26 - - - Dpad - - - 151, 26 - - - Inverted - - - 151, 26 - - - Inverted X - - - 151, 26 - - - Inverted Y - - - 136, 26 - - - Left Stick - - - 151, 26 - - - Inverted - - - 151, 26 - - - Inverted X - - - 151, 26 - - - Inverted Y - - - 136, 26 - - - Right Stick - - - 151, 26 - - - Inverted - - - 151, 26 - - - Inverted X - - - 151, 26 - - - Inverted Y - - - 136, 26 - - - Face Buttons - - - False - - - 136, 26 - - - WASD - - - 175, 26 - - - w/ Scan Code - - - 136, 26 - - - Arrow Keys - - - 175, 26 - - - w/ Scan Code - - - 136, 26 - - - Mouse - - - 151, 26 - - - Inverted - - - 151, 26 - - - Inverted X - - - 151, 26 - - - Inverted Y - - - NoControl - - - 111, 0 - - - 210, 29 - - - 285 - - - Options - - - MiddleLeft - - - lbSwipeUp - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPTouchSwipe - - - 1 - - - Flat - - - NoControl - - - 4, 41 - - - 4, 4, 4, 4 - - - 100, 29 - - - 250 - - - Swipe Down - - - bnSwipeDown - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPTouchSwipe - - - 2 - - - NoControl - - - 111, 37 - - - 210, 29 - - - 286 - - - Options - - - MiddleLeft - - - lbSwipeDown - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPTouchSwipe - - - 3 - - - Flat - - - NoControl - - - 4, 78 - - - 4, 4, 4, 4 - - - 100, 29 - - - 250 - - - Swipe Left - - - bnSwipeLeft - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPTouchSwipe - - - 4 - - - NoControl - - - 111, 74 - - - 210, 29 - - - 287 - - - Options - - - MiddleLeft - - - lbSwipeLeft - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPTouchSwipe - - - 5 - - - Flat - - - NoControl - - - 4, 115 - - - 4, 4, 4, 4 - - - 100, 29 - - - 250 - - - Swipe Right - - - bnSwipeRight - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPTouchSwipe - - - 6 - - - NoControl - - - 111, 111 - - - 210, 29 - - - 288 - - - Options - - - MiddleLeft - - - lbSwipeRight - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPTouchSwipe - - - 7 - - - cbStartTouchpadOff - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlTPMouse - - - 9 - - - -4, 62 - - - 334, 160 - - - 257 - - - pnlTPMouse - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBTouchpad - - - 3 - - - True - - - NoControl - - - 17, 136 - - - 4, 4, 4, 4 - - - 182, 21 - - - 233 - - - Start with Slide/Scroll off - - - cbStartTouchpadOff - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlTPMouse - - - 9 - - - cBDinput - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 0 - - - pBProgram - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 1 - - - cBLaunchProgram - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 2 - - - btnBrowse - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 3 - - - lbUseController - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 4 - - - cBMouseAccel - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 5 - - - nUDSixaxis - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 6 - - - cBControllerInput - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 7 - - - cBIdleDisconnect - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 9 - - - 352, 278 - - - 4, 4, 4, 4 - - - 4, 4, 4, 4 - - - 340, 237 - - - 247 - - - Other - - - gBOther - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPSettings - - - 5 - - - True - - - NoControl - - - 7, 172 - - - 4, 4, 4, 4 - - - Yes - - - 130, 21 - - - 256 - - - Use Dinput only - - - cBDinput - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 0 - - - NoControl - - - 253, 133 - - - 4, 4, 4, 4 - - - 29, 29 - - - Zoom - - - 255 - - - pBProgram - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 1 - - - True - - - NoControl - - - 7, 131 - - - 4, 4, 4, 4 - - - Yes - - - 139, 38 - - - 254 - - - Launch Program -with profile - - - cBLaunchProgram - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 2 - - - Zoom - - - MiddleRight - - - NoControl - - - 163, 135 - - - 4, 4, 4, 4 - - - 84, 29 - - - 253 - - - Browse... - - - btnBrowse - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 3 - - - True - - - NoControl - - - 9, 94 - - - 4, 0, 4, 0 - - - 98, 17 - - - 252 - - - Use Controller - - - lbUseController - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 4 - - - True - - - NoControl - - - 205, 11 - - - 4, 4, 4, 4 - - - 108, 38 - - - 251 - - - Mouse -Acceleration - - - cBMouseAccel - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 5 - - - 109, 92 - - - 4, 4, 4, 4 - - - 36, 22 - - - 250 - - - nUDSixaxis - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 6 - - - True - - - NoControl - - - 150, 93 - - - 4, 4, 4, 4 - - - Yes - - - 186, 21 - - - 242 - - - for Mapping and readout - - - cBControllerInput - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 7 - - - True - - - NoControl - - - 9, 56 - - - 4, 4, 4, 4 - - - Yes - - - 126, 21 - - - 232 - - - Idle Disconnect - - - cBIdleDisconnect - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 9 - - - btnRainbow - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 0 - - - lbRainbowB - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 1 - - - nUDRainbowB - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 2 - - - cBFlashType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 3 - - - cBWhileCharging - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 4 - - - btnFlashColor - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 5 - - - btnChargingColor - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 6 - - - lbWhileCharging - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 7 - - - lbPercentFlashBar - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 8 - - - nUDflashLED - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 9 - - - 4, 4 - - - 4, 4, 4, 4 - - - 4, 4, 4, 4 - - - 340, 305 - - - 247 - - - Lightbar - - - gBLightbar - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPSettings - - - 0 - - - NoControl - - - 8, 267 - - - 25, 25 - - - 243 - - - btnRainbow - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 0 - - - True - - - NoControl - - - 254, 268 - - - 4, 0, 4, 0 - - - 20, 17 - - - 241 - - - % - - - False - - - lbRainbowB - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 1 - - - 189, 268 - - - 4, 4, 4, 4 - - - 54, 22 - - - 242 - - - False - - - nUDRainbowB - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 2 - - - Flash at - - - Pulse at - - - 5, 166 - - - 4, 4, 4, 4 - - - 84, 24 - - - 240 - - - cBFlashType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 3 - - - Normal - - - Pulse - - - Rainbow - - - Color - - - 114, 207 - - - 4, 4, 4, 4 - - - 150, 24 - - - 239 - - - cBWhileCharging - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 4 - - - Zoom - - - Flat - - - NoControl - - - 183, 171 - - - 4, 4, 4, 4 - - - 16, 16 - - - 49 - - - btnFlashColor - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 5 - - - Flat - - - NoControl - - - 272, 210 - - - 4, 4, 4, 4 - - - 16, 16 - - - 49 - - - False - - - btnChargingColor - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 6 - - - True - - - NoControl - - - 6, 209 - - - 4, 0, 4, 0 - - - 108, 17 - - - 236 - - - While Charging: - - - lbWhileCharging - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 7 - - - True - - - NoControl - - - 156, 171 - - - 4, 0, 4, 0 - - - 20, 17 - - - 207 - - - % - - - lbPercentFlashBar - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 8 - - - 97, 168 - - - 4, 4, 4, 4 - - - 54, 22 - - - 167 - - - nUDflashLED - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 9 - - - lbPercentRumble - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBRumble - - - 0 - - - btnRumbleLightTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBRumble - - - 1 - - - 352, 4 - - - 4, 4, 4, 4 - - - 4, 4, 4, 4 - - - 340, 57 - - - 247 - - - Rumble - - - gBRumble - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPSettings - - - 2 - - - True - - - NoControl - - - 67, 25 - - - 4, 0, 4, 0 - - - 20, 17 - - - 207 - - - % - - - lbPercentRumble - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBRumble - - - 0 - - - NoControl - - - 196, 19 - - - 4, 4, 4, 4 - - - 90, 29 - - - 214 - - - Test Light - - - btnRumbleLightTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBRumble - - - 1 - - - True - - - NoControl - - - 196, 5 - - - 4, 0, 4, 0 - - - 63, 17 - - - 197 - - - Sixaxis X - - - lbSixaxisX - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPDeadzone - - - 3 - - - True - - - NoControl - - - 196, 41 - - - 4, 0, 4, 0 - - - 63, 17 - - - 197 - - - Sixaxis Z - - - lbSixaxisZ - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPDeadzone - - - 5 - - - 265, 39 - - - 4, 4, 4, 4 - - - No - - - 50, 22 - - - 203 - - - nUDSZ - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPDeadzone - - - 11 - - - 265, 3 - - - 4, 4, 4, 4 - - - 50, 22 - - - 202 - - - nUDSX - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPDeadzone - - - 8 - - - 153, 17 - - - pnlSATrack - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 0 - - - lbL2Track - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 1 - - - lbRSTip - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 2 - - - lbInputDelay - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 3 - - - lbR2Track - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 4 - - - lbLSTip - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 5 - - - lbSATip - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 6 - - - tBR2 - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 7 - - - tBL2 - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 8 - - - pnlSixaxis - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 9 - - - pnlLSTrack - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 10 - - - pnlRSTrack - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 11 - - - 4, 25 - - - 4, 4, 4, 4 - - - 4, 4, 4, 4 - - - 549, 564 - - - 2 - - - Controller Readings - - - lbL2TrackS - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tCControls - - - 2 - - - btnSATrack - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlSATrack - - - 0 - - - btnSATrackS - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlSATrack - - - 1 - - - 375, 110 - - - 156, 156 - - - 252 - - - pnlSATrack - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbL2TrackS - - - 0 - - - False - - - Popup - - - NoControl - - - 55, 33 - - - 4, 4, 4, 4 - - - 4, 4 - - - 237 - - - button1 - - - btnSATrack - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlSATrack - - - 0 - - - False - - - Flat - - - NoControl - - - 32, 96 - - - 4, 4, 4, 4 - - - 4, 4 - - - 249 - - - btnSATrackS - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlSATrack - - - 1 - - - True - - - NoControl - - - 117, 423 - - - 4, 0, 4, 0 - - - 24, 17 - - - 216 - - - L2 - - - MiddleCenter + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbL2Track + + 557, 0 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbL2TrackS - - - 1 - - - NoControl - - - 189, 70 + + 6 - - 4, 0, 4, 0 + + 4, 4, 4, 4 - - 156, 39 + + 3 - - 216 + + 39 - - Right Stick + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleCenter + + 2, 2 - - lbRSTip + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Triggers: - - lbL2TrackS + + Sixaxis: X axis is flipped for easier reading - - 2 + + 250, 192 - - True + + 10 - + NoControl - - 9, 4 + + 37 - - 4, 0, 4, 0 + + Zoom - - 128, 17 + + 111, 111 - - 216 + + True - - Input Delay: N/Ams + + pnlLSTrack - - MiddleCenter + + 292 - - lbInputDelay + + 549, 47 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlController - - lbL2TrackS + + 340, 95 - - 3 + + 167 - - True + + 4, 4, 4, 4 - - NoControl + + Flat - - 203, 423 + + 0 - - 4, 0, 4, 0 + + tPDeadzone - - 26, 17 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 216 + + 16 - - R2 + + 4, 0, 4, 0 - - MiddleCenter + + 46 - - lbR2Track + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - lbL2TrackS + + True - - 4 + + 2 - - NoControl + + pnlFull - - 9, 70 + + 391, 2 - + 4, 0, 4, 0 - - 156, 39 - - - 216 + + 8, 5 - - Left Stick + + 7 - - MiddleCenter + + bnGyroZN - - lbLSTip + + Left Y-Axis- - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 252 - - lbL2TrackS + + 2 - + 5 - - NoControl - - - 375, 70 - - - 4, 0, 4, 0 - - - 156, 39 - - - 216 + + pnlController - - Sixaxis: X axis is flipped for easier reading + + 1 - - MiddleCenter + + NoControl - - lbSATip + + R2 : - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - lbL2TrackS + + 105, 5 - - 6 + + Left Stick Right : - - False + + 4 - - False + + Flat - - NoControl + + 92, 151 - - 178, 291 + + 549, 82 - + 4, 4, 4, 4 - - Vertical - - - Yes + + $this - - 31, 156 + + True - - 244 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tBR2 + + 158 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tSMIRSInvertedX - - lbL2TrackS + + NoControl - - 7 + + fLPTiltControls - - False + + 250 - - False + + gBLightbar - - NoControl + + 126, 21 - - 136, 291 + + 63, 17 - + 4, 4, 4, 4 - - Vertical + + 8, 292 - - Yes + + tSMIRSInverted - - True + + lbLCircle - - 31, 156 + + 219 - - 244 + + pnlLSTrack - - tBL2 + + lbSATip - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + LSToolStripMenuItem - - lbL2TrackS + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + 0 - - tBsixaxisAccelX + + 202 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 528, 287 - - pnlSixaxis + + 4, 4, 4, 4 - - 0 + + tBLowRedBar - - lb6Accel + + gBLightbar - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlSixaxis + + Square : - - 1 + + 136, 26 - - tBsixaxisGyroX + + 240 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + nUDRS - - pnlSixaxis + + LS - + + 1 + + + NoControl + + 2 - - lb6Gryo + + Options - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 0, 4, 0 - - pnlSixaxis + + Sixaxis X - - 3 + + MiddleCenter - - tBsixaxisGyroY + + lbGyroTriggers - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 106, 27 - - pnlSixaxis + + MiddleRight - - 4 + + NoControl - - tBsixaxisGyroZ + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - pnlSixaxis + + fLPTouchSwipe - - 5 + + Down - - tBsixaxisAccelY + + openFileDialog1 System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlSixaxis - - - 6 - - - tBsixaxisAccelZ + + True - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 159 - - pnlSixaxis + + NoControl - - 7 + + 259 - - 375, 291 + + 74, 28 - - 4, 4, 4, 4 + + 61, 22 - - 156, 156 + + False - - 236 + + lbWhileCharging - - pnlSixaxis + + False - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None - - lbL2TrackS + + 3 - - 9 + + lbLTriangle - - False + + tBBlueBar - - NoControl + + 169 - - 89, 31 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + Use Controller - - 61, 24 + + 233, 26 - - 219 + + lbL2TrackS - - tBsixaxisAccelX + + NoControl - - System.Windows.Forms.TrackBar, 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 - - pnlSixaxis + + 250 - - 0 + + 4, 0, 4, 0 - - True + + 39, 17 - - NoControl + + 259 - - 101, 5 + + 15 - + 4, 0, 4, 0 - - 42, 17 + + 179, 53 - - 215 + + 4, 4, 4, 4 - - Accel + + flushHIDQueue - - lb6Accel + + 2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 0, 4, 0 - - pnlSixaxis + + Up - - 1 + + TopRight - - False + + 4 - - NoControl + + 8, 42 - - 4, 30 + + L2 - - 4, 4, 4, 4 + + 9 - - 61, 24 + + Top - - 222 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tBsixaxisGyroX + + 4, 4, 4, 4 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TopDown - - pnlSixaxis + + 50, 22 - - 2 + + 4 - - True + + bnLSDown - + NoControl - - 16, 6 + + No - - 4, 0, 4, 0 + + 4, 4, 4, 4 - - 39, 17 + + 102, 43 - - 216 + + 4, 4, 4, 4 - - Gyro + + Click the lightbar for color picker - - lb6Gryo + + 12, 26 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlController - - pnlSixaxis + + 340, 227 - - 3 + + tBsixaxisGyroX - - False + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 316, 204 - - 3, 65 + + squareToolStripMenuItem - - 4, 4, 4, 4 + + gBLightbar - - 61, 24 + + 86 - - 221 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tBsixaxisGyroY + + bnGyroXN - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - pnlSixaxis + + tCControls - - 4 + + 4, 4, 4, 4 - - False + + Dpad - - NoControl + + 4, 4, 4, 4 - - 4, 99 + + lbGyroZN - - 4, 4, 4, 4 + + 1 - - 61, 24 + + wScanCodeWASDToolStripMenuItem - - 220 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tBsixaxisGyroZ + + 190 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 42, 17 - - pnlSixaxis + + NoControl - - 5 + + 7 - - False + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + NoControl - - 89, 65 + + NoControl - + + 100, 29 + + + 9, 94 + + 4, 4, 4, 4 - - 61, 24 + + fLPTiltControls + + + 369, 129 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther - - 218 + + bnSwipeLeft - - tBsixaxisAccelY + + 220 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - pnlSixaxis + + shareToolStripMenuItem - - 6 + + tSMIDPadInvertedY - - False + + 48 - - NoControl + + 9, 11 - - 89, 99 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + Double Tap - - 61, 24 + + Flat - - 217 + + pnlFull - - tBsixaxisAccelZ + + tPDeadzone - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - pnlSixaxis + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + Right Trigger - - btnLSTrack + + System.Windows.Forms.ToolStripMenuItem, 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 + + cBIdleDisconnect - - pnlLSTrack + + True - - 0 + + DpadToolStripMenuItem - - btnLSTrackS + + 90, 273 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 200 - - pnlLSTrack + + 36, 17 - - 1 + + No - - 6, 110 + + 4, 4, 4, 4 - - 156, 156 + + 204 - - 250 + + pnlController - - pnlLSTrack + + 112, 244 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + rBTPMouse - - lbL2TrackS + + 549, 564 - - 10 + + Flat - - False + + 25, 25 - - Popup + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 63, 17 - - 36, 76 + + NoControl - + 4, 4, 4, 4 - - 4, 4 + + pnlController - - 237 + + btnNewAction - - button1 + + 83 - - btnLSTrack + + pnlController - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Sensitivity - - pnlLSTrack + + bnSwipeRight - - 0 + + 9, 56 - + False - - Flat + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + NoControl - - 84, 62 + + NoControl - - 4, 4, 4, 4 + + fLPActionButtons - - 4, 4 + + NoControl - - 247 + + L2 : - - btnLSTrackS + + 227 - + + Left Stick Left : + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlLSTrack + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + Use as Mouse - - btnRSTrackS + + 269, 24 - + + gBLightbar + + + lbL2TrackS + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlRSTrack + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + Empty: - - btnRSTrack + + 18, 17 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Use Dinput only - - pnlRSTrack + + 4, 4, 4, 4 - - 1 + + Arrow Keys - - 189, 110 + + 216 - - 156, 156 + + 233, 26 + + + pnlController + + + w/ Scan Code - - 251 + + lbL2Track - - pnlRSTrack + + pSToolStripMenuItem - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - lbL2TrackS + + 166 - - 11 + + 4, 4, 4, 4 - - False + + gBRumble - - Flat + + 1 - - NoControl + + 9 - - 4, 42 + + Right Mouse Button - - 4, 4, 4, 4 + + 71 - - 4, 4 + + True - - 248 + + 3 - - btnRSTrackS + + pnlTPMouse - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlRSTrack + + 4 - - 0 + + 4, 4, 4, 4 - - False + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Popup + + lbLLS - + + 5 + + NoControl - - 83, 93 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + 12, 24 + + 4, 4, 4, 4 - - 4, 4 + + Cross - - 237 + + lbLL2 - - button1 + + 32, 91 - - btnRSTrack + + 1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 205, 11 - - pnlRSTrack + + 4, 4, 4, 4 - - 1 + + btnRSTrackS - - bnGyroZN + + gBSensitivity - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tPDeadzone - - fLPTiltControls + + Yes - - 0 + + 189, 70 - - lbGyroZN + + bnRight - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + panel2 - - fLPTiltControls + + 49 - - 1 + + gBOther - - bnGyroZP + + nUDR2 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + % - - fLPTiltControls + + True - - 2 + + pnlTPMouse - - lbGyroZP + + lbL2TrackS - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 302 - - fLPTiltControls + + cBTouchpadJitterCompensation - - 3 + + 250 - - bnGyroXP + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 32, 96 - - fLPTiltControls + + lbGyroXN - - 4 + + Left Mouse Button - - lbGyroXP + + 12, 34 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Test Light - - fLPTiltControls + + 42, 60 - - 5 + + cBScroll - - bnGyroXN + + 223 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 193 - - fLPTiltControls + + fLPActionButtons - - 6 + + 25, 17 - - lbGyroXN + + 35, 27 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - fLPTiltControls + + NoControl - - 7 + + pnlController - - 8, 64 + + 89 - - 4, 4, 4, 4 + + 0 - - 339, 152 + + Right Stick + + + gBOther - - 254 + + tPDeadzone - - fLPTiltControls + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlController - - gBGyro + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + nUDR2S - - NoControl + + MiddleCenter - - 4, 4 + + 91, 21 - + 4, 4, 4, 4 - - 100, 29 - - - 250 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnGyroZN + + 224 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnTouchUpper - - fLPTiltControls + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + 2 Fingers on Touchpad - + NoControl - - 111, 0 + + 217 - - 208, 29 + + gBOther - - 286 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleLeft + + 4, 4 - - lbGyroZN + + l3ToolStripMenuItem - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 286 - - fLPTiltControls + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + 4, 4, 4, 4 - - NoControl + + 125, 25 - - 4, 41 + + % - + 4, 4, 4, 4 - - 100, 29 + + nUDScroll - - 250 + + 7, 172 - - bnGyroZP + + 367, 129 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - fLPTiltControls + + 1 - - 2 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + pnlFull - - 111, 37 + + NoControl - - 208, 29 + + 2 - - 287 + + Zoom - - MiddleLeft + + 4, 4, 4, 4 - - lbGyroZP + + ArrowKeysToolStripMenuItem - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 242 - - fLPTiltControls + + gBLightbar - - 3 + + 210, 29 - - NoControl + + 2, 2 - - 4, 78 + + 206 - - 4, 4, 4, 4 + + lbLowRed - - 100, 29 + + 375, 291 - - 250 + + tCControls - - bnGyroXP + + btnRemAction - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 180, 56 - - fLPTiltControls + + 2, 2 4 - - NoControl + + Swipe Up - - 111, 74 + + 549, 564 - - 208, 29 + + 1 - - 288 + + 304 - - MiddleLeft + + 4, 4, 4, 4 - - lbGyroXP + + False - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 181 - - fLPTiltControls + + 4, 42 - + 5 - - NoControl + + btnSATrack - - 4, 115 + + No - - 4, 4, 4, 4 + + 1 - - 100, 29 + + Flat - - 250 + + lbButtonMouseSens + + + 216 + + + 216 + + + 18, 82 + + + 88 + + + 290 - - bnGyroXN + + Fill - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - fLPTiltControls + + 2, 2 - - 6 + + True - + NoControl - - 111, 111 - - - 208, 29 - - - 289 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleLeft + + 332, 69 - - lbGyroXN + + 299 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 36, 2 - - fLPTiltControls + + Flat - - 7 + + 61, 24 - - True + + False - - Top, Bottom, Left + + lbR2 - - 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Cross : + + 81 - - Circle : + + 49 - - Square : + + tBR2 - - Triangle : + + 10 - - Options : + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Share : + + 4, 0, 4, 0 - - Up : + + bnLSUp - - Down : + + NoControl - - Left : + + pnlRSTrack - - Right : + + 111, 74 - - PS : + + pnlSATrack - - L1 : + + 12, 24 - - R1 : + + 4 - - L2 : + + 16, 6 - - R2 : + + NoControl - - L3 : + + 14 - - R3 : + + 111, 0 - - Left Touch : + + Flat - - Upper Touch : + + 125, 25 - - Multitouch : + + 293 - - Right Touch : + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Left Stick Up : + + 225 - - Left Stick Down : + + 55, 33 - - Left Stick Left : + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Left Stick Right : + + NoControl - - Right Stick Up : + + 4, 30 - - Right Stick Down : + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Right Stick Left : + + Use as Mouse - - Right Stick Right : + + r1ToolStripMenuItem - - Sixaxis Up : + + 136, 26 - - Sixaxis Down : + + Left Mouse Button - - Sixaxis Left : + + 293, 78 - - Sixaxis Right : + + pnlLowBattery - - 348, 318 + + NoControl - - 4, 4, 4, 4 + + NoControl - - 195, 244 + + 8 - - 180 + + gBRumble - - lBControls + + NoControl - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tPControls + + 257 - - 0 + + MiddleLeft - + NoControl - - 8, 292 - - - 4, 0, 4, 0 - - - 227, 28 + + 390, 29 - - 181 + + 2, 2 - - Click the lightbar for color picker + + 4, 4, 4, 4 - - MiddleCenter + + NoControl - - False + + rightToolStripMenuItem - - lbControlTip + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + 156, 39 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tPControls + + 4, 4, 4, 4 - - 2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Zoom + + 156, 39 - - pBHoveredButton + + Default - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12, 63 - - pnlController + + 4, 115 - - 0 + + 53, 79 - - lbLRS + + System.Windows.Forms.NumericUpDown, 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 + + 151, 26 - - pnlController + + 52, 133 - - 1 + + lbGreen - - lbLLS + + None - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Face Buttons - + + 248 + + pnlController - - 2 + + pnlController - - bnRSDown + + nUDSZ - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 70, 28 - - pnlController + + Lightbar - - 3 + + 17, 17 - - lbLTouchUpper + + Fill - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Yes - - pnlController + + 50, 22 - - 4 + + button1 - - lbLTouchRight + + Flat - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - pnlController + + 11 - - 5 + + NoControl - - bnL3 + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - pnlController + + Scroll - - 6 + + 207 - - lbLTouchLM + + Swipe Left - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Right : - - pnlController + + Left : - - 7 + + 35 - - bnRSUp + + fLPActionButtons - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - pnlController + + 162 - - 8 + + lbLCross - - lbLR2 + + Circle : - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + While Charging: - - pnlController + + Triangle : - - 9 + + 136, 26 - - bnRSRight + + Share : - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Options : - - pnlController + + Down : - - 10 + + Up : - - lbLL2 + + 3 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 54, 22 - - pnlController + + LS - - 11 + + 203 - - bnR3 + + System.Windows.Forms.TrackBar, 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 + + button1 - - pnlController + + 14 - - 12 + + 196 - - lbLR1 + + lbLSS - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - pnlController + + 352, 72 - - 13 + + bnRSUp - - bnRSLeft + + False - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnRSRight - - pnlController + + 4, 4, 4, 4 - - 14 + + 2, 2 - - lbLL1 + + 50, 22 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 156, 171 - - pnlController + + 8, 5 - - 15 + + pnlSixaxis - - bnLSLeft + + System.Windows.Forms.Panel, 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 + + 6 - + pnlController - - 16 - - - lbLPS + + lbPercentRumble - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlController + + pnlTPMouse - - 17 + + 289 - - bnLSUp + + Touchpad - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlController + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18 + + 443, 126 - - lbLLeft + + L3 : - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlController + + Right Stick Up : - - 19 + + 0 - - bnLSRight + + 179, 37 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 255 - - pnlController + + 4, 4, 4, 4 - - 20 + + 35, 14 - - lbLright + + 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Right - - pnlController + + 348, 318 - - 21 + + 4, 4, 4, 4 - - bnLSDown + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 133, 6 - - pnlController + + NoControl - - 22 + + 234 - - lbLDown + + 4, 0, 4, 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - pnlController + + NoControl - - 23 + + 247 - - bnR2 + + 50, 22 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lbControlTip - - pnlController + + fLPTiltControls - - 24 + + No - - bnUp + + 4, 4, 4, 4 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 24, 17 - - pnlController + + 9 - - 25 + + gBLightbar - - bnDown + + System.Windows.Forms.Label, 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 + + 73, 28 - - pnlController + + Right Y-Axis- - - 26 + + tPCurve - - bnTriangle + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - pnlController + + 0 - - 27 + + nUDTap - - bnR1 + + btnEditAction - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBLightbar - - pnlController + + 4, 4, 4, 4 - - 28 + + True - - bnSquare + + 16 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnSwipeUp - - pnlController + + Guide - - 29 + + 4, 4, 4, 4 - - bnRight + + 233, 26 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - pnlController + + 253 - - 30 + + 207 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 288 - - lbLUp + + btnFlashColor - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlTPMouse - - pnlController + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 31 + + 9 - - bnLeft + + System.Windows.Forms.ToolStripMenuItem, 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 + + None - - pnlController + + tPControls - - 32 + + 214 - - lbLShare + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - pnlController + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 33 + + False - - bnOptions + + 209 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlController + + 151, 26 - - 34 + + 120, 120 - - bnShare + + pnlLowBattery - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 91 - - pnlController + + Flat - - 35 + + gBSensitivity - - lbLOptions + + System.Windows.Forms.NumericUpDown, 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 + + 172 - - pnlController + + 90 - - 36 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnL1 + + lbLDown - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Controls - - pnlController + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 37 + + Flat - - bnTouchRight + + 175, 26 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlController + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 38 + + 4, 4, 4, 4 - - bnL2 + + Options - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlController + + 100, 29 - - 39 + + 180, 2 - - lbLTriangle + + 8, 66 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - pnlController + + 11, 96 - - 40 + + 85 - - bnTouchLeft + + Left - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None - - pnlController + + 0 - - 41 + + NoControl - - lbLSquare + + 4, 4, 4, 4 - - System.Windows.Forms.Label, 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 - - pnlController + + tSMILSInvertedX - - 42 + + True - - bnTouchMulti + + System.Windows.Forms.Label, 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 + + Top - - pnlController + + 156, 156 - - 43 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbLCircle + + 200, 62 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnSATrackS - - pnlController + + 111, 0 - - 44 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbLCross + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlLowBattery - - pnlController + + Flat - - 45 + + 4, 4, 4, 4 - - bnTouchUpper + + 4, 4, 4, 4 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 63, 17 - - pnlController + + 172, 16 - - 46 + + LS - - btnLightbar + + leftToolStripMenuItem - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 256 - + pnlController - - 47 + + 4, 4, 4, 4 - - bnPS + + 72 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 443, 129 - - pnlController + + 4, 4, 4, 4 - - 48 + + 197 - - bnCross + + 4, 4, 4, 4 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 163, 135 - - pnlController + + tCSens - - 49 + + lbInputDelay - - bnCircle + + 254 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - pnlController + + None - - 50 + + 0 - - lbControlName + + 4, 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - pnlController + + False - - 51 + + 26 - - 3, 2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 528, 287 + + 186, 21 - - 282 + + 4, 0, 4, 0 - - pnlController + + gBSensitivity - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlSAMouse - - tPControls + + lbRainbowB - + 3 - - 4, 25 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + NoControl - - 549, 564 + + pnlController - - 0 + + 98, 17 - - Controls + + cBGyroInvertX - - tPControls + + L2 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - tCControls + + 18, 17 - - 0 + + MiddleLeft - - pnlActions + + 4, 4, 4, 4 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleCenter - - tPSpecial + + 131, 21 - - 0 + + Accel - - 4, 25 + + True - - 4, 4, 4, 4 + + 19, 17 - - 549, 564 + + 5 - - 3 + + Slide - - Special Actions + + Full: - - tPSpecial + + NoControl - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None - - tCControls + + True - - 1 + + 142, 55 - - Left + + NoControl - - 0, 0 + + 205 - - 4, 4, 4, 4 + + 136, 291 - - 557, 593 + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 253 + + PS : - - tCControls + + 36, 22 - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - $this + + Right Touch : - - 3 + + pnlController - - False + + 4, 0, 4, 0 - + + 35, 40 + + + 233, 26 + + NoControl - - 492, -3 + + True - - 36, 34 + + 4, 4, 4, 4 + + + True - - StretchImage + + panel2 - - 284 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pBHoveredButton + + lbSwipeDown - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 178, 291 - + + lbLSCurve + + pnlController - - 0 + + nUDRainbow - - NoControl + + Left X-Axis- - - 311, 179 + + 4, 4, 4, 4 - + 2, 2 - - 304 - - - False - - - lbLRS + + 4, 115 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - + pnlController - - 1 + + 17, 17 - - NoControl + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 147, 179 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2, 2 + + 4, 4, 4, 4 - - 303 + + cBLightbyBattery - - False + + Sixaxis Z - - lbLLS + + pnlController - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlController + + 254 - - 2 + + NoControl - - None + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + 4, 4 - - NoControl + + 21 - - 331, 234 + + 235 - - 4, 4, 4, 4 + + 50, 22 - - 33, 10 + + 313, 37 - - 172 + + 200, 31 - - Right Y-Axis+ + + 228 - - bnRSDown + + MiddleLeft - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 88, 2 - - pnlController + + Flat - - 3 + + 121, 95 - - NoControl + + lbLPS - - 180, 2 + + 163 - - 2, 2 + + lbL2S - - 302 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + Inverted - - lbLTouchUpper + + 180, 25 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 137, 244 - - pnlController + + 0 - - 4 + + 4, 4, 4, 4 - - NoControl + + 0 - - 180, 56 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2, 2 + + NoControl - - 301 + + 392, -1 - - False + + None - - lbLTouchRight + + System.Windows.Forms.ToolStripMenuItem, 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 + + cBSlide - - pnlController + + bnShare - - 5 + + lbRSCurvePercent - - None + + pnlSixaxis - - Flat + + MiddleLeft - - NoControl + + 0, 35 - - 167, 205 + + L1 - - 4, 4, 4, 4 + + lbR2LS - - 35, 27 + + Color - - 163 + + Sixaxis Z - - Left Stick + + 4, 4, 4, 4 - - bnL3 + + 0 - - System.Windows.Forms.Button, 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 - - pnlController + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + lbLowGreen - - 6 + + 230 - - NoControl + + 17, 136 - - 162, 56 + + NoControl - - 2, 2 + + Options - - 300 + + 233, 26 - - False + + 90, 97 - - lbLTouchLM + + None - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - pnlController + + gBSensitivity - - 7 + + Flash at - - None + + 233, 26 - - Flat + + Inverted X - + NoControl - - 328, 190 + + 2 - - 4, 4, 4, 4 + + NoControl - - 36, 17 + + Yes - - 171 + + True - - Right Y-Axis- + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnRSUp + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + StretchImage - - pnlController + + WASDToolStripMenuItem - - 8 + + R2 - - NoControl + + Inverted - - 391, 2 + + 157, 204 - - 2, 2 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 299 + + bnRSDown - - False + + bnRSLeft - - lbLR2 + + gBSensitivity - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 151, 26 - - pnlController + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9 + + 215 - - None + + 38, 269 - - Flat + + tPCurve - - NoControl + + 4, 4, 4, 4 - - 364, 204 + + nUDRSS - + + 7, 54 + + 4, 4, 4, 4 - - 12, 24 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 170 + + 6 - - Right X-Axis+ + + Inverted - - bnRSRight + + tPDeadzone - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tSMIDPadInverted - - pnlController + + 4, 4, 4, 4 - - 10 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + bnDown - - 82, 2 + + NoControl - - 2, 2 + + Left - - 298 + + 4, 99 - + False - - lbLL2 + + 4, 4, 4, 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 549, 482 - - pnlController + + 6, 21 - - 11 + + NoControl - - None + + gBLightbar - - Flat + + 11 - + NoControl - - 330, 207 + + 151, 26 - - 4, 4, 4, 4 + + 1 - - 34, 27 + + True - - 168 + + pnlTPMouse - - Right Stick + + 112, 133 - - bnR3 + + B - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlController - - - 12 - - - NoControl - - - 390, 29 + + 0 - - 2, 2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 297 + + 26, 17 - - False + + 32 - - lbLR1 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 375, 110 - - pnlController + + 7 - - 13 + + 39, 21 - - None + + 364, 204 - - Flat + + pnlController - - NoControl + + tCControls - - 316, 204 + + Pulse at - + 4, 4, 4, 4 - - 12, 24 - - - 169 + + WASD - - Right X-Axis- + + 156, 156 - - bnRSLeft + + Color by Battery % - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBRumble - + pnlController - - 14 - - - NoControl + + 170 - - 74, 28 + + 261 - - 2, 2 + + Gyro - - 296 + + 8, 17 - + False - - lbLL1 + + % - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 114, 207 - - pnlController + + MouseToolStripMenuItem - - 15 + + 4, 4, 4, 4 - - None + + Circle - - Flat + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 233, 26 - - 157, 204 + + 209, 11 - - 4, 4, 4, 4 + + pnlActions - - 10, 28 + + Inverted X - - 164 + + gBLightbar - - Left X-Axis- + + 6 - - bnLSLeft + + 7 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 172, 22 - - pnlController + + 2, 2 - - 16 + + lbRS - - NoControl + + nUDL2S - - 250, 192 + + 0 - + 2, 2 - - 295 - - - False + + 241 - - lbLPS + + Left Stick - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - pnlController + + 210, 29 - - 17 + + 360, 4 - - None + + True - - Flat + + 250 - + NoControl - - 167, 191 + + 8, 57 - - 4, 4, 4, 4 + + Input Delay: N/Ams - - 35, 14 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 167 + + lbGyroSens - - Left Y-Axis- + + tPDeadzone - - bnLSUp + + 4, 4, 4, 4 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 208, 29 pnlController - - 18 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + NoControl - - 52, 134 - - - 2, 2 - - - 294 - - - False - - - lbLLeft - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlController - - - 19 + + 3 - - None + + 4 - - Flat + + 215 - - NoControl + + pnlController - - 203, 204 + + 265, 39 - + 4, 4, 4, 4 - - 14, 26 + + No - - 165 + + NoControl - - Left X-Axis+ + + 61, 22 - - bnLSRight + + nUDSX - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - pnlController + + 260 - - 20 + + 3 - - NoControl + + Browse... - - 112, 133 + + fLPTouchSwipe - - 2, 2 + + 80 - - 293 + + pnlController - - False + + 136, 26 - - lbLright + + tPSpecial - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 25 - - pnlController + + 234 - - 21 + + NoControl - - None + + tBRedBar - - Flat + + Yes - - NoControl + + 13 - - 167, 231 + + 208, 29 - + + 0 + + 4, 4, 4, 4 - - 35, 13 + + 4, 4, 4, 4 - - 166 + + Y Button - - Left Y-Axis+ + + 119, 21 - - bnLSDown + + Use for Controls - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Start with Slide/Scroll off - - pnlController + + NoControl - - 22 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 4, 4, 4, 4 - - 91, 151 + + lbL2TrackS - - 2, 2 + + fLPTouchSwipe - - 292 + + pnlSixaxis - + False - - lbLDown + + 89, 31 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - pnlController + + 4, 4, 4, 4 - - 23 + + 233, 26 - - None + + 298 - - Flat + + 61, 24 - + NoControl - - 392, -1 + + NoControl - - 4, 4, 4, 4 + + fLPTouchSwipe - - 56, 26 + + 549, 564 - - 89 + + Yes - - Right Trigger + + 405, 160 - - bnR2 + + 4, 4 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - pnlController + + 79, 11 - - 24 + + 4, 4, 4, 4 - - None + + 50, 22 - - Flat + + 7 - + NoControl - - 93, 96 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + bnTouchMulti - - 26, 40 + + 492, -3 - - 80 + + NoControl - - Up Button + + 257 - - bnUp + + 8, 22 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - pnlController + + gBOther + + + lbL2 + + + False + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 25 + + 5, 166 - - None + + 157 - - Flat + + Left X-Axis+ - - NoControl + + pnlController - - 92, 151 + + gBTouchpad - - 4, 4, 4, 4 + + New Action - - 25, 34 + + 237 - - 81 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Down Button + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnDown + + System.Windows.Forms.ComboBox, 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 + + 156, 39 - - pnlController + + 4 - - 26 + + 4, 0, 4, 0 - - None + + 4, 4, 4, 4 - - Flat + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + NoControl - - 404, 94 - - - 4, 4, 4, 4 + + Hold selected controls to perform an action, check the Action to use it while profile is loaded. Max 50 actions - - 38, 37 + + Flat - - 73 + + 156, 156 - - Y Button + + 9 - - bnTriangle + + 1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + fLPTiltControls - - pnlController + + 2, 2 - - 27 + + False - - None + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + crossToolStripMenuItem - + NoControl - - 388, 28 - - - 4, 4, 4, 4 + + 234, 524 - - 70, 28 + + 233, 26 - - 87 + + 14 - - Right Bumper + + Mouse - - bnR1 + + Middle Mouse Button - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1, 24 - - pnlController + + 233, 26 - - 28 + + 58, 81 - - None + + False - - Flat + + gBTouchpad - - NoControl + + lbL2TrackS - - 369, 129 + + 1 - - 4, 4, 4, 4 + + 14 - - 33, 33 + + 0, 0 - - 72 + + 111, 37 - - X Button + + 235 - - bnSquare + + Right Button - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlController + + 150, 24 - - 29 + + True - - None + + 1 - - Flat + + 106, 62 - - NoControl + + 218 - - 120, 131 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + cBTap - - 41, 29 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 82 + + 20, 17 - - Right Button + + nUDLS - - bnRight + + Inverted Y - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Vertical - - pnlController + + 4, 4, 4, 4 - - 30 + + 2 - - NoControl + + Control - - 90, 97 + + btnRainbow - - 2, 2 + + Right Bumper - - 291 + + tPControls - - False + + 4, 4, 4, 4 - - lbLUp + + No - + + System.Windows.Forms.Form, 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 - - pnlController + + tBsixaxisGyroZ - - 31 + + 334, 160 - - None + + 167, 191 - - Flat + + None - - NoControl + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 52, 133 + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + Down Button - - 42, 27 + + NoControl - - 83 + + btnGyroTriggers - - Left Button + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnLeft + + 208, 29 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 135, 12 - - pnlController + + 20, 17 - - 32 + + cBDoubleTap - - NoControl + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 153, 82 + + 233, 26 - - 2, 2 + + 12 - - 290 + + 47 - - False + + bnTriangle - - lbLShare + + Flush HID - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 180 - - pnlController + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 33 + + 10, 28 - - None + + 549, 35 - - Flat + + tCSens - + NoControl - - 352, 72 - - - 4, 4, 4, 4 + + 20, 17 - - 35, 40 + + 204 - - 84 + + pnlRSTrack - - Start + + lbL2TrackS - - bnOptions + + 82, 2 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 250 - - pnlController + + 93, 96 - - 34 + + 206 - - None + + MiddleLeft - - Flat + + 4, 4, 4, 4 - - NoControl + + 247 - - 150, 71 + + 253 - - 4, 4, 4, 4 + + 2 - - 27, 40 + + 208, 29 - - 85 + + 183, 171 - - Back + + tPDeadzone - - bnShare + + Left Trigger - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 284 - - pnlController + + Triangle - - 35 + + True - + NoControl - - 358, 82 + + 4, 4, 4, 4 - - 15, 15 + + 100 - - 289 + + 6 - - False + + Right X-Axis+ - - lbLOptions + + 45 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - pnlController + + 248 - - 36 + + NoControl - - None + + 207 - - Flat + + 233, 26 - - NoControl + + 3 - - 73, 28 + + NoControl - + 4, 4, 4, 4 - - 69, 27 + + True + + + 1 - - 88 + + True - - Left Bumper + + pnlController - - bnL1 + + lbLR1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - pnlController + + lbSwipeRight - - 37 + + 2 - - None + + Sixaxis Down : - - Flat + + 4, 4 - + NoControl - - 293, 78 + + 5 - + 4, 4, 4, 4 - - 58, 81 - - - 190 + + pnlController - - Left Mouse Button + + True - - bnTouchRight + + Flat - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - pnlController + + True - - 38 + + 136, 26 - - None + + NoControl - - Flat + + gBOther - + NoControl - - 88, 2 + + None - - 4, 4, 4, 4 + + 3 - - 50, 21 + + 4, 0, 4, 0 - - 90 + + 90, 29 - - Left Trigger + + 358, 82 - - bnL2 + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlSAMouse - - pnlController + + NoControl - - 39 + + 1 - + NoControl - - 405, 96 + + 4, 4, 4, 4 - - 2, 2 + + NoControl - - 288 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + 294 - - lbLTriangle + + 8 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - pnlController + + X Button - - 40 + + 26, 40 - - None + + True - - Flat + + lbRed - - NoControl + + tBLowGreenBar - - 179, 79 + + 340, 57 - - 4, 4, 4, 4 + + pnlController - - 53, 79 + + Flat - - 191 + + fLPTouchSwipe - - Left Mouse Button + + bnR1 - - bnTouchLeft + + 4, 25 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 73, 17 - - pnlController + + 12 - - 41 + + 28, 61 - - NoControl + + 34 - - 367, 129 + + 216 - + + Inverted Y + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2, 2 - - 287 + + 24 - - False + + NoControl - - lbLSquare + + 340, 237 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - pnlController + + 84, 24 - - 42 + + 50, 22 - - None + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + True - - 233, 76 + + 14, 26 - - 4, 4, 4, 4 + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 59, 84 + + L2 - - 192 + + 8, 239 - - Right Mouse Button + + lb6Accel - - bnTouchMulti + + 8, 64 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 139, 38 - - pnlController + + 4, 0, 4, 0 - - 43 + + No - - NoControl + + 250 - - 443, 129 + + 287 - - 2, 2 + + 111, 111 - - 286 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + L1 : - - lbLCircle + + Sixaxis Left : - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Left Stick Up : - - pnlController + + 204 - - 44 + + 21, 21 - + + ABXYToolStripMenuItem + + NoControl - - 405, 162 + + lbL2TrackS - - 2, 2 + + False - - 285 + + NoControl - + + 102, 6 + + False - - lbLCross + + 206 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8, 267 - - pnlController + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 45 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - None + + Left Bumper - - Flat + + Right Y-Axis+ - - NoControl + + tCSens - - 179, 53 + + Options - - 4, 4, 4, 4 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 172, 24 + + 83, 93 - - 193 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Middle Mouse Button + + 128, 17 - - bnTouchUpper + + 50, 22 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cBControllerInput - - pnlController + + fLPSettings - - 46 + + 19, 17 - - Zoom + + 7, 95 - - Flat + + nUDSixaxis - - NoControl + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 179, 37 + + R2 - - 4, 4, 4, 4 + + NoControl - - 172, 16 + + Mouse Sensitivity: - - 91 + + pBHoveredButton - - btnLightbar + + 15 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Top, Bottom, Left - + pnlController - - 47 + + 4, 4, 4, 4 - - None + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + Sixaxis X - - 254, 192 + + True - - 4, 4, 4, 4 + + Inverted Y - - 21, 21 + + gBOther - - 86 + + btnBrowse - - Guide + + 0 - - bnPS + + 9 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + wScanCodeArrowKeysToolStripMenuItem - - pnlController + + Flat - - 48 + + pnlSAMouse - - None + + fLPSettings - - Flat + + nUDSZS - - NoControl + + 4, 4, 4, 4 - - 405, 160 + + 11 - - 4, 4, 4, 4 + + fLPTiltControls + + + 296 37, 36 - - 74 + + 131, 21 - - A Button + + 6 - - bnCross + + pnlLowBattery - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15 - + pnlController - - 49 + + NoControl - - None + + Deadzone - - Flat + + 41 - - NoControl + + 50, 22 - - 443, 126 + + 25 - - 4, 4, 4, 4 + + fingersOnTouchpadToolStripMenuItem - - 36, 38 + + nUDRSCurve - - 71 + + 257 - - B Button + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnCircle + + cBGyroInvertY - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lbLSTip - - pnlController + + 4 - - 50 + + Always on - - NoControl + + 4, 0, 4, 0 - - 112, 244 + + TopRight - - 4, 0, 4, 0 + + 15 - - 313, 37 + + gBSensitivity - - 283 + + 38, 2 - - Cross: A + + tBL2 - - TopCenter + + 0 - - lbControlName + + nUDSXS - + + System.Windows.Forms.TabPage, 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 - - pnlController + + None - - 51 + + NoControl - - lVActions + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlActions + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + 4, 4, 4, 4 - - panel2 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + onTouchpadToolStripMenuItem - - pnlActions + + 246 - - 1 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fill + + 111, 74 - - 0, 0 + + nUDTouch - + + tPControls + + 4, 4, 4, 4 - - 549, 564 + + 4, 4, 4, 4 - - 15 + + 10 - - pnlActions + + pnlController - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - tPSpecial + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + False - - Fill + + 339, 152 - - 0, 82 + + 10 - - 4, 4, 4, 4 + + True - - 549, 482 + + pnlController - - 13 + + 4, 0, 4, 0 - - lVActions + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBLightbar - - pnlActions + + fLPSettings - - 0 + + True - - Name + + tPDeadzone - - 140 + + 36, 38 - - Trigger + + alwaysOnToolStripMenuItem + + + RS + + + 55, 21 + + + True + + + gBSensitivity + + + MiddleCenter + + + None - - 105 + + 4 - - Action + + NoControl - - 100 + + 1 - - fLPActionButtons + + 182, 4 - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 61, 22 - - panel2 + + 197 - + 0 - - lbActionsTip - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - panel2 - - - 1 - - - Top + + numUDMouseSens - - 0, 0 + + 18 - - 549, 82 + + 295 - - 16 + + 2 - - panel2 + + pnlController - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - pnlActions + + bnLeft - - 1 + + 155, 21 - - btnNewAction + + 287 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 0, 4, 0 - - fLPActionButtons + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + lbIdleMinutes - - btnEditAction + + 38, 39 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 0, 4, 0 - - fLPActionButtons + + nUDGyroSensitivity - - 1 + + NoControl - - btnRemAction + + 203 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4 - - fLPActionButtons + + tPDeadzone - - 2 + + 289 - - Fill + + NoControl - - 0, 35 + + TopCenter - - 4, 4, 4, 4 + + NoControl - - 549, 47 + + 20, 17 - - 15 + + pnlTPMouse - - fLPActionButtons + + lbRSS - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBSensitivity - - panel2 + + 4, 0, 4, 0 - - 0 + + 1 - - NoControl + + lbL2TrackS - - 4, 4 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + 2 - - 170, 29 + + 233, 26 - - 14 + + btnLSTrack - - New Action + + False - - btnNewAction + + cBWhileCharging - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBTouchpad - - fLPActionButtons + + tSMILSInvertedY - - 0 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + NoControl - - 182, 4 - - - 4, 4, 4, 4 - - - 170, 29 + + 84, 29 - - 14 + + True - - Edit Action + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnEditAction + + False - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 34, 27 - - fLPActionButtons + + 74 - - 1 + + 30 - - NoControl + + 167 - - 360, 4 + + 138, 56 - + 4, 4, 4, 4 - - 170, 29 + + 189, 268 - - 14 + + NoControl - - Remove Action + + 35, 13 - - btnRemAction + + 16, 16 - - 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 - - fLPActionButtons + + 4, 0, 4, 0 - - 2 + + tSMIDPadInvertedX - - Top + + 4, 4, 4, 4 - - NoControl + + 56, 26 - - 0, 0 + + Square - - 4, 0, 4, 0 + + 254 - - 549, 35 + + None - - 15 + + defaultToolStripMenuItem - - Hold selected controls to perform an action, check the Action to use it while profile is loaded. Max 50 actions + + 36, 76 - - MiddleCenter + + pnlController - - lbActionsTip + + 4, 0, 4, 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16, 16 - - panel2 + + Left Stick - - 1 + + 39, 21 - - tPDeadzone + + 4, 0, 4, 0 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 24, 17 - - tCSens + + 11, 95 - - 0 + + 50, 22 - - tPCurve + + NoControl - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 31, 156 - - tCSens + + 27, 17 - - 1 + + 154, 5 - - 352, 69 + + Back - - 4, 4, 4, 4 + + button1 - - 340, 98 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 234 + + 9, 9 - - tCSens + + NoControl - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 221 - - fLPSettings + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + NoControl - - 4, 25 + + NoControl - - 4, 4, 4, 4 + + 33, 10 - - 4, 4, 4, 4 + + lbLS - - 332, 69 + + pnlActions - - 0 + + 4, 0, 4, 0 - - Deadzone + + False - - tPDeadzone + + lbR2Track - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - tCSens + + Popup - - 0 + + False - - nUDLSCurve + + 104, 21 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 317 - - tPCurve + + cBFlushHIDQueue - - 0 + + toolStripSeparator1 - - nUDRSCurve + + 34, 17 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + R2 - - tPCurve + + 16, 16 - - 1 + + pnlActions - - lbRSCurve + + cBDinput - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 32, 62 - - tPCurve + + lbLright - - 2 + + 11 - - lbRSCurvePercent + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tPCurve + + 232 - - 3 + + 7, 202 - - lbLSCurvePercent + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + No - - tPCurve + + True - - 4 + + pnlController - - lbLSCurve + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + Flat + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tPCurve + + 325, 151 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + 7 - - 4, 25 + + NoControl - + 4, 4, 4, 4 - - 4, 4, 4, 4 + + 160 - - 332, 69 + + 283 - - 1 + + 136, 26 - - Curve + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tPCurve + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 82 - - tCSens + + Invert: - - 1 + + gBGyro - - 36, 2 + + True - - 4, 4, 4, 4 + + True - - No + + 17 - - 61, 22 + + 4, 0, 4, 0 - - 206 + + 7 - - nUDLSCurve + + lowColorChooserButton - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - tPCurve + + 222 - - 0 + + lbL2TrackS - - 182, 2 + + True - - 4, 4, 4, 4 + + 1262, 593 - - No + + bnR2 - - 61, 22 + + 4, 0, 4, 0 - - 207 + + lbPercentFlashBar - - nUDRSCurve + + False - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - tPCurve + + 4, 4, 4, 4 - - 1 + + 4, 4, 4, 4 - - True + + 4, 4, 4, 4 - + NoControl - - 154, 5 - - - 4, 0, 4, 0 + + NoControl - - 27, 17 + + 258 - - 205 + + 255 - - RS + + 120, 10 - - lbRSCurve + + System.Windows.Forms.ToolStripMenuItem, 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 + + 89, 29 - - tPCurve + + lbLR2 - - 2 + + 167, 231 - - True + + 269, 60 - - NoControl + + 165 - - 251, 5 + + 404, 94 - - 4, 0, 4, 0 + + 4, 4, 4, 4 - - 20, 17 + + lbL2TrackS - - 204 + + Fill - - % + + 4, 0, 4, 0 - - lbRSCurvePercent + + Flat - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlSixaxis - - tPCurve + + rBTPControls - - 3 + + triangleToolStripMenuItem - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + None - - 105, 5 + + Curve - - 4, 0, 4, 0 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 20, 17 + + l2ToolStripMenuItem - - 204 + + gBLightbar - - % + + 2 - - lbLSCurvePercent + + Vertical - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 216 - - tPCurve + + 135, 60 - - 4 + + 231 - - True + + 153, 82 - + NoControl - - 8, 5 + + 36, 34 - - 4, 0, 4, 0 + + pnlTPMouse - - 25, 17 + + pnlSixaxis - - 204 + + 352, 278 - - LS + + 8 - - lbLSCurve + + RS - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0 - - tPCurve + + 3 - - 5 + + 337, 227 - - True + + 3 - - gBGyro + + gBLightbar - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Launch Program +with profile - - fLPSettings + + 196, 19 - - 1 + + 24, 17 - - gBSensitivity + + Use for Controls - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tPCurve - - fLPSettings + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + 4, 78 - - Fill + + lbBlue - - TopDown + + 3, 2 - - 557, 0 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 705, 593 + + lb6Gryo - - 254 + + 43 - - fLPSettings + + 4, 4, 4, 4 - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBTouchpad - - $this + + False - - 2 + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - rBSAControls + + 249 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 234 - - gBGyro + + Yes - - 0 + + 23 - - rBSAMouse + + 4, 4, 4, 4 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 27, 40 - + gBGyro - - 1 - - - pnlSAMouse + + 5 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 256 - - gBGyro + + 7, 131 - - 2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 317 + + 136, 20 - + 4, 4, 4, 4 - - 4, 4, 4, 4 + + 10 - - 340, 227 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 248 + + nUDRainbowB - - Gyro + + 87 - - gBGyro + + cMSPresets - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlRSTrack - - fLPSettings + + 4, 4, 4, 4 - - 1 + + 61, 24 - - True + + Zoom - + NoControl - - 180, 25 - - - 131, 21 + + 2, 2 - - 258 + + 196 - - Use for Controls + + Swipe Down - - rBSAControls + + controlToolStripMenuItem - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - gBGyro + + 330, 207 - - 0 + + 10 - - True + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + NoControl - - 16, 25 + + 4, 4, 4, 4 - - 119, 21 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 257 + + lbSwipeUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 247 + + + 250 + + + pnlSixaxis - - Use as Mouse + + lbFull - - rBSAMouse + + 4, 4, 4, 4 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + No - - gBGyro + + 125, 25 - - 1 + + NoControl - - cBGyroInvertY + + No - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 0, 4, 0 - - pnlSAMouse + + NoControl - - 0 + + pnlTPMouse - - cBGyroInvertX + + 2 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 203, 204 - - pnlSAMouse + + False - - 1 + + lbUseController - - lbGyroInvert + + 4, 4, 4, 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 226 - - pnlSAMouse + + pnlLowBattery - + 2 - - lbGyroTriggers + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - pnlSAMouse + + 131, 3 - - 3 + + 8, 37 - - btnGyroTriggers + + 236 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBGyro - - pnlSAMouse + + 6, 110 - - 4 + + 4, 4, 4, 4 - - nUDGyroSensitivity + + 4, 4, 4, 4 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - pnlSAMouse + + NoControl - - 5 + + 0 - - lbGyroSens + + Flat - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - pnlSAMouse + + fLPTouchSwipe - - 6 + + 147, 21 - - 7, 54 + + False - - 329, 150 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 259 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlSAMouse + + 214 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Special Actions - - gBGyro + + 175, 26 - - 2 + + 3 - - True + + fLPTiltControls - - NoControl + + 50 - - 121, 95 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + lbLSquare - - Yes + + 197 - - 39, 21 + + pnlController - - 261 + + NoControl - - Y + + 158, 121 - - cBGyroInvertY + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlSAMouse + + 195, 244 - - 0 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 117, 423 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 67, 95 + + Cross : - - 4, 4, 4, 4 + + Test Heavy - - Yes + + bnLSRight - - 39, 21 + + 0, 0 - - 260 + + gBSensitivity - - X + + 158, 21 - - cBGyroInvertX + + 28, 32 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlLowBattery - - pnlSAMouse + + tPDeadzone + + + R3 : + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + Right Stick Down : - - True + + 233 - + NoControl - - 11, 96 - - - 4, 0, 4, 0 + + None - - 47, 17 + + pnlFull - - 259 + + NoControl - - Invert: + + 1280, 640 - - TopRight + + NoControl - - lbGyroInvert + + 254, 192 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 189, 110 - - pnlSAMouse + + MiddleCenter - - 2 + + 108, 17 - - True + + lbL2TrackS - - NoControl + + 131, 39 - - 8, 17 + + 1 - - 4, 0, 4, 0 + + 151, 26 - - 65, 17 + + 287 - - 258 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Triggers: + + None - - TopRight + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbGyroTriggers + + 352, 69 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleLeft - - pnlSAMouse + + Flat - - 3 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 4, 4, 4, 4 - - 120, 10 + + lbEmpty - - 200, 31 + + 405, 96 - - 257 + + 12 - - None + + 6 - - btnGyroTriggers + + 4, 0, 4, 0 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - pnlSAMouse + + True - - 4 + + 136, 49 - - 138, 56 + + 172, 24 - - 4, 4, 4, 4 + + 210, 59 - - 61, 22 + + RS - - 256 + + NoControl - - nUDGyroSensitivity + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - pnlSAMouse + + 405, 162 - - 5 + + 4, 4, 4, 4 - - True + + pnlSAMouse - + NoControl - - 8, 57 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + lbLLeft - - 110, 17 + + 1 - - 255 + + 6 - - Gyro Sensitivity: + + nUDLSS - - TopRight + + NoControl - - lbGyroSens + + 54, 22 - + + Right Stick + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlSAMouse + + None - - 6 + + Tap - - lbL2S + + 258 - + + 168 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBSensitivity + + lbLTouchUpper - - 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - nUDL2S + + DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.401.0, Culture=neutral, PublicKeyToken=null - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 37, 17 - - gBSensitivity + + None - - 1 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - nUDLSS + + Y - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - gBSensitivity + + True - + 2 - - lbSixaxisXS - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 41 - - gBSensitivity + + 1 - - 3 + + 303 - - nUDR2S + + 4, 25 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 156, 156 - - gBSensitivity + + 388, 28 - - 4 + + cHTrigger - - lbSixaxisZS + + tPCurve - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnL1 - - gBSensitivity + + 4, 0, 4, 0 - - 5 + + fLPSettings - - nUDRSS + + 69, 27 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - gBSensitivity + + 4, 4, 4, 4 - - 6 + + True - - lbR2LS + + 13 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + R1 - - gBSensitivity + + No - - 7 + + 150, 71 - - nUDSXS + + 252 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBTouchpad - - gBSensitivity + + lbRSCurve - - 8 + + B Button - - lbRSS + + 4, 4, 4, 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBSensitivity + + NoControl - - 9 + + NoControl - - lbLSS + + 201 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 42, 27 - - gBSensitivity + + 50, 22 - - 10 + + 233, 26 - - nUDSZS + + False - - System.Windows.Forms.NumericUpDown, 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 - - gBSensitivity + + 233, 26 - - 11 + + 19 - - 352, 175 + + btnLSTrackS - - 4, 4, 4, 4 + + 5 - - 4, 4, 4, 4 + + Share - - 340, 95 + + 36 - - 257 + + tSMILSInverted - - Sensitivity + + 42 - - gBSensitivity + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 242 - - fLPSettings + + Gyro Sensitivity: - - 4 + + 233, 26 - - True + + 63, 17 - - NoControl + + 2, 2 - - 12, 26 + + 151, 26 - + 4, 0, 4, 0 - - 24, 17 + + 50, 21 - - 204 + + pnlController - - L2 + + 51, 17 - - lbL2S + + lbLUp - + + R + + + lbL2TrackS + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBSensitivity + + 301 - - 0 + + 105 - - 42, 23 + + nUDIdleDisconnect - - 4, 4, 4, 4 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - No + + tBsixaxisAccelZ - - 50, 22 + + System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Name + + + False + + + 3 - - 212 + + cBLaunchProgram - - nUDL2S + + 4, 4, 4, 4 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - gBSensitivity + + gBLightbar - - 1 + + 0 - - 42, 60 + + 14, 49 - - 4, 4, 4, 4 + + pnlController - - No + + 3 - - 50, 22 + + lbLShare - - 213 + + cbStartTouchpadOff - - nUDLSS + + NoControl - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - gBSensitivity + + 170, 29 - - 2 + + Flat - - True + + 225 - - NoControl + + lbSixaxisX - - 200, 25 + + NoControl - - 4, 0, 4, 0 + + downToolStripMenuItem - - 63, 17 + + 7 - - 206 + + False - - Sixaxis X + + True - - lbSixaxisXS + + 247 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 49 - - gBSensitivity + + False - - 3 + + 4, 4, 4, 4 - - 135, 24 + + True - + 4, 4, 4, 4 - - 50, 22 + + Flat - - 210 + + 2 - - nUDR2S + + 0, 0 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleCenter - - gBSensitivity + + 4, 4, 4, 4 - - 4 + + pnlController - - True + + bnTouchLeft - - NoControl + + pnlSixaxis - - 200, 62 + + pnlController - - 4, 0, 4, 0 + + Left Stick - - 63, 17 + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 207 + + 0 - - Sixaxis Z + + cHName - - lbSixaxisZS + + 203 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlController - - gBSensitivity + + tSMIRSInvertedY - - 5 + + lbRSTip - - 135, 60 + + 244 - - 4, 4, 4, 4 + + 239 - - No + + Options - - 50, 22 + + 4, 0, 4, 0 - - 214 + + 5 - - nUDRSS + + 232 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 52, 134 - - gBSensitivity + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 233, 26 - - NoControl + + 28 - - 106, 27 + + G - - 4, 0, 4, 0 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 26, 17 + + 4 - - 208 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - R2 + + True - - lbR2LS + + System.Windows.Forms.ToolStripMenuItem, 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 + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBSensitivity + + 20 - - 7 + + Inverted X + + + NoControl - - 269, 24 + + tBsixaxisAccelY - + 4, 4, 4, 4 - - 50, 22 - - - 211 + + 100, 29 - - nUDSXS + + 197 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 340, 305 - - gBSensitivity + + lbLL1 - - 8 + + fLPSettings - - True + + 0 - - NoControl + + 140 - - 106, 62 + + 11 - - 4, 0, 4, 0 + + 1 - - 27, 17 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 209 + + 243 - - RS + + 233, 26 - - lbRSS + + 191 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBSensitivity - - - 9 + + tPDeadzone - - True + + tBsixaxisAccelX - - NoControl + + bnL3 - - 12, 63 + + 160 - - 4, 0, 4, 0 + + 254, 268 - - 25, 17 + + gBOther - - 205 + + pnlController - - LS + + NoControl - - lbLSS + + Yes - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - gBSensitivity + + 196, 5 - - 10 + + bnGyroZP - - 269, 60 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + 61, 21 - - No + + 31 - - 50, 22 + + 67, 95 - - 215 + + 158 - - nUDSZS + + NoControl - - System.Windows.Forms.NumericUpDown, 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 - - gBSensitivity + + 12, 66 - - 11 + + 110, 17 - - 482, 17 - - - 234, 524 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cMGyroTriggers + + 25, 34 - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 241 - - 233, 26 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Cross + + 2, 2 - - 233, 26 + + 12 - - Circle + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 233, 26 + + rBSAMouse - - Square + + NoControl - - 233, 26 + + tPCurve - - Triangle + + tPSpecial - - 233, 26 + + 32, 30 - - L1 + + Trigger - - 233, 26 + + False - - L2 + + 253, 133 - - 233, 26 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - R1 + + NoControl - - 233, 26 + + 257 - - R2 + + 4, 0, 4, 0 - - 233, 26 + + 4, 0, 4, 0 - - Up + + 44 - - 233, 26 + + 8 - - Down + + 352, 4 - - 233, 26 + + 49 - - Left + + Zoom - - 233, 26 + + 15, 15 - - Right + + pnlLowBattery - - 233, 26 + + 136, 26 - - L3 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 233, 26 + + tPCurve - - R3 + + tSMIMouseInverted - - 233, 26 + + lbL2TrackS - - Finger on Touchpad + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 233, 26 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 Fingers on Touchpad + + 4, 4, 4, 4 - - 233, 26 + + 61, 24 - - Options + + Flat - - 233, 26 + + 200, 25 - - Share + + Swipe Right - - 233, 26 + + 4, 0, 4, 0 - - PS + + False - - 233, 26 + + 5 - - Always on + + 203, 423 - - 647, 17 - - - True - - - 120, 120 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 11 - - 1262, 593 + + MiddleCenter - - 5, 5, 5, 5 + + 26, 17 - - 1280, 640 + + 2, 2 - - 18, 108 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Profile Options + + 4, 4, 4, 4 - - controlToolStripMenuItem + + 27 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBOther - - toolStripSeparator1 + + Inverted Y - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - defaultToolStripMenuItem + + 198 - - System.Windows.Forms.ToolStripMenuItem, 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 - - DpadToolStripMenuItem + + 4, 0, 4, 0 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 38 - - tSMIDPadInverted + + NoControl - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnLSLeft - - tSMIDPadInvertedX + + gBGyro - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tBsixaxisGyroY - - tSMIDPadInvertedY + + nUDflashLED - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16 - - LSToolStripMenuItem + + System.Windows.Forms.TrackBar, 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 + + Yes - - tSMILSInverted + + pnlFull - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5, 5, 5, 5 - - tSMILSInvertedX + + 352, 175 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 210 - - tSMILSInvertedY + + 108, 38 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - RSToolStripMenuItem + + NoControl - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + w/ Scan Code - - tSMIRSInverted + + 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 + + 170, 29 - - tSMIRSInvertedX + + 11 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lbLTouchLM - - tSMIRSInvertedY + + 4, 4, 4, 4 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 375, 70 - - ABXYToolStripMenuItem + + 3 - + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - WASDToolStripMenuItem + + 285 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlLSTrack - - wScanCodeWASDToolStripMenuItem + + Flat - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - ArrowKeysToolStripMenuItem + + R - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - wScanCodeArrowKeysToolStripMenuItem + + pnlSixaxis - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9, 70 - - MouseToolStripMenuItem + + 111, 37 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - tSMIMouseInverted + + 177, 23 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 125, 25 - - tSMIMouseInvertedX + + 167, 205 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 121, 17 tSMIMouseInvertedY - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - openFileDialog1 - - - System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - cHName + + 41, 29 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 0, 4, 0 - - cHTrigger + + 182, 21 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16, 25 - - cHAction + + False - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 150, 93 - - crossToolStripMenuItem + + 331, 234 - + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - circleToolStripMenuItem + + pnlTPMouse - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 26, 17 - - squareToolStripMenuItem + + 251 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 25, 17 - - triangleToolStripMenuItem + + 4, 4, 4, 4 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnPS l1ToolStripMenuItem - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnGyroXP - - l2ToolStripMenuItem + + 557, 593 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 78 - - r1ToolStripMenuItem + + 4, 0, 4, 0 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + for Mapping and readout - - r2ToolStripMenuItem + + 332, 69 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - onTouchpadToolStripMenuItem + + lbGyroZP - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cHAction - - downToolStripMenuItem + + 4, 0, 4, 0 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - leftToolStripMenuItem + + NoControl - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlController - - rightToolStripMenuItem + + Upper Touch : - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBOther - - l3ToolStripMenuItem + + Right Stick Right : - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 192 - - r3ToolStripMenuItem + + tSMIMouseInvertedX - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - fingerOnTouchpadToolStripMenuItem + + 84, 62 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 179, 79 - - fingersOnTouchpadToolStripMenuItem + + gBOther - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 0, 4, 0 - - optionsToolStripMenuItem + + 4, 4, 4, 4 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 151, 26 - - shareToolStripMenuItem + + tPControls - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9, 12 - - pSToolStripMenuItem + + 22 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Inverted X - - alwaysOnToolStripMenuItem + + 1 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - advColorDialog + + NoControl - - DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.4.0, Culture=neutral, PublicKeyToken=null + + 4, 0, 4, 0 - - Options + + 4, 4, 4, 4 - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnRSTrack - - Sensitivity + + 2, 2 - - Reset + + 1 - - Controller Readings + + pnlController + + 482, 17 + + + 326, 13 + + + True + + + 153, 17 + + + 647, 17 + + + de-DE + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/Options.ru-RU.resx b/DS4Windows/DS4Forms/Options.ru-RU.resx index 541c632c16..ad5efdb12a 100644 --- a/DS4Windows/DS4Forms/Options.ru-RU.resx +++ b/DS4Windows/DS4Forms/Options.ru-RU.resx @@ -266,21 +266,6 @@ 7, 46 - - 9, 137 - - - 328, 21 - - - Выключить скольжение и прокрутку тачпада - - - 0, 395 - - - 340, 160 - 213, 26 @@ -386,11 +371,14 @@ 214, 244 - - 9, 398 + + 9, 137 + + + 328, 21 - - 9, 398 + + Выключить скольжение и прокрутку тачпада 337, 236 @@ -447,6 +435,12 @@ 13, 115 + + 294, 21 + + + для назначеня клавиш и вывода текста + 12, 63 @@ -489,39 +483,6 @@ Индикация заряда: - - False - - - 165, 28 - - - 150, 85 - - - Использовать алтернативный цвет для режима сдвига: - - - 49, 17 - - - Сдвиг: - - - 17, 17 - - - К - - - 17, 17 - - - З - - - С - Световая панель @@ -564,45 +525,6 @@ Гиро - - 409, 309 - - - 67, 17 - - - Нажмите - - - 195, 148 - - - False - - - 350, 358 - - - 183, 36 - - - для использования его управления - - - (отсутствует) - - - Тачпад (не нажатый) - - - 353, 330 - - - Режим Сдвига - - - 4, 103 - 4, 103 @@ -644,7 +566,7 @@ Кривая - 14, 53 + 14, 48 231, 21 @@ -652,6 +574,9 @@ Использовать для управления + + 16, 20 + 188, 21 @@ -754,13 +679,10 @@ 244, 26 + + Всегда включен + 245, 524 - - Чувствительность - - - Считывание контроллера - \ No newline at end of file diff --git a/DS4Windows/DS4Forms/RecordBox.Designer.cs b/DS4Windows/DS4Forms/RecordBox.Designer.cs index e33b5218b9..c00427e443 100644 --- a/DS4Windows/DS4Forms/RecordBox.Designer.cs +++ b/DS4Windows/DS4Forms/RecordBox.Designer.cs @@ -166,15 +166,15 @@ private void InitializeComponent() // // pBRtouch // - resources.ApplyResources(this.pBRtouch, "pBRtouch"); this.pBRtouch.Image = global::DS4Windows.Properties.Resources.right_touch; + resources.ApplyResources(this.pBRtouch, "pBRtouch"); this.pBRtouch.Name = "pBRtouch"; this.pBRtouch.TabStop = false; // // pBLtouch // - resources.ApplyResources(this.pBLtouch, "pBLtouch"); this.pBLtouch.Image = global::DS4Windows.Properties.Resources.left_touch; + resources.ApplyResources(this.pBLtouch, "pBLtouch"); this.pBLtouch.Name = "pBLtouch"; this.pBLtouch.TabStop = false; // @@ -242,24 +242,24 @@ private void InitializeComponent() // // cMSLoadPresets // - resources.ApplyResources(this.cMSLoadPresets, "cMSLoadPresets"); this.cMSLoadPresets.ImageScalingSize = new System.Drawing.Size(20, 20); this.cMSLoadPresets.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.altTabToolStripMenuItem, this.fromFileToolStripMenuItem}); this.cMSLoadPresets.Name = "cMSLoadPresets"; this.cMSLoadPresets.ShowImageMargin = false; + resources.ApplyResources(this.cMSLoadPresets, "cMSLoadPresets"); // // altTabToolStripMenuItem // - resources.ApplyResources(this.altTabToolStripMenuItem, "altTabToolStripMenuItem"); this.altTabToolStripMenuItem.Name = "altTabToolStripMenuItem"; + resources.ApplyResources(this.altTabToolStripMenuItem, "altTabToolStripMenuItem"); this.altTabToolStripMenuItem.Click += new System.EventHandler(this.altTabToolStripMenuItem_Click); // // fromFileToolStripMenuItem // - resources.ApplyResources(this.fromFileToolStripMenuItem, "fromFileToolStripMenuItem"); this.fromFileToolStripMenuItem.Name = "fromFileToolStripMenuItem"; + resources.ApplyResources(this.fromFileToolStripMenuItem, "fromFileToolStripMenuItem"); this.fromFileToolStripMenuItem.Click += new System.EventHandler(this.fromFileToolStripMenuItem_Click); // // RecordBox diff --git a/DS4Windows/DS4Forms/RecordBox.fr-FR.resx b/DS4Windows/DS4Forms/RecordBox.fr-FR.resx index fbf93e526b..4c7e49b0b9 100644 --- a/DS4Windows/DS4Forms/RecordBox.fr-FR.resx +++ b/DS4Windows/DS4Forms/RecordBox.fr-FR.resx @@ -117,12 +117,25 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Enregistrer + + + + 773, 149 + + + 143, 21 + + + Enregistrer Délais + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ - CgAAAk1TRnQBSQFMAgEBAwEAAXgBAAF8AQABEAEAARABAAT/AQkBEAj/AUIBTQE2AQQGAAE2AQQCAAEo + CgAAAk1TRnQBSQFMAgEBAwEAAZQBAQGYAQEBEAEAARABAAT/AQkBEAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA @@ -168,67 +181,68 @@ Cw== - - - 79, 23 + + Jouer une fois - - -3, 25 + + Répéter tant que maintenu - - 121, 26 + + Sauvegarder - - 60, 42 + + Annuler - - 157, 23 + + Sauvegarder Préréglages - - - NoControl + + 385, 8 - - 60, 13 + + 322, 17 - - 157, 23 + + Utiliser Clavier/Souris + Manette 1 pour enregister - - 4ème Bouton de Souris Haut + + Changer la Couleur de la Barre de Lumière + + + Ajouter Vibrations - 5ème Bouton de Souris Haut + 5ème Bouton de Souris Bas - - Annuler + + 4ème Bouton de Souris Bas - Charger réglages + Charger Préréglages - - Enregistrer + + 122, 17 - - Sauvegarder + + Ordre des macros - - Sauvegarder réglages + + Double clicker sur une attente pour en éditer le temps - - Enregistrer délais + + 217, 56 - - Jouer une fois + + 216, 26 - - Répéter tant que maintenu + + Alterner les Programmes - - Ordre des macros + + Editer le Delais du cycle d'alternation - - Utiliser Clavier/Souris + Manette 1 pour enregister + + 216, 26 A partir du fichier... diff --git a/DS4Windows/DS4Forms/RecordBox.he.resx b/DS4Windows/DS4Forms/RecordBox.he.resx index 55fc1b7983..7df42cb12b 100644 --- a/DS4Windows/DS4Forms/RecordBox.he.resx +++ b/DS4Windows/DS4Forms/RecordBox.he.resx @@ -135,7 +135,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ - CgAAAk1TRnQBSQFMAgEBAwEAAYwBAQGMAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + CgAAAk1TRnQBSQFMAgEBAwEAAZQBAQGUAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA diff --git a/DS4Windows/DS4Forms/RecordBox.resx b/DS4Windows/DS4Forms/RecordBox.resx index 517f89c1ff..057c3f2192 100644 --- a/DS4Windows/DS4Forms/RecordBox.resx +++ b/DS4Windows/DS4Forms/RecordBox.resx @@ -117,742 +117,811 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cHMacro - - - - 23, 130 - - + Top, Right - - lVMacros + + + MiddleLeft - - 57, 28 + + NoControl - - Top, Right + + 715, 36 - + 4, 4, 4, 4 - - Macro Order - @Invariant - - 3 + + 284, 57 - - $this + + + 322 - - 4, 4, 4, 4 + + Record - + + btnRecord + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 731, 175 + + $this - - 0 + + 8 - - 4, 4, 4, 4 + + Top, Right - - Zoom + + True - - btnSave + + 793, 149 - - pnlMouseButtons + + 4, 4, 4, 4 - - Save Preset + + 123, 21 - - 155, 26 + + 324 - - Text Document (*.txt)|*.txt - @Invariant - - btn4th + + Record Delays - + + cBRecordDelays + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - - 2 + + 4 - - - 327 + + Top, Bottom, Left, Right - - 4, 4, 4, 4 + + Macro Order - - 4, 0, 4, 0 + + 200 - - btnLightbar + + 17, 17 + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ + CgAAAk1TRnQBSQFMAgEBAwEAAZwBAQGcAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA + AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 + AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA + AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm + AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM + AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA + ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz + AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ + AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM + AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA + AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA + AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ + AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/ + AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA + AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm + ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ + Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz + AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA + AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM + AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM + ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM + Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA + AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM + AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ + AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz + AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm + AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw + AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/yIAAf8B7wH3AfQGAAH/ + Au8B/xgAAf8BBw4AAuwB/wcAAf8BBwHxAQcBvAGRAosBkQG8AQcB8QHvAf8XAAH/AuwBBw0AAuwB/wgA + AfQB8AEHBosCBwH0FwAB/wTsAQcMAALsAf8IAAHxAZEBiwe0AZEB8RYAAf8G7AEHCwAC7AH/BwAB9AG0 + Aa0BtAG1AfEC/wHxAbUBtAGtAbQB9BUAAuwBBwLsAf8C7AH/CgAC7AH/BwABvAGzAbQBtQb/ArQBswG8 + FQAB7AEHAQAC7AL/AewB/woAAuwB/wcAAbUBtAG1ARkC9AEHAfMB/wEZAQkCtAG1FQABBwIAAuwB/wEA + Av8HAAH/AgAC7AH/AgAB/wQAArQBtQP0AuwBvAH/ARkDtBgAAuwB/woAAewB/wEAAuwB/wEAAQcB/wQA + ArQBtQH0Av8B7AHvAewBBwEZA7QYAALsAf8KAALsAf8C7AH/AQcB7AH/BAABuwG0AbsBGQH/AfQBkgH0 + Af8B7wEZAbUBtAG7GAAC7AH/CgABBwTsAQcC7AH/BAAB8AG0AbsBCQH/AfQB8gP/ArsBtAHwGAAC7AH/ + CwABBwXsAf8EAAH0AVgBUgG7AgkB8wL0AfMBCQG7ARwBUgF5Af8XAALsAf8MAAEHA+wB/wUAARoBmgF6 + AVIDCQK1AgkBuwFYARoBegH/FwAC7AH/DQABBwHsAf8GAAEaAXoBwwF6AVgB3AQJAbsBUgKaAXoB/xcA + A/8OAAH/BwAB/wEaAXoBwwF6AZkBCQLcAQkBmQF6AZoBegH2MgAB/wEaAVkBegH/BAAB/wFZAXoB9hIA + AUIBTQE+BwABPgMAASgDAAFAAwABEAMAAQEBAAEBBQABgBcAA/8BAAT/AYcB4QIAAf4BfwH+AT8BgAEB + AgAB/AE/Af4BPwHAAQMCAAH4AR8B/gE/AcABAwIAAfABDwH+AT8BgAEBAgAB8AEHAf4BPwGAAQECAAHy + AQcB/gE/AYABAQIAAfYBJwH2ATcBgAEBAgAB/gE/AfIBJwGAAQECAAH+AT8B8AEHAYABAQIAAf4BPwHw + AQcBgAEBAgAB/gE/AfgBDwQAAf4BPwH8AR8EAAH+AT8B/gE/BAAB/gE/Af8BfwEAAQECAAT/AYMBwwIA + Cw== + - - iLKeys + + 4, 36 - - 8 + + 4, 4, 4, 4 - - 241, 17 + + 701, 420 - - False + + 326 - - Record a Macro - @Invariant - - 3 + + lVMacros - - System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + $this + + + 9 + + Top, Right - - 88, 17 + + Play once - - 4, 4, 4, 4 + + Repeat while held - - 137, 28 + + 771, 220 - - btn5th + + 4, 4, 4, 4 - - 715, 100 + + 160, 24 - - 1 + + 327 - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cBStyle - - fromFileToolStripMenuItem + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 $this - - Top + + 2 - - Play once + + Top, Right - - 1 + + 715, 2 - - pBLtouch + + 4, 4, 4, 4 - - pBRtouch + + 139, 28 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 328 - - 4th Mouse Button Down + + Save - - Change Lightbar Color + + btnSave - - 139, 28 - - - MiddleCenter + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + $this - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - True + + Top, Right - - 5 + + 861, 2 - + 4, 4, 4, 4 - - 332 + + 137, 28 - - True + + 328 - - lbDelayTip + + Cancel - - 4, 4, 4, 4 + + btnCancel - - Top, Right + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + $this + + + 10 + + Top, Right - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl + + + 861, 100 4, 4, 4, 4 - - 719, 277 + + 137, 28 - - 57, 28 + + 332 - - Zoom + + Save Preset - - NoControl + + btnSaveP - - btnCancel + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + $this 3 - + + Top, Right + + True - - 4, 4, 4, 4 + + 412, 9 - - Repeat while held + + 4, 0, 4, 0 - - savePresets + + 294, 17 - - RecordBox + + 329 - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Use Keyboard/Mouse + Controller 1 to record - - 326 + + MiddleCenter - - 160, 24 + + lbRecordTip - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 284, 57 + + $this - - 6 + + 7 - - 4, 4, 4, 4 + + Top, Right - - openPresets + + pBRtouch - - 4, 0, 4, 0 + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 331 + + pnlMouseButtons - + 0 - - 347, 252 + + pBLtouch - - 328 + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 pnlMouseButtons - - 771, 210 - - - 701, 420 - - - 52, 12 + + 1 - - 5th Mouse Button Down + + btnLightbar - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + pnlMouseButtons - - 23, 95 + + 2 - - Load Preset + + btnRumble - - 4, 4, 4, 4 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top, Right + + pnlMouseButtons - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - 200 + + btn5th - - altTabToolStripMenuItem + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + pnlMouseButtons - - Top, Right + + 4 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btn4th - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 10 + + pnlMouseButtons - - 322 + + 5 - - 175, 28 + + 719, 277 - - 329 + + 4, 4, 4, 4 - - Top + + 280, 170 - - cMSLoadPresets + + 331 - - 861, 100 + + False - - NoControl + + pnlMouseButtons - - $this + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + $this - - pnlMouseButtons + + 12 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 156, 56 + + 203, 130 - - 332 + + 4, 4, 4, 4 - - Top, Bottom, Left, Right + + 57, 28 - + + Zoom + + 4 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pBRtouch - - MiddleLeft + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ImageList, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlMouseButtons - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - 5 + + 203, 95 - - 328 + + 4, 4, 4, 4 - - Save + + 57, 28 - - Top + + Zoom - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - True + + pBLtouch - - 123, 21 + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + pnlMouseButtons - - 4, 36 + + 1 - - 4, 4, 4, 4 + + Top - - 4, 4, 4, 4 + + NoControl - - btnRecord + + 23, 130 - - Cancel + + 4, 4, 4, 4 - + 175, 28 - - Top, Right + + 1 - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Change Lightbar Color - + + btnLightbar + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlMouseButtons - - From File... + + 2 - - 175, 28 + + Top - - 155, 26 + + NoControl - - 793, 149 + + 23, 95 - + 4, 4, 4, 4 - - NoControl + + 175, 28 - - lbRecordTip + + 2 - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Add Rumble - - 329 + + btnRumble - - 137, 28 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + pnlMouseButtons + + + 3 + + Top - - Text Document (*.txt)|*.txt - @Invariant - - Top, Right + + 52, 48 - - 7 + + 4, 4, 4, 4 - - cBStyle + + 175, 28 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 + + + 5th Mouse Button Down + + + btn5th + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 pnlMouseButtons - - System.Windows.Forms.Button, 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 + + Top - - NoControl + + 52, 12 - - 715, 36 + + 4, 4, 4, 4 - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 175, 28 - + + 0 + + + 4th Mouse Button Down + + + btn4th + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + pnlMouseButtons - - 8, 16 + + 5 - - 412, 9 + + Top, Right - - 52, 48 + + 715, 100 - - 715, 2 + + 4, 4, 4, 4 - - Record + + 139, 28 - + + 332 + + + Load Preset + + + btnLoadP + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - - 203, 130 + + 5 - - MiddleCenter + + 102, 17 + + + Text Document (*.txt)|*.txt - - cBRecordDelays + + 238, 17 + + + Text Document (*.txt)|*.txt - - 2 + + True - - $this + + 4, 10 - - Add Rumble + + 4, 0, 4, 0 - - 324 + + 88, 17 - - $this + + 333 - - $this + + Macro Order - - pnlMouseButtons + + lbMacroOrder - - Double click on a wait to edit the time + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this 1 - - btnLoadP + + Top, Right - - btnSaveP + + NoControl - - Macro Order + + 715, 175 - - 1000, 462 + + 4, 0, 4, 0 - - 203, 95 + + 283, 41 - - btnRumble + + 329 - - pnlMouseButtons + + Double click on a wait to edit the time - - $this + + MiddleCenter - - 2 + + False + + + lbDelayTip System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + $this - - Record Delays + + 6 - - 0 + + 356, 17 + + + 156, 56 + + + cMSLoadPresets + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 155, 26 Cycle Programs - - 861, 2 + + Edit the Wait to change the cycle rate - - 333 + + 155, 26 - - 9 + + From File... - - Use Keyboard/Mouse + Controller 1 to record + + fr-FR + + + True + + + 8, 16 - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ - CgAAAk1TRnQBSQFMAgEBAwEAAYQBAQGIAQEBEAEAARABAAT/AQkBEAj/AUIBTQE2AQQGAAE2AQQCAAEo - AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA - AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 - AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA - AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm - AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM - AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA - ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz - AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ - AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM - AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA - AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA - AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ - AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/ - AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA - AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm - ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ - Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz - AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA - AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM - AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM - ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM - Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA - AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM - AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ - AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz - AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm - AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw - AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/yIAAf8B7wH3AfQGAAH/ - Au8B/xgAAf8BBw4AAuwB/wcAAf8BBwHxAQcBvAGRAosBkQG8AQcB8QHvAf8XAAH/AuwBBw0AAuwB/wgA - AfQB8AEHBosCBwH0FwAB/wTsAQcMAALsAf8IAAHxAZEBiwe0AZEB8RYAAf8G7AEHCwAC7AH/BwAB9AG0 - Aa0BtAG1AfEC/wHxAbUBtAGtAbQB9BUAAuwBBwLsAf8C7AH/CgAC7AH/BwABvAGzAbQBtQb/ArQBswG8 - FQAB7AEHAQAC7AL/AewB/woAAuwB/wcAAbUBtAG1ARkC9AEHAfMB/wEZAQkCtAG1FQABBwIAAuwB/wEA - Av8HAAH/AgAC7AH/AgAB/wQAArQBtQP0AuwBvAH/ARkDtBgAAuwB/woAAewB/wEAAuwB/wEAAQcB/wQA - ArQBtQH0Av8B7AHvAewBBwEZA7QYAALsAf8KAALsAf8C7AH/AQcB7AH/BAABuwG0AbsBGQH/AfQBkgH0 - Af8B7wEZAbUBtAG7GAAC7AH/CgABBwTsAQcC7AH/BAAB8AG0AbsBCQH/AfQB8gP/ArsBtAHwGAAC7AH/ - CwABBwXsAf8EAAH0AVgBUgG7AgkB8wL0AfMBCQG7ARwBUgF5Af8XAALsAf8MAAEHA+wB/wUAARoBmgF6 - AVIDCQK1AgkBuwFYARoBegH/FwAC7AH/DQABBwHsAf8GAAEaAXoBwwF6AVgB3AQJAbsBUgKaAXoB/xcA - A/8OAAH/BwAB/wEaAXoBwwF6AZkBCQLcAQkBmQF6AZoBegH2MgAB/wEaAVkBegH/BAAB/wFZAXoB9hIA - AUIBTQE+BwABPgMAASgDAAFAAwABEAMAAQEBAAEBBQABgBcAA/8BAAT/AYcB4QIAAf4BfwH+AT8BgAEB - AgAB/AE/Af4BPwHAAQMCAAH4AR8B/gE/AcABAwIAAfABDwH+AT8BgAEBAgAB8AEHAf4BPwGAAQECAAHy - AQcB/gE/AYABAQIAAfYBJwH2ATcBgAEBAgAB/gE/AfIBJwGAAQECAAH+AT8B8AEHAYABAQIAAf4BPwHw - AQcBgAEBAgAB/gE/AfgBDwQAAf4BPwH8AR8EAAH+AT8B/gE/BAAB/gE/Af8BfwEAAQECAAT/AYMBwxgA - Cw== - + + 1000, 462 - - lbMacroOrder + + 4, 4, 4, 4 - - NoControl + + 347, 252 - - 175, 28 + + Record a Macro - - System.Windows.Forms.SaveFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cHMacro - - 4, 4, 4, 4 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + iLKeys - - 139, 28 + + System.Windows.Forms.ImageList, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Edit the Wait to change the cycle rate + + savePresets - - 280, 170 + + System.Windows.Forms.SaveFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top, Right + + openPresets - - 12 + + System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this + + altTabToolStripMenuItem - - 11 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 294, 17 + + fromFileToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + RecordBox + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 238, 17 - - - 102, 17 - - - 356, 17 - - - 17, 17 - - - True - - - he - \ No newline at end of file diff --git a/DS4Windows/DS4Forms/SaveWhere.fr-FR.resx b/DS4Windows/DS4Forms/SaveWhere.fr-FR.resx index 513cd884e6..6026ac80e8 100644 --- a/DS4Windows/DS4Forms/SaveWhere.fr-FR.resx +++ b/DS4Windows/DS4Forms/SaveWhere.fr-FR.resx @@ -131,22 +131,25 @@ 389, 157 - Dossier de l'application + Dossier de l'Application Ne pas encore supprimer les autres paramètres - Pour ceux qui préfèrent une application portable Note: Cette option ne fonctionne point si dans un dossier admin sans UAC (contrôle de compte d'utilisateur) + Pour ceux qui préfèrent une application portable A Noter: Cette option ne fonctionne point si dans un dossier admin sans Contrôle de Compte d'Utilisateur UAC - Pour ceux préférant une installation normale, les paramètres sont sauvegardés à %appdata%/ds4tool + Pour ceux préférant une installation normale, les paramètres sont sauvegardés dans %appdata%/ds4tool - Multiples emplacements de sauvegarde supprimés + Multiples emplacements de sauvegarde détecter Choisissez l'emplacement auquel vous voulez que vos paramètres et profiles soient sauvegardes + + Données D'Appli. + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/SpecActions.fr-FR.resx b/DS4Windows/DS4Forms/SpecActions.fr-FR.resx index cedd79eef3..5cd9e9d905 100644 --- a/DS4Windows/DS4Forms/SpecActions.fr-FR.resx +++ b/DS4Windows/DS4Forms/SpecActions.fr-FR.resx @@ -1306,7 +1306,7 @@ - Parcourir + Parcourir... Annuler @@ -1324,31 +1324,31 @@ Charger un profil - Déconnexion du bluetooth + Déconnexion du Bluetooth - Verifier batterie + Vérifier batterie - Via barre lumineuse + via barre lumineuse Scanner le code - Via notification bureau + via notification - Déclencheur + Gachette Nom - Choisir une touche + Choisir une Touche - -Séléctionner une action- + -Séléctionner une Action- Enregistrer une macro @@ -1357,6 +1357,39 @@ Maintenir pour - seondes + secondes + + + Choix Gachette de Déchargement + + + Choix Gachette de Déchargement + + + Appuyer/Alterner Touche + + + appuyant la Gachette de Déchargement + + + relachant la Gachette de Déchargement + + + Gachette de Déchargement + + + Arguments + + + Tapoter Gachette + + + Maintenir Gachette + + + Taper la Gachette + + + Dés-alterner la touche en \ No newline at end of file diff --git a/DS4Windows/DS4Forms/WelcomeDialog.fr-FR.resx b/DS4Windows/DS4Forms/WelcomeDialog.fr-FR.resx index 724a893a84..1c2aaf8f03 100644 --- a/DS4Windows/DS4Forms/WelcomeDialog.fr-FR.resx +++ b/DS4Windows/DS4Forms/WelcomeDialog.fr-FR.resx @@ -177,30 +177,31 @@ Étape 1: Installer les pilotes DS4 - Étape 2: Si vous êtes sous Windows 7 ou antérieur, installez les pilotes 360 + Étape 2: Si vous êtes sous Windows 7 ou antérieur, installez les pilotes de 360 - Si vous avez déjà utilisé une manette 360 sur votre PC, passez cette étape + Si vous avez déjà utilisé une manette de 360 sur votre PC, passez cette étape - Pour paramétrer l'installation bluetooth + Pour Démarrer l'installation bluetooth (optionnel) Maintenir les boutons PS et SHARE pendant 3 secondes -La barre lumineuse va commencer à doublement clignoter +La barre lumineusecommencera à clignoter - Une fois le clignotement débuté, rendez vous aux paramètres Bluetooth -puis connectez sur "Wireless Controller" -Une fois appareillée, vous êtes prêt. Amusez-vous bien ! + Une fois le clignotement débuté, rendez vous aux Paramètres Bluetooth +et Connectez vous à "Manette sans fils" +si requis, entrez le code "0000" +Une fois associer, vous êtes prêt. Amusez-vous ! Étape 3: Connecter la manette DualShock 4 Pour paramétrer l'installation filaire/usb: -Brancher simplement le câble mini usb dans votre PC et votre DualShock 4 +Brancher simplement le câble mini usb de votre PC à la DualShock 4 Réglages Bluetooth - SI cette fenêtre réapparaît après l'installation, vous devriez redémarrer votre PC ou attendre 10-15 mins pour que Windows trouve le driver + SI cette fenêtre réapparaît après l'installation, vous devrez redémarrer votre PC ou attendre 10-15 mins pour que Windows trouve le driver \ No newline at end of file diff --git a/DS4Windows/DS4Forms/WinProgs.Designer.cs b/DS4Windows/DS4Forms/WinProgs.Designer.cs index 3f6032f958..d2ff115846 100644 --- a/DS4Windows/DS4Forms/WinProgs.Designer.cs +++ b/DS4Windows/DS4Forms/WinProgs.Designer.cs @@ -190,6 +190,8 @@ private void InitializeComponent() // // cMSPrograms // + resources.ApplyResources(this.cMSPrograms, "cMSPrograms"); + this.cMSPrograms.ImageScalingSize = new System.Drawing.Size(20, 20); this.cMSPrograms.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.addProgramsFromStartMenuToolStripMenuItem, this.addSteamGamesToolStripMenuItem, @@ -198,36 +200,35 @@ private void InitializeComponent() this.browseForOtherProgramsToolStripMenuItem}); this.cMSPrograms.Name = "contextMenuStrip1"; this.cMSPrograms.ShowImageMargin = false; - resources.ApplyResources(this.cMSPrograms, "cMSPrograms"); // // addProgramsFromStartMenuToolStripMenuItem // - this.addProgramsFromStartMenuToolStripMenuItem.Name = "addProgramsFromStartMenuToolStripMenuItem"; resources.ApplyResources(this.addProgramsFromStartMenuToolStripMenuItem, "addProgramsFromStartMenuToolStripMenuItem"); + this.addProgramsFromStartMenuToolStripMenuItem.Name = "addProgramsFromStartMenuToolStripMenuItem"; this.addProgramsFromStartMenuToolStripMenuItem.Click += new System.EventHandler(this.addProgramsFromStartMenuToolStripMenuItem_Click); // // addSteamGamesToolStripMenuItem // - this.addSteamGamesToolStripMenuItem.Name = "addSteamGamesToolStripMenuItem"; resources.ApplyResources(this.addSteamGamesToolStripMenuItem, "addSteamGamesToolStripMenuItem"); + this.addSteamGamesToolStripMenuItem.Name = "addSteamGamesToolStripMenuItem"; this.addSteamGamesToolStripMenuItem.Click += new System.EventHandler(this.addSteamGamesToolStripMenuItem_Click); // // addOriginGamesToolStripMenuItem // - this.addOriginGamesToolStripMenuItem.Name = "addOriginGamesToolStripMenuItem"; resources.ApplyResources(this.addOriginGamesToolStripMenuItem, "addOriginGamesToolStripMenuItem"); + this.addOriginGamesToolStripMenuItem.Name = "addOriginGamesToolStripMenuItem"; this.addOriginGamesToolStripMenuItem.Click += new System.EventHandler(this.addOriginGamesToolStripMenuItem_Click); // // addDirectoryToolStripMenuItem // - this.addDirectoryToolStripMenuItem.Name = "addDirectoryToolStripMenuItem"; resources.ApplyResources(this.addDirectoryToolStripMenuItem, "addDirectoryToolStripMenuItem"); + this.addDirectoryToolStripMenuItem.Name = "addDirectoryToolStripMenuItem"; this.addDirectoryToolStripMenuItem.Click += new System.EventHandler(this.addDirectoryToolStripMenuItem_Click); // // browseForOtherProgramsToolStripMenuItem // - this.browseForOtherProgramsToolStripMenuItem.Name = "browseForOtherProgramsToolStripMenuItem"; resources.ApplyResources(this.browseForOtherProgramsToolStripMenuItem, "browseForOtherProgramsToolStripMenuItem"); + this.browseForOtherProgramsToolStripMenuItem.Name = "browseForOtherProgramsToolStripMenuItem"; this.browseForOtherProgramsToolStripMenuItem.Click += new System.EventHandler(this.browseForOtherProgramsToolStripMenuItem_Click); // // WinProgs diff --git a/DS4Windows/DS4Forms/WinProgs.de-DE.resx b/DS4Windows/DS4Forms/WinProgs.de-DE.resx index 232ba0e44d..1b25cd52b5 100644 --- a/DS4Windows/DS4Forms/WinProgs.de-DE.resx +++ b/DS4Windows/DS4Forms/WinProgs.de-DE.resx @@ -197,4 +197,7 @@ Profile hier auswählen + + Verzeichnis Hinzufügen + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/WinProgs.fr-FR.resx b/DS4Windows/DS4Forms/WinProgs.fr-FR.resx index f5aecc307b..c924be6684 100644 --- a/DS4Windows/DS4Forms/WinProgs.fr-FR.resx +++ b/DS4Windows/DS4Forms/WinProgs.fr-FR.resx @@ -118,97 +118,215 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 129, 23 + + 7, 2 - - 649, 2 + + + 4, 4, 4, 4 - - 81, 23 + + 176, 28 - - 55, 13 + + Ajouter de Programmes - - 55, 13 + + 692, 240 - - 55, 13 + + 4, 0, 4, 0 - - 55, 13 + + 273, 22 - - 576, 2 + + 812, 34 - - 87, 13 + + 4, 4, 4, 4 - - 140, 2 + + 160, 24 - - 148, 23 + + 812, 68 - - 283, 22 + + 4, 4, 4, 4 - - 283, 22 + + 160, 24 - - 283, 22 + + 812, 101 - - 283, 22 + + 4, 4, 4, 4 - - 284, 92 + + 160, 24 - - Ajouter des jeux Origin + + 812, 134 - - Ajouter des programmes du Menu Démarrer + + 4, 4, 4, 4 - - Ajouter des jeux Steam + + 160, 24 - - Ajouter des programmes + + 868, 2 - - Supprimer + + 4, 4, 4, 4 - - Cacher les non sélectionnés + + 105, 28 Sauvegarder - - Parcourir pour d'autres programmes + + 688, 38 + + + 4, 0, 4, 0 + + + 71, 17 Manette 1 + + 688, 71 + + + 4, 0, 4, 0 + + + 71, 17 + Manette 2 + + 688, 105 + + + 4, 0, 4, 0 + + + 71, 17 + Manette 3 + + 688, 138 + + + 4, 0, 4, 0 + + + 71, 17 + Manette 4 + + 771, 2 + + + 4, 4, 4, 4 + + + 89, 28 + + + Supprimer + Nom Chemin + + 7, 34 + + + 4, 4, 4, 4 + + + 672, 233 + + + 829, 167 + + + 4, 0, 4, 0 + + + 111, 17 + - Choisir profils ici + Choisir Profils ici + + + 191, 2 + + + 4, 4, 4, 4 + + + 125, 28 + + + Cacher les choix non cocher + + + 348, 134 + + + 347, 26 + + + Ajouter des programmes du Menu Démarrer + + + 347, 26 + + + Ajouter de Jeux Steam + + + 347, 26 + + + Ajouter de Jeux Origin + + + 347, 26 + + + Ajouter Répertoire + + + 347, 26 + + + Parcourir pour d'autres programmes + + + 8, 16 + + + 981, 273 + + + 5, 5, 5, 5 \ No newline at end of file diff --git a/DS4Windows/DS4Forms/WinProgs.resx b/DS4Windows/DS4Forms/WinProgs.resx index 3df1ef3765..52f4d7c72f 100644 --- a/DS4Windows/DS4Forms/WinProgs.resx +++ b/DS4Windows/DS4Forms/WinProgs.resx @@ -117,550 +117,553 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 5, 2 + + 12 + + + 13 + 88, 23 - - - 2 - - - Add programs - - - bnAddPrograms + + $this System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this - - - 3 - - - - Top, Right - - - 519, 195 - - - 205, 18 - - - 3 - - - False - - - lBProgramPath + + 60, 13 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + browseForOtherProgramsToolStripMenuItem - + $this - - 13 + + 192, 22 - + + + 4, 4, 4, 4 + + Top, Right - - 609, 28 + + 4 - - 121, 21 + + 193, 114 - - 6 + + Controller 4 - - cBProfile1 + + 94, 23 System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this + + + True - - 12 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top, Right + + $this - - 609, 55 + + Browse for Other Programs - - 121, 21 + + 8 - - 6 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cBProfile2 + + addDirectoryToolStripMenuItem - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Add Steam Games - - $this + + Save - - 11 + + 16, 16 - - Top, Right + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 609, 82 + + Name - - 121, 21 + + 516, 31 - + 6 - - cBProfile3 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Auto-Profiles - - $this + + lBController4 - - 10 + + Add Start Menu Programs - + Top, Right - - 609, 109 - - - 121, 21 + + cBProfile2 - - 6 + + 192, 22 - - cBProfile4 + + True - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 663, 2 - + $this - - 9 + + iLIcons - - Top, Right + + 609, 55 - - False + + 5, 2 - - 663, 2 + + System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 67, 23 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Save + + 7 - - bnSave + + 6 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15 + + 121, 21 - - Top, Right + + 2 - - True + + 192, 22 - - 516, 31 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 60, 13 + + addProgramsFromStartMenuToolStripMenuItem 7 - - Controller 1 + + 60, 13 - - lBController1 + + 516, 112 + + + 10 System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this + + 121, 21 - - 8 + + 89, 13 - - Top, Right + + Pick Profiles here - - True + + 192, 22 - - 516, 58 + + 2 - - 60, 13 + + 8 - - 7 + + 505, 190 - - Controller 2 + + nameHeader - - lBController2 + + $this - - System.Windows.Forms.Label, 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 + + + cBProfile3 $this - - 7 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top, Right + + lBController1 - - True + + WinProgs - - 516, 85 + + lBProgramPath - - 60, 13 + + addSteamGamesToolStripMenuItem - - 7 + + cMSPrograms - - Controller 3 + + 2 - - lBController3 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + 192, 22 + + + 6 + + + 205, 18 + + + 7 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Add Directory + + + Programs|*.exe|Shortcuts|*.lnk + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + openProgram + + $this - - 6 + + Top, Right - + + 5, 28 + + + 60, 13 + + + 14 + + Top, Right - + + Path + + True - - 516, 112 + + 15 - - 60, 13 + + Add Origin Games - - 7 + + bnSave - - Controller 4 + + 121, 21 - - lBController4 + + addOriginGamesToolStripMenuItem - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 140 - - $this + + bnDelete - - 5 + + pBProfilesTip - - 17, 17 - - - Programs|*.exe|Shortcuts|*.lnk - @Invariant - - Top, Right + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 590, 2 + + False 67, 23 + + 609, 82 + + + False + 2 - - Remove + + Top, Right - - bnDelete + + 5 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - + + 1 + + $this - - 14 + + 3 - - 143, 17 - - - 16, 16 + + 60, 13 - - Top, Bottom, Left, Right + + Top, Right - - Name + + Top, Right - - 140 + + 11 - - Path + + 3 - - 358 + + Top, Right - - 5, 28 + + 9 - - 505, 190 + + Controller 1 - - 12 + + lBController2 + + + 590, 2 lVPrograms - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + 121, 21 - - Top, Right + + Add programs - - True + + 6 - - 622, 136 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 89, 13 + + 358 - - 8 + + Top, Right - - Pick Profiles here + + Remove - - pBProfilesTip + + 516, 85 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - + $this - - 1 - 99, 2 - - 94, 23 - - - 2 - - - Hide unchecked - - - bnHideUnchecked + + $this - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 609, 28 - + $this - - 2 + + True - - 232, 17 - - - 192, 22 + + 6, 13 - - Add Start Menu Programs + + System.Windows.Forms.ImageList, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 192, 22 + + Top, Right - - Add Steam Games + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 192, 22 + + 7 - - Add Origin Games + + Top, Bottom, Left, Right - - 192, 22 + + cBProfile4 - - Add Directory + + 7 - - 192, 22 + + Controller 2 - - Browse for Other Programs + + bnAddPrograms - - 193, 114 + + Top, Right - - cMSPrograms + + 609, 109 - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True - - - tr - - - 6, 13 + + 6 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 736, 222 - - Auto-Profiles - @Invariant - - openProgram - - - System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - iLIcons - - - System.Windows.Forms.ImageList, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - - nameHeader + + 12 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - - PathHeader + + 622, 136 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lBController3 - - addProgramsFromStartMenuToolStripMenuItem + + Controller 3 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnHideUnchecked - - addSteamGamesToolStripMenuItem + + System.Windows.Forms.ListView, 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 + + 516, 58 - - addOriginGamesToolStripMenuItem + + cBProfile1 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - addDirectoryToolStripMenuItem + + Top, Right - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Hide unchecked - - browseForOtherProgramsToolStripMenuItem + + 519, 195 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 67, 23 - - WinProgs + + $this - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PathHeader + + True + + + fr-FR + + + 143, 17 + + + 232, 17 + + + 17, 17 + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/WinProgs.tr.resx b/DS4Windows/DS4Forms/WinProgs.tr.resx index b80db1cb1d..3b334e759f 100644 --- a/DS4Windows/DS4Forms/WinProgs.tr.resx +++ b/DS4Windows/DS4Forms/WinProgs.tr.resx @@ -117,49 +117,213 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Origin'den Ekle + + + 7, 2 - - Programlardan Ekle + + + 4, 4, 4, 4 - - Steam'den Ekle + + 117, 28 Program Ekle - - Sil + + 692, 240 - - Seçilmeyenleri Sil + + 4, 0, 4, 0 + + + 273, 22 + + + 812, 34 + + + 4, 4, 4, 4 + + + 160, 24 + + + 812, 68 + + + 4, 4, 4, 4 + + + 160, 24 + + + 812, 101 + + + 4, 4, 4, 4 + + + 160, 24 + + + 812, 134 + + + 4, 4, 4, 4 + + + 160, 24 + + + 884, 2 + + + 4, 4, 4, 4 + + + 89, 28 Kaydet - - Diğer Programlar için Gözat + + 688, 38 + + + 4, 0, 4, 0 + + + 40, 17 Kol 1 + + 688, 71 + + + 4, 0, 4, 0 + + + 40, 17 + Kol 2 + + 688, 105 + + + 4, 0, 4, 0 + + + 40, 17 + Kol 3 + + 688, 138 + + + 4, 0, 4, 0 + + + 40, 17 + Kol 4 + + 787, 2 + + + 4, 4, 4, 4 + + + 89, 28 + + + Sil + İsim Yol + + 7, 34 + + + 4, 4, 4, 4 + + + 672, 233 + + + 829, 167 + + + 4, 0, 4, 0 + + + 137, 17 + Burdan Profilleri Seç + + 132, 2 + + + 4, 4, 4, 4 + + + 125, 28 + + + Seçilmeyenleri Sil + + + 238, 26 + + + Programlardan Ekle + + + 238, 26 + + + Steam'den Ekle + + + 238, 26 + + + Origin'den Ekle + + + 238, 26 + + + 238, 26 + + + Diğer Programlar için Gözat + + + 239, 134 + + + 8, 16 + + + 981, 273 + + + 4, 4, 4, 4 + \ No newline at end of file diff --git a/DS4Windows/Program.cs b/DS4Windows/Program.cs index 65cddf912f..d34939572b 100644 --- a/DS4Windows/Program.cs +++ b/DS4Windows/Program.cs @@ -31,7 +31,7 @@ static class Program [STAThread] static void Main(string[] args) { - //Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("ru-RU"); + //Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("he"); foreach(string s in args) { if (s == "driverinstall" || s == "-driverinstall") diff --git a/DS4Windows/Properties/AssemblyInfo.cs b/DS4Windows/Properties/AssemblyInfo.cs index 794f340ee6..945c633f5e 100644 --- a/DS4Windows/Properties/AssemblyInfo.cs +++ b/DS4Windows/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.4.4")] -[assembly: AssemblyFileVersion("1.4.4")] +[assembly: AssemblyVersion("1.4.401")] +[assembly: AssemblyFileVersion("1.4.401")] diff --git a/DS4Windows/Properties/Resources.de-DE.resx b/DS4Windows/Properties/Resources.de-DE.resx index 2a0ad0d402..c255919f0d 100644 --- a/DS4Windows/Properties/Resources.de-DE.resx +++ b/DS4Windows/Properties/Resources.de-DE.resx @@ -529,7 +529,7 @@ DS4Windows beendet - Neigung nach Unten + Text Dokument (*.txt) Die Batterie aufladen @@ -540,4 +540,7 @@ XML Dateien (*.xml) + + Nicht Zugewiesen + \ No newline at end of file diff --git a/DS4Windows/Properties/Resources.fr-FR.resx b/DS4Windows/Properties/Resources.fr-FR.resx index 8d9b29185c..096da8adcb 100644 --- a/DS4Windows/Properties/Resources.fr-FR.resx +++ b/DS4Windows/Properties/Resources.fr-FR.resx @@ -124,13 +124,13 @@ Ajout à la liste... - Ajouter des programmes + Ajouter des Programmes - Un emplacement est obligatoire pour continuer + Un emplacement doit être choisi pour continuer - Mode Arc-en-ciel + Toujours Mode Arc-en-ciel Assigner à la Manette *number* @@ -148,10 +148,10 @@ Écriture impossible ici. Copier les paramètres vers Appdata? - Chargée + Rechargée - En charge: *number*% + Rechargement: *number*% Verifiez la batterie @@ -166,7 +166,7 @@ Couleur - Couleur selon le %*nl*de batterie + Couleur selon le % de batterie Connexion... @@ -181,10 +181,10 @@ La manette *Mac address* a été déconnectée ou la connexion a été perdue - Copie terminée, merci de relancer DS4Windows et supprimer les paramètres du répertoire de l'application + Copie terminée, merci de relancer DS4Windows et supprimer les paramètres du Répertoire de l'Application - Cliquer pour copier la couleur complète + Cliquer pour copier la couleur entiere Attention: Ouverture impossible de la DS4 *Mac Address* @@ -199,10 +199,10 @@ Supprimer le profil? - Assombrir selon le %*nl*de batterie + Assombrir selon le % de batterie - Eteindre les entrées X360 et utiliser seulement DS4 en natif, Cacher ds4 DOIT être éteint + Eteindre les entrées X360 et utiliser seulement DS4 en natif, Cacher ds4 Doit être éteint (uniquement en filaire) Déconnecter Bluetooth @@ -217,7 +217,7 @@ Télécharger la version *number* maintenant ? - Haut + Bas Mise à jour de DS4Windows disponible ! @@ -229,16 +229,16 @@ Éditer - 5ème Bouton de Souris Haut + 5ème Bouton de Souris Bas - 5ème Bouton de Souris Bas + 5ème Bouton de Souris Haut Cliquer pour changer la couleur du clignotement. Noir = couleur par défaut - Flush HID + Vider HID Vider la file d'attente HID aprés chaque lecture @@ -253,19 +253,19 @@ 4ème Bouton de Souris Bas - Complète + Rempli - Cliquer pour voir les valeurs du Sixaxis + Cliquer pour voir les valeurs du Gyroscope Sixaxis - GyroX, Gauche et droite inclinaison + GyroX, Inclinaison Gauche et Droite - GyroY, Avant et arriere inclinaison + GyroY, Inclinaison Avant et Arriere - GyroZ, Haut et bas inclinaison + GyroZ, InclinaisonHaut et Bas heure @@ -274,10 +274,10 @@ heures - Survol souris pour voir la description ou plus d'infos + Survoler avec la souris pour voir une description ou plus d'infos - Si suppression de DS4Windows, vous pouvez supprimer les paramètres suivant le lien du dossier de profil + Si suppression de DS4Windows, vous pouvez supprimer les paramètres en suivant le lien du dossier de profil Input Delay: *number*ms @@ -289,7 +289,7 @@ Installer les pilotes ici - l'installation de ... + Installation ... Utiliser Sixaxis pour aider au calcul des mouvements du pavé tactile @@ -304,7 +304,7 @@ Manette *number* latence supérieure à 10 ms - Lancer *program* + Démarrer *program* Baisser la luminosité lors de la mise en veille @@ -334,13 +334,13 @@ (aucun) - aucune + aucun Pas de profil chargé - Manette *number* n'utilise pas de profile + Manette *number* n'a pas de profile Invalide @@ -352,10 +352,10 @@ Veuillez ouvrir ScpDriver.exe - , les fichiers à un autre endroit seront effacés ! + , les fichiers à un autre endroit seront effacés - Veuillez télécharger le centre de mises à jour maintenant, le placer dans le dossier de l'application puis vérifier de nouveau la disponibilité de mises à jour + Veuillez télécharger le centre de mises à jour maintenant, placer le dans le dossier de l'application, puis vérifier de nouveau la disponibilité d'une mise à jour Veuillez importer ou créer un profil @@ -367,13 +367,13 @@ *Profile Name* ne peut être restauré - Dossier de profil déplacé vers le dossier de l'application + Dossier du Profil déplacé vers le dossier contenant l'application Programmes - Experimental : Déconnexion auto BT quand branchement par USB + EXPERIMENTAL : Déconnexion automatique du BT lors du branchement d'un cable USB Vous devez quitter les autres applications telles que Steam, Uplay avant d'activer l'option "Cacher la manette DS4" @@ -382,16 +382,16 @@ Enregistrer - Click droit pour choisir les pré-réglages + Click droit pour choisir les pré-réglages d'une série de contrôles - Sauvegarder le macro enregistré + Sauvegarder le macro enregistré? Scannez le code - Recherche de manettes... + Cherche manettes... Sélectionner une action pour *action* @@ -400,7 +400,7 @@ Raccourcis - Cliquer pour les valeurs avancées + Cliquer pour les valeurs avancées du Sixaxis Ouverture... @@ -430,19 +430,19 @@ Arrêter - Balayer vers le bas + Glisser vers le bas - Balayer vers la gauche + Glisser vers la gauche - Balayer vers la droite + Glisser vers la droite Glisser sur la pavé tactile pour changer de profil - Balayer vers le haut + Glisser vers le haut Appuyer et maintenir pour glisser, léger retard avec les simples pressions @@ -472,10 +472,10 @@ Reconnaissance de mouvement du pavé tactile est Activée - Relancez en appuyant sur PS + Pad tactile + Relancez en appuyant sur PS + Pavé tactile - Glisser gauche ou droit avec 2 doigts sur le pavé tactile + Glisser avec 2 doigts gauche ou droit sur le pavé tactile écrire un nouveau nom ici @@ -484,13 +484,13 @@ écrire un nom de profil ici - Bas + Haut Votre version de DS4Windows est à jour - Vous pouvez également utiliser votre manette pour changer les commandes + Vous pouvez également utiliser votre manette pour modifier les touches Utilisation du mode Exclusif @@ -511,15 +511,45 @@ Attendre *number**ms* - Gardera + Sera Garder Arrêt de DS4Windows - Tilt Bas + Document Text (*.txt) Fichiers XML (*.xml) + + Impossible de deplacer les fichiers, Renommez le dossier DS4Tool à "DS4Windows" + + + Recharger la batterie + + + Retourner + + + Retourner a "bouton" + + + Installation échouée, Veuillez Réessayer + + + Definir Gachette Normale + + + Definir Gachette Decharger + + + Test + + + Non Assigner + + + Utilisez des ports plus hauts si vous rencontrer des conflits avec d'autres programmes, tels que l'outil SCP + \ No newline at end of file