diff --git a/DS4Control/Mapping.cs b/DS4Control/Mapping.cs index 2b867d2..d1cbab8 100644 --- a/DS4Control/Mapping.cs +++ b/DS4Control/Mapping.cs @@ -1347,14 +1347,15 @@ namespace DS4Control int controlnum = DS4ControltoInt(control); double SXD = Global.getSXDeadzone(device); double SZD = Global.getSZDeadzone(device); - int deadzone = 10; + int deadzoneL = Math.Max((byte)10, Global.getLSDeadzone(device)); + int deadzoneR = Math.Max((byte)10, Global.getRSDeadzone(device)); double value = 0; int speed = Global.getButtonMouseSensitivity(device)+15; double root = 1.002; double divide = 10000d; DateTime now = mousenow[mnum]; - bool leftsitcklive = ((cState.LX < 127 - deadzone || 127 + deadzone < cState.LX) || (cState.LY < 127 - deadzone || 127 + deadzone < cState.LY)); - bool rightsitcklive = ((cState.RX < 127 - deadzone || 127 + deadzone < cState.RX) || (cState.RY < 127 - deadzone || 127 + deadzone < cState.RY)); + bool leftsitcklive = ((cState.LX < 127 - deadzoneL || 127 + deadzoneL < cState.LX) || (cState.LY < 127 - deadzoneL || 127 + deadzoneL < cState.LY)); + bool rightsitcklive = ((cState.RX < 127 - deadzoneR || 127 + deadzoneR < cState.RX) || (cState.RY < 127 - deadzoneR || 127 + deadzoneR < cState.RY)); switch (control) { case DS4Controls.LXNeg: @@ -1419,10 +1420,10 @@ namespace DS4Control case DS4Controls.GyroZNeg: return (byte)(eState.GyroZ < -SZD * 7500 ? Math.Pow(root + speed / divide, -eState.GyroZ / 62) : 0); } - bool LXChanged = (Math.Abs(127 - cState.LX) < deadzone); - bool LYChanged = (Math.Abs(127 - cState.LY) < deadzone); - bool RXChanged = (Math.Abs(127 - cState.RX) < deadzone); - bool RYChanged = (Math.Abs(127 - cState.RY) < deadzone); + bool LXChanged = (Math.Abs(127 - cState.LX) < deadzoneL); + bool LYChanged = (Math.Abs(127 - cState.LY) < deadzoneL); + bool RXChanged = (Math.Abs(127 - cState.RX) < deadzoneR); + bool RYChanged = (Math.Abs(127 - cState.RY) < deadzoneR); if (LXChanged || LYChanged || RXChanged || RYChanged) now = DateTime.UtcNow; if (Global.getMouseAccel(device)) diff --git a/DS4Control/Properties/Resources.Designer.cs b/DS4Control/Properties/Resources.Designer.cs index f8d6e40..138b2a8 100644 --- a/DS4Control/Properties/Resources.Designer.cs +++ b/DS4Control/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/DS4Control/ScpUtil.cs b/DS4Control/ScpUtil.cs index f2aa1e9..bc1b551 100644 --- a/DS4Control/ScpUtil.cs +++ b/DS4Control/ScpUtil.cs @@ -315,7 +315,22 @@ namespace DS4Control { return m_Config.swipeProfiles; } - // New settings + public static void setDS4Mapping(bool data) + { + m_Config.ds4Mapping = data; + } + public static bool getDS4Mapping() + { + return m_Config.ds4Mapping; + } + public static void setQuickCharge(bool data) + { + m_Config.quickCharge = data; + } + public static bool getQuickCharge() + { + return m_Config.quickCharge; + } public static void saveLowColor(int device, byte red, byte green, byte blue) { m_Config.m_LowLeds[device][0] = red; @@ -792,6 +807,8 @@ namespace DS4Control public bool notifications = true; public bool disconnectBTAtStop = false; public bool swipeProfiles = true; + public bool ds4Mapping = true; + public bool quickCharge = false; public Dictionary[] customMapKeyTypes = { null, null, null, null, null }; public Dictionary[] customMapKeys = { null, null, null, null, null }; public Dictionary[] customMapMacros = { null, null, null, null, null }; @@ -1662,7 +1679,6 @@ namespace DS4Control m_Xdoc.Load(m_Profile); - try { Item = m_Xdoc.SelectSingleNode("/Profile/useExclusiveMode"); Boolean.TryParse(Item.InnerText, out useExclusiveMode); } catch { missingSetting = true; } try { Item = m_Xdoc.SelectSingleNode("/Profile/startMinimized"); Boolean.TryParse(Item.InnerText, out startMinimized); } @@ -1689,6 +1705,10 @@ namespace DS4Control catch { missingSetting = true; } try { Item = m_Xdoc.SelectSingleNode("/Profile/SwipeProfiles"); Boolean.TryParse(Item.InnerText, out swipeProfiles); } catch { missingSetting = true; } + try { Item = m_Xdoc.SelectSingleNode("/Profile/UseDS4ForMapping"); Boolean.TryParse(Item.InnerText, out ds4Mapping); } + catch { missingSetting = true; } + try { Item = m_Xdoc.SelectSingleNode("/Profile/QuickCharge"); Boolean.TryParse(Item.InnerText, out quickCharge); } + catch { missingSetting = true; } } } catch { } @@ -1731,6 +1751,8 @@ namespace DS4Control XmlNode xmlNotifications = m_Xdoc.CreateNode(XmlNodeType.Element, "Notifications", null); xmlNotifications.InnerText = notifications.ToString(); Node.AppendChild(xmlNotifications); XmlNode xmlDisconnectBT = m_Xdoc.CreateNode(XmlNodeType.Element, "DisconnectBTAtStop", null); xmlDisconnectBT.InnerText = disconnectBTAtStop.ToString(); Node.AppendChild(xmlDisconnectBT); XmlNode xmlSwipeProfiles = m_Xdoc.CreateNode(XmlNodeType.Element, "SwipeProfiles", null); xmlSwipeProfiles.InnerText = swipeProfiles.ToString(); Node.AppendChild(xmlSwipeProfiles); + XmlNode xmlDS4Mapping = m_Xdoc.CreateNode(XmlNodeType.Element, "UseDS4ForMapping", null); xmlDS4Mapping.InnerText = ds4Mapping.ToString(); Node.AppendChild(xmlDS4Mapping); + XmlNode xmlQuickCharge = m_Xdoc.CreateNode(XmlNodeType.Element, "QuickCharge", null); xmlQuickCharge.InnerText = quickCharge.ToString(); Node.AppendChild(xmlQuickCharge); m_Xdoc.AppendChild(Node); try { m_Xdoc.Save(m_Profile); } diff --git a/DS4Library/DS4Device.cs b/DS4Library/DS4Device.cs index f50fe31..3bac5ec 100644 --- a/DS4Library/DS4Device.cs +++ b/DS4Library/DS4Device.cs @@ -512,7 +512,11 @@ namespace DS4Library try { if (!writeOutput()) + { Console.WriteLine(MacAddress.ToString() + " " + System.DateTime.UtcNow.ToString("o") + "> encountered synchronous write failure: " + Marshal.GetLastWin32Error()); + ds4Output.Abort(); + ds4Output.Join(); + } } catch { diff --git a/DS4Tool/DS4Form.Designer.cs b/DS4Tool/DS4Form.Designer.cs index ea7ca9b..9f4b48d 100644 --- a/DS4Tool/DS4Form.Designer.cs +++ b/DS4Tool/DS4Form.Designer.cs @@ -120,6 +120,7 @@ this.nUDUpdateTime = new System.Windows.Forms.NumericUpDown(); this.cBNotifications = new System.Windows.Forms.CheckBox(); this.cBDisconnectBT = new System.Windows.Forms.CheckBox(); + this.cBQuickCharge = new System.Windows.Forms.CheckBox(); this.linkProfiles = new System.Windows.Forms.LinkLabel(); this.lLBUpdate = new System.Windows.Forms.LinkLabel(); this.linkSetup = new System.Windows.Forms.LinkLabel(); @@ -362,11 +363,13 @@ // resources.ApplyResources(this.lbPad1, "lbPad1"); this.lbPad1.Name = "lbPad1"; + this.lbPad1.TextChanged += new System.EventHandler(this.lbPad1_TextChanged); // // lbPad2 // resources.ApplyResources(this.lbPad2, "lbPad2"); this.lbPad2.Name = "lbPad2"; + this.lbPad2.TextChanged += new System.EventHandler(this.lbPad1_TextChanged); // // bnEditC3 // @@ -388,11 +391,13 @@ // resources.ApplyResources(this.lbPad3, "lbPad3"); this.lbPad3.Name = "lbPad3"; + this.lbPad3.TextChanged += new System.EventHandler(this.lbPad1_TextChanged); // // lbPad4 // resources.ApplyResources(this.lbPad4, "lbPad4"); this.lbPad4.Name = "lbPad4"; + this.lbPad4.TextChanged += new System.EventHandler(this.lbPad1_TextChanged); // // cBController1 // @@ -743,6 +748,7 @@ this.flowLayoutPanel1.Controls.Add(this.pNUpdate); this.flowLayoutPanel1.Controls.Add(this.cBNotifications); this.flowLayoutPanel1.Controls.Add(this.cBDisconnectBT); + this.flowLayoutPanel1.Controls.Add(this.cBQuickCharge); this.flowLayoutPanel1.Controls.Add(this.linkProfiles); this.flowLayoutPanel1.Controls.Add(this.lLBUpdate); this.flowLayoutPanel1.Controls.Add(this.linkSetup); @@ -836,6 +842,13 @@ this.cBDisconnectBT.UseVisualStyleBackColor = true; this.cBDisconnectBT.CheckedChanged += new System.EventHandler(this.cBDisconnectBT_CheckedChanged); // + // cBQuickCharge + // + resources.ApplyResources(this.cBQuickCharge, "cBQuickCharge"); + this.cBQuickCharge.Name = "cBQuickCharge"; + this.cBQuickCharge.UseVisualStyleBackColor = true; + this.cBQuickCharge.CheckedChanged += new System.EventHandler(this.cBQuickCharge_CheckedChanged); + // // linkProfiles // resources.ApplyResources(this.linkProfiles, "linkProfiles"); @@ -1024,6 +1037,7 @@ private System.Windows.Forms.CheckBox cBSwipeProfiles; private System.Windows.Forms.ToolStripMenuItem startToolStripMenuItem; public System.Windows.Forms.Label lbLastMessage; + private System.Windows.Forms.CheckBox cBQuickCharge; //private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2; } } diff --git a/DS4Tool/DS4Form.cs b/DS4Tool/DS4Form.cs index f533db8..0fde713 100644 --- a/DS4Tool/DS4Form.cs +++ b/DS4Tool/DS4Form.cs @@ -14,6 +14,7 @@ using System.Diagnostics; using System.Xml; using System.Text; using System.Globalization; +using System.Threading.Tasks; namespace DS4Windows { public partial class DS4Form : Form @@ -48,20 +49,7 @@ namespace DS4Windows ToolTip tt = new ToolTip(); public String m_Profile = Directory.GetParent(Assembly.GetExecutingAssembly().Location).FullName + "\\Profiles.xml"; protected XmlDocument m_Xdoc = new XmlDocument(); - - protected void SetupArrays() - { - Pads = new Label[4] { lbPad1, lbPad2, lbPad3, lbPad4 }; - Batteries = new Label[4] { lBBatt1, lBBatt2, lBBatt3, lBBatt4 }; - cbs = new ComboBox[4] { cBController1, cBController2, cBController3, cBController4 }; - ebns = new Button[4] { bnEditC1, bnEditC2, bnEditC3, bnEditC4 }; - statPB = new PictureBox[4] { pBStatus1, pBStatus2, pBStatus3, pBStatus4 }; - - shortcuts = new ToolStripMenuItem[4] { (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[0], - (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[1], - (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[2], - (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[3] }; - } + public bool mAllowVisible; [DllImport("user32.dll")] private static extern IntPtr GetForegroundWindow(); @@ -86,12 +74,22 @@ namespace DS4Windows InitializeComponent(); arguements = args; ThemeUtil.SetTheme(lvDebug); - SetupArrays(); + Pads = new Label[4] { lbPad1, lbPad2, lbPad3, lbPad4 }; + Batteries = new Label[4] { lBBatt1, lBBatt2, lBBatt3, lBBatt4 }; + cbs = new ComboBox[4] { cBController1, cBController2, cBController3, cBController4 }; + ebns = new Button[4] { bnEditC1, bnEditC2, bnEditC3, bnEditC4 }; + statPB = new PictureBox[4] { pBStatus1, pBStatus2, pBStatus3, pBStatus4 }; + + shortcuts = new ToolStripMenuItem[4] { (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[0], + (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[1], + (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[2], + (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[3] }; SystemEvents.PowerModeChanged += OnPowerChange; tSOptions.Visible = false; if (File.Exists(appdatapath + "\\Profiles.xml")) tt.SetToolTip(linkUninstall, Properties.Resources.IfRemovingDS4Windows); tt.SetToolTip(cBSwipeProfiles, Properties.Resources.TwoFingerSwipe); + tt.SetToolTip(cBQuickCharge, Properties.Resources.QuickCharge); bool firstrun = false; if (File.Exists(exepath + "\\Auto Profiles.xml") && File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\DS4Tool\\Auto Profiles.xml")) @@ -177,14 +175,19 @@ namespace DS4Windows hideDS4CheckBox.Checked = Global.getUseExclusiveMode(); hideDS4CheckBox.CheckedChanged += hideDS4CheckBox_CheckedChanged; cBDisconnectBT.Checked = Global.getDCBTatStop(); + cBQuickCharge.Checked = Global.getQuickCharge(); // New settings this.Width = Global.getFormWidth(); this.Height = Global.getFormHeight(); startMinimizedCheckBox.CheckedChanged -= startMinimizedCheckBox_CheckedChanged; startMinimizedCheckBox.Checked = Global.getStartMinimized(); startMinimizedCheckBox.CheckedChanged += startMinimizedCheckBox_CheckedChanged; - if (startMinimizedCheckBox.Checked) - this.WindowState = FormWindowState.Minimized; + if (!startMinimizedCheckBox.Checked) + { + mAllowVisible = true; + Show(); + } + //this.WindowState = FormWindowState.Minimized; Form_Resize(null, null); RefreshProfiles(); for (int i = 0; i < 4; i++) @@ -241,6 +244,30 @@ namespace DS4Windows StartWindowsCheckBox.Checked = File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "\\DS4Windows.lnk"); } + + protected override void SetVisibleCore(bool value) + { + if (!mAllowVisible) + { + value = false; + if (!this.IsHandleCreated) CreateHandle(); + } + base.SetVisibleCore(value); + } + + private void showToolStripMenuItem_Click(object sender, EventArgs e) + { + mAllowVisible = true; + Show(); + } + + /*private void exitToolStripMenuItem_Click(object sender, EventArgs e) + { + mAllowClose = mAllowVisible = true; + if (!mLoadFired) Show(); + Close(); + }*/ + public static string GetTopWindowName() { IntPtr hWnd = GetForegroundWindow(); @@ -559,6 +586,7 @@ namespace DS4Windows else if (FormWindowState.Normal == this.WindowState) { + //mAllowVisible = true; this.Show(); this.ShowInTaskbar = true; this.FormBorderStyle = FormBorderStyle.Sizable; @@ -631,6 +659,12 @@ namespace DS4Windows for (Int32 Index = 0; Index < Pads.Length; Index++) { Pads[Index].Text = rootHub.getDS4MacAddress(Index); + DS4Device d = rootHub.DS4Controllers[Index]; + if (d != null && Global.getQuickCharge() && d.ConnectionType == ConnectionType.BT && d.Charging) + { + d.DisconnectBT(); + return; + } switch (rootHub.getDS4Status(Index)) { case "USB": statPB[Index].Image = Properties.Resources.USB; tt.SetToolTip(statPB[Index], ""); break; @@ -672,10 +706,21 @@ namespace DS4Windows private void pBStatus_MouseClick(object sender, MouseEventArgs e) { int i = Int32.Parse(((PictureBox)sender).Tag.ToString()); - if (e.Button == System.Windows.Forms.MouseButtons.Right && rootHub.getDS4Status(i) == "BT") + if (e.Button == System.Windows.Forms.MouseButtons.Right && rootHub.getDS4Status(i) == "BT" && !rootHub.DS4Controllers[i].Charging) rootHub.DS4Controllers[i].DisconnectBT(); } + private async void lbPad1_TextChanged(object sender, EventArgs e) + { + Label lb = ((Label)sender); + int i = int.Parse(lb.Name.Substring(lb.Name.Length-1)) - 1; + if (lb.Text == Properties.Resources.Disconnected && Pads[i].Enabled) + { + await Task.Delay(10); + Enable_Controls(i, false); + } + } + private void Enable_Controls(int device, bool on) { Pads[device].Enabled = on; @@ -975,6 +1020,7 @@ namespace DS4Windows private void openToolStripMenuItem_Click(object sender, EventArgs e) { + mAllowVisible = true; this.Show(); WindowState = FormWindowState.Normal; } @@ -987,6 +1033,7 @@ namespace DS4Windows { if (e.Button == System.Windows.Forms.MouseButtons.Left) { + mAllowVisible = true; this.Show(); WindowState = FormWindowState.Normal; } @@ -1335,6 +1382,11 @@ namespace DS4Windows Global.setSwipeProfiles(cBSwipeProfiles.Checked); } + private void cBQuickCharge_CheckedChanged(object sender, EventArgs e) + { + Global.setQuickCharge(cBQuickCharge.Checked); + } + private void lbLastMessage_MouseHover(object sender, EventArgs e) { tt.Show(lbLastMessage.Text, lbLastMessage, -3, -3); diff --git a/DS4Tool/DS4Form.resx b/DS4Tool/DS4Form.resx index 3009411..c293078 100644 --- a/DS4Tool/DS4Form.resx +++ b/DS4Tool/DS4Form.resx @@ -8252,11 +8252,38 @@ 7 + + True + + + 10, 199 + + + 91, 17 + + + 55 + + + Quick Charge + + + cBQuickCharge + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 8 + NoControl - 10, 196 + 10, 219 65, 13 @@ -8277,13 +8304,13 @@ flowLayoutPanel1 - 8 + 9 NoControl - 10, 209 + 10, 232 116, 13 @@ -8307,13 +8334,13 @@ flowLayoutPanel1 - 9 + 10 NoControl - 10, 222 + 10, 245 115, 13 @@ -8334,13 +8361,13 @@ flowLayoutPanel1 - 10 + 11 NoControl - 10, 235 + 10, 258 106, 13 @@ -8364,13 +8391,13 @@ flowLayoutPanel1 - 11 + 12 NoControl - 10, 248 + 10, 271 70, 13 @@ -8391,7 +8418,7 @@ flowLayoutPanel1 - 12 + 13 Fill diff --git a/DS4Tool/Options.Designer.cs b/DS4Tool/Options.Designer.cs index 2715864..fef3713 100644 --- a/DS4Tool/Options.Designer.cs +++ b/DS4Tool/Options.Designer.cs @@ -88,15 +88,6 @@ this.cBControllerInput = new System.Windows.Forms.CheckBox(); this.cBIdleDisconnect = new System.Windows.Forms.CheckBox(); this.gBLightbar = new System.Windows.Forms.GroupBox(); - this.btnChargingColor = new System.Windows.Forms.Button(); - this.rBColor = new System.Windows.Forms.RadioButton(); - this.rBFade = new System.Windows.Forms.RadioButton(); - this.rBNormal = new System.Windows.Forms.RadioButton(); - this.rBRainbow = new System.Windows.Forms.RadioButton(); - this.lbWhileCharging = new System.Windows.Forms.Label(); - this.lbPercentFlashBar = new System.Windows.Forms.Label(); - this.nUDflashLED = new System.Windows.Forms.NumericUpDown(); - this.lbFlashAt = new System.Windows.Forms.Label(); this.pnlShift = new System.Windows.Forms.Panel(); this.cBShiftLight = new System.Windows.Forms.CheckBox(); this.lbShift = new System.Windows.Forms.Label(); @@ -106,6 +97,15 @@ this.tBShiftRedBar = new System.Windows.Forms.TrackBar(); this.tBShiftGreenBar = new System.Windows.Forms.TrackBar(); this.tBShiftBlueBar = new System.Windows.Forms.TrackBar(); + this.btnChargingColor = new System.Windows.Forms.Button(); + this.rBColor = new System.Windows.Forms.RadioButton(); + this.rBFade = new System.Windows.Forms.RadioButton(); + this.rBNormal = new System.Windows.Forms.RadioButton(); + this.rBRainbow = new System.Windows.Forms.RadioButton(); + this.lbWhileCharging = new System.Windows.Forms.Label(); + this.lbPercentFlashBar = new System.Windows.Forms.Label(); + this.nUDflashLED = new System.Windows.Forms.NumericUpDown(); + this.lbFlashAt = new System.Windows.Forms.Label(); this.gBRumble = new System.Windows.Forms.GroupBox(); this.lbPercentRumble = new System.Windows.Forms.Label(); this.btnRumbleLightTest = new System.Windows.Forms.Button(); @@ -276,11 +276,11 @@ ((System.ComponentModel.ISupportInitialize)(this.pBProgram)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDSixaxis)).BeginInit(); this.gBLightbar.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nUDflashLED)).BeginInit(); this.pnlShift.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftRedBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftGreenBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftBlueBar)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nUDflashLED)).BeginInit(); this.gBRumble.SuspendLayout(); this.gBDeadzone.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nUDSZ)).BeginInit(); @@ -318,8 +318,8 @@ // // lowColorChooserButton // - resources.ApplyResources(this.lowColorChooserButton, "lowColorChooserButton"); this.lowColorChooserButton.BackColor = System.Drawing.Color.White; + resources.ApplyResources(this.lowColorChooserButton, "lowColorChooserButton"); this.lowColorChooserButton.Name = "lowColorChooserButton"; this.lowColorChooserButton.UseVisualStyleBackColor = false; this.lowColorChooserButton.Click += new System.EventHandler(this.lowColorChooserButton_Click); @@ -337,8 +337,8 @@ // // pBRainbow // - resources.ApplyResources(this.pBRainbow, "pBRainbow"); this.pBRainbow.Image = global::DS4Windows.Properties.Resources.rainbow; + resources.ApplyResources(this.pBRainbow, "pBRainbow"); this.pBRainbow.Name = "pBRainbow"; this.pBRainbow.TabStop = false; this.pBRainbow.Click += new System.EventHandler(this.pbRainbow_Click); @@ -536,8 +536,8 @@ // // nUDIdleDisconnect // - resources.ApplyResources(this.nUDIdleDisconnect, "nUDIdleDisconnect"); this.nUDIdleDisconnect.DecimalPlaces = 1; + resources.ApplyResources(this.nUDIdleDisconnect, "nUDIdleDisconnect"); this.nUDIdleDisconnect.Maximum = new decimal(new int[] { 60, 0, @@ -548,13 +548,13 @@ // // 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, @@ -660,7 +660,6 @@ // // pnlFull // - resources.ApplyResources(this.pnlFull, "pnlFull"); this.pnlFull.Controls.Add(this.lbFull); this.pnlFull.Controls.Add(this.lbRed); this.pnlFull.Controls.Add(this.lbGreen); @@ -668,11 +667,11 @@ 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); @@ -681,6 +680,7 @@ 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 @@ -695,13 +695,13 @@ // // 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, @@ -728,13 +728,13 @@ // // 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, @@ -745,13 +745,13 @@ // // 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, @@ -762,7 +762,6 @@ // // gBTouchpad // - resources.ApplyResources(this.gBTouchpad, "gBTouchpad"); this.gBTouchpad.Controls.Add(this.cbStartTouchpadOff); this.gBTouchpad.Controls.Add(this.cBTouchpadJitterCompensation); this.gBTouchpad.Controls.Add(this.cBlowerRCOn); @@ -773,6 +772,7 @@ this.gBTouchpad.Controls.Add(this.nUDTap); this.gBTouchpad.Controls.Add(this.cBScroll); this.gBTouchpad.Controls.Add(this.cBDoubleTap); + resources.ApplyResources(this.gBTouchpad, "gBTouchpad"); this.gBTouchpad.Name = "gBTouchpad"; this.gBTouchpad.TabStop = false; // @@ -785,7 +785,6 @@ // // gBOther // - resources.ApplyResources(this.gBOther, "gBOther"); this.gBOther.Controls.Add(this.cBTPforControls); this.gBOther.Controls.Add(this.cBDinput); this.gBOther.Controls.Add(this.pBProgram); @@ -801,6 +800,7 @@ 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; // @@ -877,6 +877,7 @@ this.cBControllerInput.CheckState = System.Windows.Forms.CheckState.Checked; this.cBControllerInput.Name = "cBControllerInput"; this.cBControllerInput.UseVisualStyleBackColor = true; + this.cBControllerInput.CheckedChanged += new System.EventHandler(this.cBControllerInput_CheckedChanged); // // cBIdleDisconnect // @@ -889,7 +890,6 @@ // // gBLightbar // - resources.ApplyResources(this.gBLightbar, "gBLightbar"); this.gBLightbar.Controls.Add(this.pnlShift); this.gBLightbar.Controls.Add(this.btnChargingColor); this.gBLightbar.Controls.Add(this.rBColor); @@ -906,78 +906,12 @@ this.gBLightbar.Controls.Add(this.lbFlashAt); 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; // - // btnChargingColor - // - 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); - // - // rBColor - // - resources.ApplyResources(this.rBColor, "rBColor"); - this.rBColor.Name = "rBColor"; - this.rBColor.TabStop = true; - this.rBColor.UseVisualStyleBackColor = true; - this.rBColor.CheckedChanged += new System.EventHandler(this.rBColor_CheckedChanged); - // - // rBFade - // - resources.ApplyResources(this.rBFade, "rBFade"); - this.rBFade.Name = "rBFade"; - this.rBFade.UseVisualStyleBackColor = true; - this.rBFade.CheckedChanged += new System.EventHandler(this.rBFade_CheckedChanged); - // - // rBNormal - // - resources.ApplyResources(this.rBNormal, "rBNormal"); - this.rBNormal.Checked = true; - this.rBNormal.Name = "rBNormal"; - this.rBNormal.TabStop = true; - this.rBNormal.UseVisualStyleBackColor = true; - this.rBNormal.CheckedChanged += new System.EventHandler(this.rBNormal_CheckedChanged); - // - // rBRainbow - // - resources.ApplyResources(this.rBRainbow, "rBRainbow"); - this.rBRainbow.Name = "rBRainbow"; - this.rBRainbow.UseVisualStyleBackColor = true; - this.rBRainbow.CheckedChanged += new System.EventHandler(this.rBRainbow_CheckedChanged); - // - // lbWhileCharging - // - resources.ApplyResources(this.lbWhileCharging, "lbWhileCharging"); - this.lbWhileCharging.Name = "lbWhileCharging"; - // - // lbPercentFlashBar - // - resources.ApplyResources(this.lbPercentFlashBar, "lbPercentFlashBar"); - this.lbPercentFlashBar.Name = "lbPercentFlashBar"; - // - // nUDflashLED - // - resources.ApplyResources(this.nUDflashLED, "nUDflashLED"); - this.nUDflashLED.Increment = new decimal(new int[] { - 10, - 0, - 0, - 0}); - this.nUDflashLED.Name = "nUDflashLED"; - this.nUDflashLED.ValueChanged += new System.EventHandler(this.nUDflashLED_ValueChanged); - // - // lbFlashAt - // - resources.ApplyResources(this.lbFlashAt, "lbFlashAt"); - this.lbFlashAt.Name = "lbFlashAt"; - this.lbFlashAt.Click += new System.EventHandler(this.lbFlashAt_Click); - // // pnlShift // - resources.ApplyResources(this.pnlShift, "pnlShift"); this.pnlShift.Controls.Add(this.cBShiftLight); this.pnlShift.Controls.Add(this.lbShift); this.pnlShift.Controls.Add(this.lbShiftRed); @@ -986,6 +920,7 @@ this.pnlShift.Controls.Add(this.tBShiftRedBar); this.pnlShift.Controls.Add(this.tBShiftGreenBar); this.pnlShift.Controls.Add(this.tBShiftBlueBar); + resources.ApplyResources(this.pnlShift, "pnlShift"); this.pnlShift.Name = "pnlShift"; // // cBShiftLight @@ -1057,13 +992,79 @@ this.tBShiftBlueBar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.LightBar_MouseDown); this.tBShiftBlueBar.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Lightbar_MouseUp); // + // btnChargingColor + // + this.btnChargingColor.BackColor = System.Drawing.Color.White; + resources.ApplyResources(this.btnChargingColor, "btnChargingColor"); + this.btnChargingColor.Name = "btnChargingColor"; + this.btnChargingColor.UseVisualStyleBackColor = false; + this.btnChargingColor.Click += new System.EventHandler(this.btnChargingColor_Click); + // + // rBColor + // + resources.ApplyResources(this.rBColor, "rBColor"); + this.rBColor.Name = "rBColor"; + this.rBColor.TabStop = true; + this.rBColor.UseVisualStyleBackColor = true; + this.rBColor.CheckedChanged += new System.EventHandler(this.rBColor_CheckedChanged); + // + // rBFade + // + resources.ApplyResources(this.rBFade, "rBFade"); + this.rBFade.Name = "rBFade"; + this.rBFade.UseVisualStyleBackColor = true; + this.rBFade.CheckedChanged += new System.EventHandler(this.rBFade_CheckedChanged); + // + // rBNormal + // + resources.ApplyResources(this.rBNormal, "rBNormal"); + this.rBNormal.Checked = true; + this.rBNormal.Name = "rBNormal"; + this.rBNormal.TabStop = true; + this.rBNormal.UseVisualStyleBackColor = true; + this.rBNormal.CheckedChanged += new System.EventHandler(this.rBNormal_CheckedChanged); + // + // rBRainbow + // + resources.ApplyResources(this.rBRainbow, "rBRainbow"); + this.rBRainbow.Name = "rBRainbow"; + this.rBRainbow.UseVisualStyleBackColor = true; + this.rBRainbow.CheckedChanged += new System.EventHandler(this.rBRainbow_CheckedChanged); + // + // lbWhileCharging + // + resources.ApplyResources(this.lbWhileCharging, "lbWhileCharging"); + this.lbWhileCharging.Name = "lbWhileCharging"; + // + // lbPercentFlashBar + // + resources.ApplyResources(this.lbPercentFlashBar, "lbPercentFlashBar"); + this.lbPercentFlashBar.Name = "lbPercentFlashBar"; + // + // 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); + // + // lbFlashAt + // + resources.ApplyResources(this.lbFlashAt, "lbFlashAt"); + this.lbFlashAt.Name = "lbFlashAt"; + this.lbFlashAt.Click += new System.EventHandler(this.lbFlashAt_Click); + // // gBRumble // - resources.ApplyResources(this.gBRumble, "gBRumble"); 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; // @@ -1081,7 +1082,6 @@ // // gBDeadzone // - resources.ApplyResources(this.gBDeadzone, "gBDeadzone"); this.gBDeadzone.Controls.Add(this.lbL2); this.gBDeadzone.Controls.Add(this.nUDL2); this.gBDeadzone.Controls.Add(this.lbSixaxisX); @@ -1094,6 +1094,7 @@ this.gBDeadzone.Controls.Add(this.nUDRS); this.gBDeadzone.Controls.Add(this.nUDR2); this.gBDeadzone.Controls.Add(this.nUDLS); + resources.ApplyResources(this.gBDeadzone, "gBDeadzone"); this.gBDeadzone.Name = "gBDeadzone"; this.gBDeadzone.TabStop = false; // @@ -1109,13 +1110,13 @@ // // 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, @@ -1131,13 +1132,13 @@ // // 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, @@ -1154,11 +1155,9 @@ // openFileDialog1 // this.openFileDialog1.FileName = "openFileDialog1"; - resources.ApplyResources(this.openFileDialog1, "openFileDialog1"); // // tPController // - resources.ApplyResources(this.tPController, "tPController"); this.tPController.Controls.Add(this.pnlSixaxis); this.tPController.Controls.Add(this.lbL2Track); this.tPController.Controls.Add(this.pBDelayTracker); @@ -1178,12 +1177,12 @@ this.tPController.Controls.Add(this.tBR2); this.tPController.Controls.Add(this.tBL2); this.tPController.Controls.Add(this.lbSATrack); + resources.ApplyResources(this.tPController, "tPController"); this.tPController.Name = "tPController"; this.tPController.UseVisualStyleBackColor = true; // // pnlSixaxis // - resources.ApplyResources(this.pnlSixaxis, "pnlSixaxis"); this.pnlSixaxis.Controls.Add(this.tBsixaxisAccelX); this.pnlSixaxis.Controls.Add(this.lb6Accel); this.pnlSixaxis.Controls.Add(this.tBsixaxisGyroX); @@ -1192,6 +1191,7 @@ 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); // @@ -1272,15 +1272,15 @@ // // btnSATrack // - resources.ApplyResources(this.btnSATrack, "btnSATrack"); this.btnSATrack.BackColor = System.Drawing.Color.Black; + resources.ApplyResources(this.btnSATrack, "btnSATrack"); this.btnSATrack.Name = "btnSATrack"; this.btnSATrack.UseVisualStyleBackColor = false; // // btnRSTrack // - resources.ApplyResources(this.btnRSTrack, "btnRSTrack"); this.btnRSTrack.BackColor = System.Drawing.Color.Black; + resources.ApplyResources(this.btnRSTrack, "btnRSTrack"); this.btnRSTrack.Name = "btnRSTrack"; this.btnRSTrack.UseVisualStyleBackColor = false; // @@ -1312,43 +1312,43 @@ // // btnLSTrack // - resources.ApplyResources(this.btnLSTrack, "btnLSTrack"); this.btnLSTrack.BackColor = System.Drawing.Color.Black; + resources.ApplyResources(this.btnLSTrack, "btnLSTrack"); this.btnLSTrack.Name = "btnLSTrack"; this.btnLSTrack.UseVisualStyleBackColor = false; // // pBSADeadzone // - resources.ApplyResources(this.pBSADeadzone, "pBSADeadzone"); this.pBSADeadzone.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.pBSADeadzone, "pBSADeadzone"); this.pBSADeadzone.Name = "pBSADeadzone"; this.pBSADeadzone.TabStop = false; this.pBSADeadzone.Paint += new System.Windows.Forms.PaintEventHandler(this.DrawCircle); // // pBRSDeadzone // - resources.ApplyResources(this.pBRSDeadzone, "pBRSDeadzone"); this.pBRSDeadzone.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.pBRSDeadzone, "pBRSDeadzone"); this.pBRSDeadzone.Name = "pBRSDeadzone"; this.pBRSDeadzone.TabStop = false; // // lbRSTrack // - resources.ApplyResources(this.lbRSTrack, "lbRSTrack"); this.lbRSTrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.lbRSTrack, "lbRSTrack"); this.lbRSTrack.Name = "lbRSTrack"; // // pBLSDeadzone // - resources.ApplyResources(this.pBLSDeadzone, "pBLSDeadzone"); this.pBLSDeadzone.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.pBLSDeadzone, "pBLSDeadzone"); this.pBLSDeadzone.Name = "pBLSDeadzone"; this.pBLSDeadzone.TabStop = false; // // lbLSTrack // - resources.ApplyResources(this.lbLSTrack, "lbLSTrack"); this.lbLSTrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.lbLSTrack, "lbLSTrack"); this.lbLSTrack.Name = "lbLSTrack"; // // tBR2 @@ -1371,14 +1371,13 @@ // // lbSATrack // - resources.ApplyResources(this.lbSATrack, "lbSATrack"); this.lbSATrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.lbSATrack, "lbSATrack"); this.lbSATrack.Name = "lbSATrack"; this.lbSATrack.Click += new System.EventHandler(this.lbSATrack_Click); // // tPShiftMod // - resources.ApplyResources(this.tPShiftMod, "tPShiftMod"); this.tPShiftMod.Controls.Add(this.label2); this.tPShiftMod.Controls.Add(this.fLPShiftTouchSwipe); this.tPShiftMod.Controls.Add(this.lbShiftGryo); @@ -1389,6 +1388,7 @@ this.tPShiftMod.Controls.Add(this.lbtoUse); this.tPShiftMod.Controls.Add(this.pnlShiftMain); this.tPShiftMod.Controls.Add(this.pnlShiftSticks); + resources.ApplyResources(this.tPShiftMod, "tPShiftMod"); this.tPShiftMod.Name = "tPShiftMod"; this.tPShiftMod.UseVisualStyleBackColor = true; // @@ -1399,11 +1399,11 @@ // // fLPShiftTouchSwipe // - resources.ApplyResources(this.fLPShiftTouchSwipe, "fLPShiftTouchSwipe"); this.fLPShiftTouchSwipe.Controls.Add(this.bnShiftSwipeUp); this.fLPShiftTouchSwipe.Controls.Add(this.bnShiftSwipeDown); this.fLPShiftTouchSwipe.Controls.Add(this.bnShiftSwipeLeft); this.fLPShiftTouchSwipe.Controls.Add(this.bnShiftSwipeRight); + resources.ApplyResources(this.fLPShiftTouchSwipe, "fLPShiftTouchSwipe"); this.fLPShiftTouchSwipe.Name = "fLPShiftTouchSwipe"; // // bnShiftSwipeUp @@ -1441,11 +1441,11 @@ // // fLPShiftTiltControls // - resources.ApplyResources(this.fLPShiftTiltControls, "fLPShiftTiltControls"); this.fLPShiftTiltControls.Controls.Add(this.bnShiftGyroZN); this.fLPShiftTiltControls.Controls.Add(this.bnShiftGyroZP); this.fLPShiftTiltControls.Controls.Add(this.bnShiftGyroXP); this.fLPShiftTiltControls.Controls.Add(this.bnShiftGyroXN); + resources.ApplyResources(this.fLPShiftTiltControls, "fLPShiftTiltControls"); this.fLPShiftTiltControls.Name = "fLPShiftTiltControls"; // // bnShiftGyroZN @@ -1478,7 +1478,6 @@ // // cBShiftControl // - resources.ApplyResources(this.cBShiftControl, "cBShiftControl"); this.cBShiftControl.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cBShiftControl.FormattingEnabled = true; this.cBShiftControl.Items.AddRange(new object[] { @@ -1509,12 +1508,12 @@ resources.GetString("cBShiftControl.Items24"), resources.GetString("cBShiftControl.Items25"), resources.GetString("cBShiftControl.Items26")}); + resources.ApplyResources(this.cBShiftControl, "cBShiftControl"); this.cBShiftControl.Name = "cBShiftControl"; this.cBShiftControl.SelectedIndexChanged += new System.EventHandler(this.cBShiftControl_SelectedIndexChanged); // // lBShiftControls // - resources.ApplyResources(this.lBShiftControls, "lBShiftControls"); this.lBShiftControls.FormattingEnabled = true; this.lBShiftControls.Items.AddRange(new object[] { resources.GetString("lBShiftControls.Items"), @@ -1550,6 +1549,7 @@ resources.GetString("lBShiftControls.Items30"), resources.GetString("lBShiftControls.Items31"), resources.GetString("lBShiftControls.Items32")}); + resources.ApplyResources(this.lBShiftControls, "lBShiftControls"); this.lBShiftControls.Name = "lBShiftControls"; this.lBShiftControls.KeyDown += new System.Windows.Forms.KeyEventHandler(this.List_KeyDown); this.lBShiftControls.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.List_MouseDoubleClick); @@ -1566,7 +1566,6 @@ // // pnlShiftMain // - resources.ApplyResources(this.pnlShiftMain, "pnlShiftMain"); this.pnlShiftMain.Controls.Add(this.pBShiftController); this.pnlShiftMain.Controls.Add(this.bnShiftTouchUpper); this.pnlShiftMain.Controls.Add(this.bnShiftTouchLeft); @@ -1590,6 +1589,7 @@ this.pnlShiftMain.Controls.Add(this.bnShiftOptions); this.pnlShiftMain.Controls.Add(this.bnShiftPS); this.pnlShiftMain.Controls.Add(this.bnShiftShare); + resources.ApplyResources(this.pnlShiftMain, "pnlShiftMain"); this.pnlShiftMain.Name = "pnlShiftMain"; // // pBShiftController @@ -1601,8 +1601,8 @@ // // bnShiftTouchUpper // - resources.ApplyResources(this.bnShiftTouchUpper, "bnShiftTouchUpper"); this.bnShiftTouchUpper.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTouchUpper, "bnShiftTouchUpper"); this.bnShiftTouchUpper.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftTouchUpper.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftTouchUpper.FlatAppearance.BorderSize = 0; @@ -1615,8 +1615,8 @@ // // bnShiftTouchLeft // - resources.ApplyResources(this.bnShiftTouchLeft, "bnShiftTouchLeft"); this.bnShiftTouchLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTouchLeft, "bnShiftTouchLeft"); this.bnShiftTouchLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftTouchLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftTouchLeft.FlatAppearance.BorderSize = 0; @@ -1629,8 +1629,8 @@ // // bnShiftTouchRight // - resources.ApplyResources(this.bnShiftTouchRight, "bnShiftTouchRight"); this.bnShiftTouchRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTouchRight, "bnShiftTouchRight"); this.bnShiftTouchRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftTouchRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftTouchRight.FlatAppearance.BorderSize = 0; @@ -1643,8 +1643,8 @@ // // bnShiftTouchMulti // - resources.ApplyResources(this.bnShiftTouchMulti, "bnShiftTouchMulti"); this.bnShiftTouchMulti.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTouchMulti, "bnShiftTouchMulti"); this.bnShiftTouchMulti.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftTouchMulti.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftTouchMulti.FlatAppearance.BorderSize = 0; @@ -1657,8 +1657,8 @@ // // bnShiftR1 // - resources.ApplyResources(this.bnShiftR1, "bnShiftR1"); this.bnShiftR1.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftR1, "bnShiftR1"); this.bnShiftR1.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftR1.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftR1.FlatAppearance.BorderSize = 0; @@ -1671,8 +1671,8 @@ // // bnShiftCross // - resources.ApplyResources(this.bnShiftCross, "bnShiftCross"); this.bnShiftCross.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftCross, "bnShiftCross"); this.bnShiftCross.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftCross.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftCross.FlatAppearance.BorderSize = 0; @@ -1685,8 +1685,8 @@ // // bnShiftCircle // - resources.ApplyResources(this.bnShiftCircle, "bnShiftCircle"); this.bnShiftCircle.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftCircle, "bnShiftCircle"); this.bnShiftCircle.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftCircle.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftCircle.FlatAppearance.BorderSize = 0; @@ -1699,8 +1699,8 @@ // // btnShiftRightStick // - resources.ApplyResources(this.btnShiftRightStick, "btnShiftRightStick"); this.btnShiftRightStick.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnShiftRightStick, "btnShiftRightStick"); this.btnShiftRightStick.Cursor = System.Windows.Forms.Cursors.Default; this.btnShiftRightStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.btnShiftRightStick.FlatAppearance.BorderSize = 0; @@ -1712,8 +1712,8 @@ // // bnShiftSquare // - resources.ApplyResources(this.bnShiftSquare, "bnShiftSquare"); this.bnShiftSquare.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftSquare, "bnShiftSquare"); this.bnShiftSquare.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftSquare.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftSquare.FlatAppearance.BorderSize = 0; @@ -1726,8 +1726,8 @@ // // btnShiftLightbar // - resources.ApplyResources(this.btnShiftLightbar, "btnShiftLightbar"); this.btnShiftLightbar.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnShiftLightbar, "btnShiftLightbar"); this.btnShiftLightbar.Cursor = System.Windows.Forms.Cursors.Default; this.btnShiftLightbar.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.btnShiftLightbar.FlatAppearance.BorderSize = 0; @@ -1740,8 +1740,8 @@ // // bnShiftTriangle // - resources.ApplyResources(this.bnShiftTriangle, "bnShiftTriangle"); this.bnShiftTriangle.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTriangle, "bnShiftTriangle"); this.bnShiftTriangle.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftTriangle.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftTriangle.FlatAppearance.BorderSize = 0; @@ -1754,8 +1754,8 @@ // // bnShiftUp // - resources.ApplyResources(this.bnShiftUp, "bnShiftUp"); this.bnShiftUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftUp, "bnShiftUp"); this.bnShiftUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftUp.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.bnShiftUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; @@ -1769,8 +1769,8 @@ // // btnShiftLeftStick // - resources.ApplyResources(this.btnShiftLeftStick, "btnShiftLeftStick"); this.btnShiftLeftStick.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnShiftLeftStick, "btnShiftLeftStick"); this.btnShiftLeftStick.Cursor = System.Windows.Forms.Cursors.Default; this.btnShiftLeftStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.btnShiftLeftStick.FlatAppearance.BorderSize = 0; @@ -1782,8 +1782,8 @@ // // bnShiftDown // - resources.ApplyResources(this.bnShiftDown, "bnShiftDown"); this.bnShiftDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftDown, "bnShiftDown"); this.bnShiftDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftDown.FlatAppearance.BorderSize = 0; @@ -1796,8 +1796,8 @@ // // bnShiftL2 // - resources.ApplyResources(this.bnShiftL2, "bnShiftL2"); this.bnShiftL2.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftL2, "bnShiftL2"); this.bnShiftL2.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftL2.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftL2.FlatAppearance.BorderSize = 0; @@ -1810,8 +1810,8 @@ // // bnShiftRight // - resources.ApplyResources(this.bnShiftRight, "bnShiftRight"); this.bnShiftRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRight, "bnShiftRight"); this.bnShiftRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftRight.FlatAppearance.BorderSize = 0; @@ -1824,8 +1824,8 @@ // // bnShiftR2 // - resources.ApplyResources(this.bnShiftR2, "bnShiftR2"); this.bnShiftR2.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftR2, "bnShiftR2"); this.bnShiftR2.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftR2.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftR2.FlatAppearance.BorderSize = 0; @@ -1838,8 +1838,8 @@ // // bnShiftLeft // - resources.ApplyResources(this.bnShiftLeft, "bnShiftLeft"); this.bnShiftLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLeft, "bnShiftLeft"); this.bnShiftLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftLeft.FlatAppearance.BorderSize = 0; @@ -1852,8 +1852,8 @@ // // bnShiftL1 // - resources.ApplyResources(this.bnShiftL1, "bnShiftL1"); this.bnShiftL1.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftL1, "bnShiftL1"); this.bnShiftL1.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftL1.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftL1.FlatAppearance.BorderSize = 0; @@ -1866,8 +1866,8 @@ // // bnShiftOptions // - resources.ApplyResources(this.bnShiftOptions, "bnShiftOptions"); this.bnShiftOptions.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftOptions, "bnShiftOptions"); this.bnShiftOptions.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftOptions.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftOptions.FlatAppearance.BorderSize = 0; @@ -1880,8 +1880,8 @@ // // bnShiftPS // - resources.ApplyResources(this.bnShiftPS, "bnShiftPS"); this.bnShiftPS.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftPS, "bnShiftPS"); this.bnShiftPS.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftPS.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftPS.FlatAppearance.BorderSize = 0; @@ -1894,8 +1894,8 @@ // // bnShiftShare // - resources.ApplyResources(this.bnShiftShare, "bnShiftShare"); this.bnShiftShare.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftShare, "bnShiftShare"); this.bnShiftShare.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftShare.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftShare.FlatAppearance.BorderSize = 0; @@ -1908,7 +1908,6 @@ // // pnlShiftSticks // - resources.ApplyResources(this.pnlShiftSticks, "pnlShiftSticks"); this.pnlShiftSticks.Controls.Add(this.btnShiftFullView); this.pnlShiftSticks.Controls.Add(this.pBShiftSticks); this.pnlShiftSticks.Controls.Add(this.bnShiftL3); @@ -1921,6 +1920,7 @@ this.pnlShiftSticks.Controls.Add(this.bnShiftRSLeft); this.pnlShiftSticks.Controls.Add(this.bnShiftLSDown); this.pnlShiftSticks.Controls.Add(this.bnShiftR3); + resources.ApplyResources(this.pnlShiftSticks, "pnlShiftSticks"); this.pnlShiftSticks.Name = "pnlShiftSticks"; // // btnShiftFullView @@ -1939,8 +1939,8 @@ // // bnShiftL3 // - resources.ApplyResources(this.bnShiftL3, "bnShiftL3"); this.bnShiftL3.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftL3, "bnShiftL3"); this.bnShiftL3.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftL3.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftL3.FlatAppearance.BorderSize = 0; @@ -1953,8 +1953,8 @@ // // bnShiftRSDown // - resources.ApplyResources(this.bnShiftRSDown, "bnShiftRSDown"); this.bnShiftRSDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRSDown, "bnShiftRSDown"); this.bnShiftRSDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftRSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftRSDown.FlatAppearance.BorderSize = 0; @@ -1967,8 +1967,8 @@ // // bnShiftLSUp // - resources.ApplyResources(this.bnShiftLSUp, "bnShiftLSUp"); this.bnShiftLSUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLSUp, "bnShiftLSUp"); this.bnShiftLSUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftLSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftLSUp.FlatAppearance.BorderSize = 0; @@ -1981,8 +1981,8 @@ // // bnShiftRSUp // - resources.ApplyResources(this.bnShiftRSUp, "bnShiftRSUp"); this.bnShiftRSUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRSUp, "bnShiftRSUp"); this.bnShiftRSUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftRSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftRSUp.FlatAppearance.BorderSize = 0; @@ -1995,8 +1995,8 @@ // // bnShiftLSLeft // - resources.ApplyResources(this.bnShiftLSLeft, "bnShiftLSLeft"); this.bnShiftLSLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLSLeft, "bnShiftLSLeft"); this.bnShiftLSLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftLSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftLSLeft.FlatAppearance.BorderSize = 0; @@ -2009,8 +2009,8 @@ // // bnShiftRSRight // - resources.ApplyResources(this.bnShiftRSRight, "bnShiftRSRight"); this.bnShiftRSRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRSRight, "bnShiftRSRight"); this.bnShiftRSRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftRSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftRSRight.FlatAppearance.BorderSize = 0; @@ -2023,8 +2023,8 @@ // // bnShiftLSRight // - resources.ApplyResources(this.bnShiftLSRight, "bnShiftLSRight"); this.bnShiftLSRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLSRight, "bnShiftLSRight"); this.bnShiftLSRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftLSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftLSRight.FlatAppearance.BorderSize = 0; @@ -2037,8 +2037,8 @@ // // bnShiftRSLeft // - resources.ApplyResources(this.bnShiftRSLeft, "bnShiftRSLeft"); this.bnShiftRSLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRSLeft, "bnShiftRSLeft"); this.bnShiftRSLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftRSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftRSLeft.FlatAppearance.BorderSize = 0; @@ -2051,8 +2051,8 @@ // // bnShiftLSDown // - resources.ApplyResources(this.bnShiftLSDown, "bnShiftLSDown"); this.bnShiftLSDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLSDown, "bnShiftLSDown"); this.bnShiftLSDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftLSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftLSDown.FlatAppearance.BorderSize = 0; @@ -2065,8 +2065,8 @@ // // bnShiftR3 // - resources.ApplyResources(this.bnShiftR3, "bnShiftR3"); this.bnShiftR3.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftR3, "bnShiftR3"); this.bnShiftR3.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftR3.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftR3.FlatAppearance.BorderSize = 0; @@ -2079,7 +2079,6 @@ // // tPControls // - resources.ApplyResources(this.tPControls, "tPControls"); this.tPControls.Controls.Add(this.label1); this.tPControls.Controls.Add(this.fLPTouchSwipe); this.tPControls.Controls.Add(this.lbGryo); @@ -2088,6 +2087,7 @@ this.tPControls.Controls.Add(this.lBControls); this.tPControls.Controls.Add(this.lbControlTip); this.tPControls.Controls.Add(this.pnlSticks); + resources.ApplyResources(this.tPControls, "tPControls"); this.tPControls.Name = "tPControls"; this.tPControls.UseVisualStyleBackColor = true; // @@ -2098,11 +2098,11 @@ // // fLPTouchSwipe // - resources.ApplyResources(this.fLPTouchSwipe, "fLPTouchSwipe"); this.fLPTouchSwipe.Controls.Add(this.bnSwipeUp); this.fLPTouchSwipe.Controls.Add(this.bnSwipeDown); this.fLPTouchSwipe.Controls.Add(this.bnSwipeLeft); this.fLPTouchSwipe.Controls.Add(this.bnSwipeRight); + resources.ApplyResources(this.fLPTouchSwipe, "fLPTouchSwipe"); this.fLPTouchSwipe.Name = "fLPTouchSwipe"; // // bnSwipeUp @@ -2140,11 +2140,11 @@ // // fLPTiltControls // - resources.ApplyResources(this.fLPTiltControls, "fLPTiltControls"); this.fLPTiltControls.Controls.Add(this.bnGyroZN); this.fLPTiltControls.Controls.Add(this.bnGyroZP); this.fLPTiltControls.Controls.Add(this.bnGyroXP); this.fLPTiltControls.Controls.Add(this.bnGyroXN); + resources.ApplyResources(this.fLPTiltControls, "fLPTiltControls"); this.fLPTiltControls.Name = "fLPTiltControls"; // // bnGyroZN @@ -2177,7 +2177,6 @@ // // pnlMain // - resources.ApplyResources(this.pnlMain, "pnlMain"); this.pnlMain.Controls.Add(this.pBController); this.pnlMain.Controls.Add(this.bnTouchUpper); this.pnlMain.Controls.Add(this.bnTouchLeft); @@ -2201,6 +2200,7 @@ this.pnlMain.Controls.Add(this.bnShare); this.pnlMain.Controls.Add(this.bnL2); this.pnlMain.Controls.Add(this.bnR2); + resources.ApplyResources(this.pnlMain, "pnlMain"); this.pnlMain.Name = "pnlMain"; // // pBController @@ -2212,8 +2212,8 @@ // // bnTouchUpper // - resources.ApplyResources(this.bnTouchUpper, "bnTouchUpper"); this.bnTouchUpper.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTouchUpper, "bnTouchUpper"); this.bnTouchUpper.Cursor = System.Windows.Forms.Cursors.Default; this.bnTouchUpper.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnTouchUpper.FlatAppearance.BorderSize = 0; @@ -2228,8 +2228,8 @@ // // bnTouchLeft // - resources.ApplyResources(this.bnTouchLeft, "bnTouchLeft"); this.bnTouchLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTouchLeft, "bnTouchLeft"); this.bnTouchLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnTouchLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnTouchLeft.FlatAppearance.BorderSize = 0; @@ -2244,8 +2244,8 @@ // // bnTouchRight // - resources.ApplyResources(this.bnTouchRight, "bnTouchRight"); this.bnTouchRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTouchRight, "bnTouchRight"); this.bnTouchRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnTouchRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnTouchRight.FlatAppearance.BorderSize = 0; @@ -2260,8 +2260,8 @@ // // bnTouchMulti // - resources.ApplyResources(this.bnTouchMulti, "bnTouchMulti"); this.bnTouchMulti.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTouchMulti, "bnTouchMulti"); this.bnTouchMulti.Cursor = System.Windows.Forms.Cursors.Default; this.bnTouchMulti.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnTouchMulti.FlatAppearance.BorderSize = 0; @@ -2276,8 +2276,8 @@ // // bnR1 // - resources.ApplyResources(this.bnR1, "bnR1"); this.bnR1.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnR1, "bnR1"); this.bnR1.Cursor = System.Windows.Forms.Cursors.Default; this.bnR1.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnR1.FlatAppearance.BorderSize = 0; @@ -2290,8 +2290,8 @@ // // bnCross // - resources.ApplyResources(this.bnCross, "bnCross"); this.bnCross.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnCross, "bnCross"); this.bnCross.Cursor = System.Windows.Forms.Cursors.Default; this.bnCross.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnCross.FlatAppearance.BorderSize = 0; @@ -2304,8 +2304,8 @@ // // bnCircle // - resources.ApplyResources(this.bnCircle, "bnCircle"); this.bnCircle.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnCircle, "bnCircle"); this.bnCircle.Cursor = System.Windows.Forms.Cursors.Default; this.bnCircle.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnCircle.FlatAppearance.BorderSize = 0; @@ -2318,8 +2318,8 @@ // // btnRightStick // - resources.ApplyResources(this.btnRightStick, "btnRightStick"); this.btnRightStick.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnRightStick, "btnRightStick"); this.btnRightStick.Cursor = System.Windows.Forms.Cursors.Default; this.btnRightStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.btnRightStick.FlatAppearance.BorderSize = 0; @@ -2332,8 +2332,8 @@ // // bnSquare // - resources.ApplyResources(this.bnSquare, "bnSquare"); this.bnSquare.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnSquare, "bnSquare"); this.bnSquare.Cursor = System.Windows.Forms.Cursors.Default; this.bnSquare.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnSquare.FlatAppearance.BorderSize = 0; @@ -2346,8 +2346,8 @@ // // btnLightbar // - resources.ApplyResources(this.btnLightbar, "btnLightbar"); this.btnLightbar.BackColor = System.Drawing.Color.Transparent; + 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; @@ -2360,8 +2360,8 @@ // // bnTriangle // - resources.ApplyResources(this.bnTriangle, "bnTriangle"); this.bnTriangle.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTriangle, "bnTriangle"); this.bnTriangle.Cursor = System.Windows.Forms.Cursors.Default; this.bnTriangle.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnTriangle.FlatAppearance.BorderSize = 0; @@ -2374,8 +2374,8 @@ // // bnUp // - resources.ApplyResources(this.bnUp, "bnUp"); this.bnUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnUp, "bnUp"); this.bnUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnUp.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.bnUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; @@ -2389,8 +2389,8 @@ // // btnLeftStick // - resources.ApplyResources(this.btnLeftStick, "btnLeftStick"); this.btnLeftStick.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnLeftStick, "btnLeftStick"); this.btnLeftStick.Cursor = System.Windows.Forms.Cursors.Default; this.btnLeftStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.btnLeftStick.FlatAppearance.BorderSize = 0; @@ -2403,8 +2403,8 @@ // // bnDown // - resources.ApplyResources(this.bnDown, "bnDown"); this.bnDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnDown, "bnDown"); this.bnDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnDown.FlatAppearance.BorderSize = 0; @@ -2417,8 +2417,8 @@ // // bnRight // - resources.ApplyResources(this.bnRight, "bnRight"); this.bnRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRight, "bnRight"); this.bnRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnRight.FlatAppearance.BorderSize = 0; @@ -2431,8 +2431,8 @@ // // bnLeft // - resources.ApplyResources(this.bnLeft, "bnLeft"); this.bnLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLeft, "bnLeft"); this.bnLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnLeft.FlatAppearance.BorderSize = 0; @@ -2445,8 +2445,8 @@ // // bnL1 // - resources.ApplyResources(this.bnL1, "bnL1"); this.bnL1.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnL1, "bnL1"); this.bnL1.Cursor = System.Windows.Forms.Cursors.Default; this.bnL1.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnL1.FlatAppearance.BorderSize = 0; @@ -2459,8 +2459,8 @@ // // bnOptions // - resources.ApplyResources(this.bnOptions, "bnOptions"); this.bnOptions.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnOptions, "bnOptions"); this.bnOptions.Cursor = System.Windows.Forms.Cursors.Default; this.bnOptions.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnOptions.FlatAppearance.BorderSize = 0; @@ -2473,8 +2473,8 @@ // // bnPS // - resources.ApplyResources(this.bnPS, "bnPS"); this.bnPS.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnPS, "bnPS"); this.bnPS.Cursor = System.Windows.Forms.Cursors.Default; this.bnPS.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnPS.FlatAppearance.BorderSize = 0; @@ -2487,8 +2487,8 @@ // // bnShare // - resources.ApplyResources(this.bnShare, "bnShare"); this.bnShare.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShare, "bnShare"); this.bnShare.Cursor = System.Windows.Forms.Cursors.Default; this.bnShare.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShare.FlatAppearance.BorderSize = 0; @@ -2501,8 +2501,8 @@ // // bnL2 // - resources.ApplyResources(this.bnL2, "bnL2"); this.bnL2.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnL2, "bnL2"); this.bnL2.Cursor = System.Windows.Forms.Cursors.Default; this.bnL2.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnL2.FlatAppearance.BorderSize = 0; @@ -2515,8 +2515,8 @@ // // bnR2 // - resources.ApplyResources(this.bnR2, "bnR2"); this.bnR2.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnR2, "bnR2"); this.bnR2.Cursor = System.Windows.Forms.Cursors.Default; this.bnR2.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnR2.FlatAppearance.BorderSize = 0; @@ -2529,7 +2529,6 @@ // // lBControls // - resources.ApplyResources(this.lBControls, "lBControls"); this.lBControls.FormattingEnabled = true; this.lBControls.Items.AddRange(new object[] { resources.GetString("lBControls.Items"), @@ -2565,6 +2564,7 @@ resources.GetString("lBControls.Items30"), resources.GetString("lBControls.Items31"), resources.GetString("lBControls.Items32")}); + resources.ApplyResources(this.lBControls, "lBControls"); this.lBControls.Name = "lBControls"; this.lBControls.DoubleClick += new System.EventHandler(this.Show_ControlsList); this.lBControls.KeyDown += new System.Windows.Forms.KeyEventHandler(this.List_KeyDown); @@ -2576,7 +2576,6 @@ // // pnlSticks // - resources.ApplyResources(this.pnlSticks, "pnlSticks"); this.pnlSticks.Controls.Add(this.btnFullView); this.pnlSticks.Controls.Add(this.pBSticks); this.pnlSticks.Controls.Add(this.bnL3); @@ -2589,6 +2588,7 @@ this.pnlSticks.Controls.Add(this.bnRSLeft); this.pnlSticks.Controls.Add(this.bnLSDown); this.pnlSticks.Controls.Add(this.bnR3); + resources.ApplyResources(this.pnlSticks, "pnlSticks"); this.pnlSticks.Name = "pnlSticks"; // // btnFullView @@ -2607,8 +2607,8 @@ // // bnL3 // - resources.ApplyResources(this.bnL3, "bnL3"); this.bnL3.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnL3, "bnL3"); this.bnL3.Cursor = System.Windows.Forms.Cursors.Default; this.bnL3.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnL3.FlatAppearance.BorderSize = 0; @@ -2621,8 +2621,8 @@ // // bnRSDown // - resources.ApplyResources(this.bnRSDown, "bnRSDown"); this.bnRSDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRSDown, "bnRSDown"); this.bnRSDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnRSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnRSDown.FlatAppearance.BorderSize = 0; @@ -2635,8 +2635,8 @@ // // bnLSUp // - resources.ApplyResources(this.bnLSUp, "bnLSUp"); this.bnLSUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLSUp, "bnLSUp"); this.bnLSUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnLSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnLSUp.FlatAppearance.BorderSize = 0; @@ -2649,8 +2649,8 @@ // // bnRSUp // - resources.ApplyResources(this.bnRSUp, "bnRSUp"); this.bnRSUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRSUp, "bnRSUp"); this.bnRSUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnRSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnRSUp.FlatAppearance.BorderSize = 0; @@ -2663,8 +2663,8 @@ // // bnLSLeft // - resources.ApplyResources(this.bnLSLeft, "bnLSLeft"); this.bnLSLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLSLeft, "bnLSLeft"); this.bnLSLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnLSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnLSLeft.FlatAppearance.BorderSize = 0; @@ -2677,8 +2677,8 @@ // // bnRSRight // - resources.ApplyResources(this.bnRSRight, "bnRSRight"); this.bnRSRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRSRight, "bnRSRight"); this.bnRSRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnRSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnRSRight.FlatAppearance.BorderSize = 0; @@ -2691,8 +2691,8 @@ // // bnLSRight // - resources.ApplyResources(this.bnLSRight, "bnLSRight"); this.bnLSRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLSRight, "bnLSRight"); this.bnLSRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnLSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnLSRight.FlatAppearance.BorderSize = 0; @@ -2705,8 +2705,8 @@ // // bnRSLeft // - resources.ApplyResources(this.bnRSLeft, "bnRSLeft"); this.bnRSLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRSLeft, "bnRSLeft"); this.bnRSLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnRSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnRSLeft.FlatAppearance.BorderSize = 0; @@ -2719,8 +2719,8 @@ // // bnLSDown // - resources.ApplyResources(this.bnLSDown, "bnLSDown"); this.bnLSDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLSDown, "bnLSDown"); this.bnLSDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnLSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnLSDown.FlatAppearance.BorderSize = 0; @@ -2733,8 +2733,8 @@ // // bnR3 // - resources.ApplyResources(this.bnR3, "bnR3"); this.bnR3.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnR3, "bnR3"); this.bnR3.Cursor = System.Windows.Forms.Cursors.Default; this.bnR3.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnR3.FlatAppearance.BorderSize = 0; @@ -2747,10 +2747,10 @@ // // tabControls // - resources.ApplyResources(this.tabControls, "tabControls"); this.tabControls.Controls.Add(this.tPControls); this.tabControls.Controls.Add(this.tPShiftMod); this.tabControls.Controls.Add(this.tPController); + resources.ApplyResources(this.tabControls, "tabControls"); this.tabControls.Name = "tabControls"; this.tabControls.SelectedIndex = 0; this.tabControls.SelectedIndexChanged += new System.EventHandler(this.tabControls_SelectedIndexChanged); @@ -2806,12 +2806,12 @@ ((System.ComponentModel.ISupportInitialize)(this.nUDSixaxis)).EndInit(); this.gBLightbar.ResumeLayout(false); this.gBLightbar.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nUDflashLED)).EndInit(); this.pnlShift.ResumeLayout(false); this.pnlShift.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftRedBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftGreenBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftBlueBar)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.nUDflashLED)).EndInit(); this.gBRumble.ResumeLayout(false); this.gBRumble.PerformLayout(); this.gBDeadzone.ResumeLayout(false); diff --git a/DS4Tool/Options.cs b/DS4Tool/Options.cs index e071fdb..7084202 100644 --- a/DS4Tool/Options.cs +++ b/DS4Tool/Options.cs @@ -194,6 +194,7 @@ namespace DS4Windows olddinputcheck = cBDinput.Checked; cbStartTouchpadOff.Checked = Global.getStartTouchpadOff(device); cBTPforControls.Checked = Global.getUseTPforControls(device); + cBControllerInput.Checked = Global.getDS4Mapping(); } else { @@ -448,6 +449,8 @@ namespace DS4Windows Global.setDinputOnly(device, cBDinput.Checked); Global.setStartTouchpadOff(device, cbStartTouchpadOff.Checked); Global.setUseTPforControls(device, cBTPforControls.Checked); + Global.setDS4Mapping(cBControllerInput.Checked); + gBTouchpad.Enabled = !cBTPforControls.Checked; if (cBTPforControls.Checked) tabControls.Size = new Size(tabControls.Size.Width, (int)(282 * dpiy)); @@ -1547,5 +1550,10 @@ namespace DS4Windows lBShiftControls.Items.RemoveAt(33); } } + + private void cBControllerInput_CheckedChanged(object sender, EventArgs e) + { + Global.setDS4Mapping(cBControllerInput.Checked); + } } } diff --git a/DS4Tool/Options.resx b/DS4Tool/Options.resx index 68963be..22319d4 100644 --- a/DS4Tool/Options.resx +++ b/DS4Tool/Options.resx @@ -117,3075 +117,2949 @@ System.Resources.ResXResourceWriter, 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 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - False - - - Yes + + Flat - + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 44, 9 - - Fall Back + + 13, 13 - + + + 49 + + + lowColorChooserButton + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbRSTrack + + pnlLowBattery - - 236 + + 0 - - Other + + 181, 16 - - $this + + 39, 20 - - - 257, 7 + + 167 - - bnL2 + + nUDRainbow - - Left Stick Up : - - - Right Stick - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 91 - - - bnShiftL2 - - - TopCenter - - - 72 - - - 12 - - - False - - + 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 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + gBLightbar + + 10 + + + NoControl + + + 159, 17 + + + 16, 16 + + + StretchImage + + + 166 + pBRainbow - - pnlLowBattery + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + gBLightbar - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 15, 12 - - - 1 - - - 3, 3, 3, 3 - - - gBRumble - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Yes - - - 7 - - - 11 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Tilt Left - - - gBRumble - - - 235 - - - 11 - - - 6 - - - 71, 9 - - - 198 - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - bnShiftRSLeft - - - 242 - - - bnCircle - - - 3, 3 - - - Flat - - - 4, 22 - - - 237 - - - 211 - - - gBOther - - - 49, 19 - - - G - - - Fall Back - - - MiddleCenter - - - NoControl - - - System.Windows.Forms.CheckBox, 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 - - - 1 - - - 7 - - - 214 - - - 40, 20 - - + 8 - - 223, 15 + + False - - tBGreenBar - - - 71, 79 - - - 7 - - - Fall Back - - - 125, 125 - - - 88 - - - 189 - - - L2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 72, 219 - - - Left Touch : - - - bnShiftR2 - - - btnChargingColor - - - Right Stick Left : - - - bnShiftCircle - - - 10 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9 - - - lbL2 - - + NoControl - + + 325, 4 + + + 100, 20 + + + 12 + + + tBBlueBar + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 80, 23 - - - Left Button - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - lbtoUse - - - btnRumbleLightTest - - - NoControl - - - Flat - - - Touchpad -Swipes: - - - tabControls - - - bnShiftTouchRight - - - lbLowBlue - - - 19 - - - pnlMain - - - 80, 23 - - - 0 - - - pnlShift - - - None - - - None - - - Yes + + pnlFull 6 - + False - + + NoControl + + + 196, 4 + + + 100, 20 + + + 11 + + + tBGreenBar + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlFull + + + 5 + + + False + + + NoControl + + + 73, 4 + + + 100, 20 + + + 10 + + + tBRedBar + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlFull + + + 4 + + + True + + + NoControl + + + 316, 17 + + + 111, 17 + + + 162 + + + Color by Battery % + + + cBLightbyBattery + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 12 + + + True + + + NoControl + + + 308, 7 + + + 14, 13 + + + 160 + + + B + + + lbBlue + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlFull + + + 3 + + + True + + + NoControl + + + 180, 7 + + + 15, 13 + + + 159 + + + G + + + lbGreen + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlFull + + + 2 + + + True + + + NoControl + + + 223, 19 + + + 59, 13 + + + 157 + + + secs/cycle + + + lbspc + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 11 + + + True + + + NoControl + + + 57, 7 + + + 15, 13 + + + 158 + + + R + + + lbRed + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlFull + + + 1 + + + True + + + NoControl + + + 106, 50 + + + No + + + 82, 17 + + + 226 + + + Double Tap + + + cBDoubleTap + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBTouchpad + + + 9 + + + True + + + NoControl + + + 8, 50 + + + Yes + + + 45, 17 + + + 230 + + + Tap + + + cBTap + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBTouchpad + + + 5 + + + 60, 50 + + + 40, 20 + + + 227 + + + nUDTap + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBTouchpad + + + 7 + + + True + + + NoControl + + + 105, 20 + + + Yes + + + 52, 17 + + + 231 + + + Scroll + + + cBScroll + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBTouchpad + + + 8 + + + True + + + NoControl + + + 4, 20 + + + Yes + + + 49, 17 + + + 232 + + + Slide + + + cBSlide + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBTouchpad + + + 3 + + + 164, 19 + + + 40, 20 + + + 228 + + + nUDScroll + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBTouchpad + + + 6 + + + 60, 19 + + + 40, 20 + + + 229 + + + nUDTouch + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBTouchpad + + + 4 + + + True + + + NoControl + + + 5, 17 + + + 92, 13 + + + 206 + + + Mouse Sensitivity: + + + TopRight + + + lbButtonMouseSens + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 11 + + + True + + NoControl 132, 79 - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + No - - None + + 124, 17 - - NoControl + + 223 - - Right X-Axis- + + Lower Right as RMB - - NoControl + + cBlowerRCOn - - bnShiftUp - - - 242 - - - 49, 20 - - - 81, 73 - - - bnR3 - - - Left Stick Right : - - - NoControl - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBOther - - - 5 - - - 84, 7 - - - False - - - TopRight - - - NoControl - - - gBTouchpad - - - 235 - - - lbSATrack - - - False - - - Flat - - - Popup - - - 250 - - - 80, 23 - - - 245, 132 - - - 109, 40 - - - 331, 3 - - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 80, 23 + + gBTouchpad - - Flat + + 2 - - Multitouch : + + True - - 183, 79 + + NoControl + + + 12, 79 + + + No + + + 118, 17 + + + 224 + + + Jitter Compensation + + + cBTouchpadJitterCompensation + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBTouchpad + + + 1 + + + True + + + NoControl + + + 7, 17 + + + 19, 13 + + + 196 + + + L2 + + + lbL2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 gBDeadzone + + 0 + + + True + + + NoControl + + + 88, 17 + + + 21, 13 + + + 197 + + + R2 + + + lbR2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBDeadzone + + + 4 + + + True + + + NoControl + + + 163, 47 + + + 28, 13 + + + 200 + + + mins + + + lbIdleMinutes + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 14 + + + 109, 44 + + + 49, 20 + + + 201 + + + nUDIdleDisconnect + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 9 + + + 111, 15 + + + 49, 20 + + + 202 + + + nUDR2 + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBDeadzone + + + 10 + + + flushHIDQueue + + + True + + + NoControl + + + 357, 73 + + + Yes + + + 73, 17 + + + 198 + + + Flush HID + + + + cBFlushHIDQueue + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 13 + + + 43, 14 + + + 43, 20 + + + 211 + + + nUDRumbleBoost + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBRumble + + + 3 + + + NoControl + + + 3, 39 + + + 71, 23 + + + 214 + + + Test Heavy + + + btnRumbleHeavyTest + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBRumble + + + 2 + + + True + + + NoControl + + + 7, 7 + + + 26, 13 + + + 225 + + + Full: + + + lbFull + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlFull + + + 0 + + + True + + + NoControl + + + 57, 9 + + + 15, 13 + + + 158 + + + R + + + lbLowRed + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlLowBattery + + + 1 + + + True + + + NoControl + + + 180, 9 + + + 15, 13 + + + 159 + + + G + + + lbLowGreen + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlLowBattery + + + 2 + + + True + + + NoControl + + + 308, 9 + + + 14, 13 + + + 160 + + + B + + + lbLowBlue + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlLowBattery + + + 3 + + + False + + + NoControl + + + 73, 5 + + + 100, 20 + + + 10 + + + tBLowRedBar + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlLowBattery + + + 4 + + + False + + + NoControl + + + 196, 5 + + + 100, 20 + + + 11 + + + tBLowGreenBar + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlLowBattery + + + 5 + + + False + + + NoControl + + + 325, 5 + + + 100, 20 + + + 12 + + + tBLowBlueBar + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlLowBattery + + + 6 + + + True + + + NoControl + + + 7, 9 + + + 39, 13 + + + 225 + + + Empty: + + + lbEmpty + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlLowBattery + + + 7 + + + 1, 41 + + + 435, 29 + + + 235 + + + pnlFull + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 15 + + + 1, 72 + + + 435, 29 + + + 234 + + + pnlLowBattery + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 14 + + + True + + + NoControl + + + 88, 47 + + + 22, 13 + + + 197 + + + RS + + + lbRS + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBDeadzone + + + 5 + + + True + + + NoControl + + + 7, 47 + + + 20, 13 + + + 196 + + + LS + + + lbLS + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBDeadzone + + + 7 + + + 111, 43 + + + No + + + 49, 20 + + + 203 + + + nUDRS + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBDeadzone + + + 9 + + + 109, 16 + + + 49, 20 + + + 241 + + + numUDMouseSens + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 12 + + + 31, 44 + + + No + + + 49, 20 + 203 - - NoControl + + nUDLS - - NoControl + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl - - - NoControl - - - lBControls - - - True - - - Right Trigger - - - 49, 19 - - - NoControl - - + gBDeadzone - - None + + 11 - - None + + 31, 15 - - pnlMain + + No - - NoControl + + 49, 20 - - 72 + + 203 - - 5 + + nUDL2 - - 167 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15, 15 + + gBDeadzone - - 105, 13 + + 1 - - pBLSDeadzone - - - Flat - - - 100, 20 - - - 89, 3 - - - Flat - - - fLPTouchSwipe - - - Left Touch - - - Start - - + True - - 245, 132 - - - pnlShiftMain - - - 261, 3 - - + NoControl - - advColorDialog + + 209, 20 - - 170 + + 142, 17 - - lbSixaxisZ + + 233 + + + Start with Slide/Scroll off + + + cbStartTouchpadOff + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBTouchpad + + + 0 + + + 3, 251 + + + 435, 106 + + + 246 + + + Touchpad + + + gBTouchpad + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 4 + + + True + + + NoControl + + + 315, 36 + + + Yes + + + 115, 30 + + + 257 Use Touchpad Swipes for controls - - 105, 23 + + cBTPforControls - - 6 - - - 100, 20 - - - 237 - - - 65, 92 - - - 351, 31 - - - True - - - None - - - bnShiftRight - - - NoControl - - - $this - - - NoControl - - - Fall Back - - - Flat - - - fLPTouchSwipe - - - cBMouseAccel - - - pnlShiftMain - - - 3 - - - Tilt Left - - - NoControl - - - bnShiftShare - - - 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 - - pnlSixaxis - - - NoControl - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 8 - - - True - - - 80, 23 - - - 159, 105 - - - RS - - - lbspc - - - 216 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 81, 4 - - - 308, 33 - - - 20 - - - pnlShiftSticks - - - 5 - - - 225 - - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Popup - - - tBLowBlueBar - - - None - - - 91, 16 - - - pnlShiftSticks - - - Rumble - - - NoControl - - - 15, 15 - - - mins - - - R1 : - - - Left Y-Axis+ - - - Left Stick Down : - - - 28, 28 - - - None - - - NoControl - - - 0 - - - 55, 16 - - - 249, 143 - - - NoControl - - - 9 - - - 3 - - - 250 - - - NoControl - - - MiddleCenter - - - 159 - - - NoControl - - - True - - - NoControl - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - 167 - - - bnSwipeDown - - - pnlFull - - - 90 - - - 11 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 250 - - - pBProgram - - - NoControl - - - 0 - - - None - - - pnlMain - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 240 - - - 100, 20 - - - 39, 20 - - - NoControl - - - 351, 31 - - - Left Mouse Button - - - None - - - 167, 33 - - - None - - - 9, 108 - - - 2 - - - 7 - - - NoControl - - - pnlFull - - - NoControl - - - 255 - - - pnlSixaxis - - - 250 - - - NoControl - - - 14 - - - True - - - No - - - A Button - - - Flat - - - 115, 87 - - - 71, 89 - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabControls - - - 2 - - - gBLightbar - - - 7, 17 - - - NoControl - - - 2 - - - 164 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Flat - - - 3, 39 - - - MiddleCenter - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - NoControl - - - 9 - - - None - - - 6 - - - Up Button - - - Flat - - - R1 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 258 - - - 191 - - - 0 - - - Lower Right as RMB - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 10 - - - 391, 108 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 435, 29 - - - 101, 17 - - - True - - - Fall Back - - - NoControl - - - Right : - - - btnRumbleHeavyTest - - - NoControl - - - Fall Back - - - pnlFull - - - pnlSixaxis - - - 142, 17 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 71, 89 - - - tPController - - - Flat - - - % - - - pnlSticks - - - 84, 24 - - - bnOptions - - - tBShiftBlueBar - - - bnShiftGyroZN - - - 43, 12 - - - 10 - - - 20, 16 - - - cBLightbyBattery - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 15, 13 - - - pnlSticks - - - 325, 5 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 8, 8 - - - NoControl - - - 0 - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - StretchImage - - - R2 - - - Flat - - - Gyro - - - 84, 40 - - - True - - - 21, 13 - - - 11, 21 - - - - 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 - AElFTkSuQmCC - - - - 5 - - - 7 - - - 239 - - - 216 - - - 3 - - - None - - - pnlShiftMain - - - 52, 17 - - - 1 - - - 23, 11 - - - 168, 45 - - - False - - - System.Windows.Forms.FlowLayoutPanel, 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 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 7, 7 - - - 60, 50 - - - 44, 9 - - - 1 - - - 184 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - NoControl - - - Multitouch : - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - True - - - 7, 41 - - - btnLeftStick - - - 3, 49 - - - Flat - - - False - - - Flat - - - Flat - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabControls - - - NoControl - - - TopCenter - - - 192 - - - Idle Disconnect - - - Sixaxis Down - - - True - - - 36, 120 - - - bnShiftCross - - - 229 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - Tilt Right - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 6 - - - % - - - Square : - - - None - - - Tilt Up - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - cBlowerRCOn - - - 112, 9 - - - None - - - gBDeadzone - - - Sqaure : - - - gBTouchpad - - - gBOther - - - 175, 3 - - - NoControl - - - 55, 61 - - - 21 - - - 202 - - - 443, 85 - - - bnCross - - - fLPTiltControls - - - 14 - - - 9 - - - 3 - - - 21 - - - Zoom - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Flat - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 82 - - - 17 - - - $this - - - Sixaxis Down : - - - True - - - pnlSticks - - - 159 - - - True - - - gBDeadzone - - - System.Windows.Forms.PictureBox, 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 - - - bnLSDown - - - 1 - - - NoControl - - - gBLightbar - - - True - - - 84 - - - pnlFull - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - bnGyroZN - - - 890, 361 - - - Empty: - - - 91 - - - None - - - pnlMain - - - Flat - - - R2 : - - - 4, 22 - - - 183, 79 - - - 13, 23 - - - Flat - - - 44, 73 - - - Tilt Down - - - NoControl - - - 15, 13 - - - 158 - - - tPShiftMod - - - NoControl - - - 250 - - - Sixaxis Up : - - - 100, 17 - - - 49, 13 - - - NoControl - - - 0 - - - Stretch - - - bnLSLeft - - - 257 - - - NoControl - - - lbSATip - - - 1 - - - 202 - - - 7, 56 - - - 43, 15 - - - tBLowRedBar - - - gBLightbar - - - pnlShiftMain - - - NoControl - - - 226 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - nUDRS - - - 5 - - - 2 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - None - - - MiddleRight - - - fLPShiftTouchSwipe - - - NoControl - - - 55, 61 - - - cBFlushHIDQueue - - - fLPTouchSwipe - - - openFileDialog1 - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 159 - - - NoControl - - - 100, 20 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 49, 20 - - - True - - - 84, 40 - - - bnShiftRSDown - - - 348, 136 - - - 0, 1 - - - pnlShiftMain - - - lbShiftGryo - - - tBBlueBar - - - bnTriangle - - - 169 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - tPController - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 250 - - - 29, 13 - - - 17, 17 - - - 84, 25 - - - flushHIDQueue - - - 6 - - - 11, 15 - - - lbShiftBlue - - - bnTouchUpper - - - 5 - - - 7, 47 - - - 187 - - - 72, 219 - - - 0 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - NoControl - - - Left Y-Axis- - - - True - - - NoControl - - - 16, 17 - - - Upper Touch - - - 88, 47 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Click a part of the controller to change action -Click the lightbar for color picker - - - pnlMain - - - tBsixaxisGyroX - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 165, 92 - - - Swipe Right - - - 58, 17 - gBOther - - gBLightbar + + 0 - - tPController + + True - - 316, 17 - - - 11, 15 - - - 219 - - - Sixaxis Up : - - - btnLightbar - - - 11 - - - Sixaxis Left : - - - 190 - - - 34, 13 - - + NoControl - - 6 + + 329, 102 - + + Yes + + + 101, 17 + + + 256 + + + Use Dinput only + + + cBDinput + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 1 + + NoControl - - 80, 23 + + 189, 96 + + + 23, 23 + + + Zoom + + + 255 + + + pBProgram + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 2 + + + True + + + NoControl + + + 6, 96 + + + Yes + + + 107, 30 + + + 254 + + + Launch Program +with profile + + + cBLaunchProgram + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 3 + + + Zoom + + + MiddleRight + + + NoControl + + + 117, 98 + + + 67, 23 + + + 253 + + + Browse... + + + btnBrowse + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 4 + + + True + + + NoControl 7, 75 - - 11 + + 73, 13 - - 257 + + 252 - - 23, 11 + + Use Controller - - 80, 23 + + lbUseController - - 220 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlLowBattery + + gBOther - + + 5 + + + True + + + NoControl + + + 169, 17 + + + 120, 17 + + + 251 + + + Mouse Acceleration + + + cBMouseAccel + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 6 + + + 81, 73 + + + 29, 20 + + + 250 + + + nUDSixaxis + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 7 + + + True + + + NoControl + + + 117, 73 + + + Yes + + + 142, 17 + + + 242 + + + for Mapping and readout + + + cBControllerInput + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 8 + + + True + + + NoControl + + + 7, 45 + + + Yes + + + 100, 17 + + + 232 + + + Idle Disconnect + + + cBIdleDisconnect + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBOther + + + 10 + + + 445, 225 + + + 436, 132 + + + 247 + + + Other + + + gBOther + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 5 + + + True + + + NoControl + + + 8, 8 + + + 176, 17 + + + 226 + + + Use another color for shift mode + + + cBShiftLight + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShift + + + 0 + + + True + + + NoControl + + + 7, 33 + + + 31, 13 + + + 225 + + + Shift: + + + lbShift + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShift + + + 1 + + + True + + + NoControl + + + 57, 33 + + + 15, 13 + + + 158 + + + R + + + lbShiftRed + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShift + + + 2 + + + True + + + NoControl + + + 180, 33 + + + 15, 13 + + + 159 + + + G + + + lbShiftGreen + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShift + + + 3 + + + True + + + NoControl + + + 308, 33 + + + 14, 13 + + + 160 + + + B + + + lbShiftBlue + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShift + + + 4 + + + False + + + NoControl + + + 73, 31 + + + 100, 20 + + + 10 + + + tBShiftRedBar + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShift + + + 5 + + + False + + NoControl 196, 31 - - 7, 9 + + 100, 20 - - fLPShiftTouchSwipe + + 11 - - 23, 23 + + tBShiftGreenBar - - Double Tap - - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Flat - - - pnlFull - - - NoControl - - - gBDeadzone - - - pnlShiftMain - - - NoControl - - - None - - - Flat - - - cBIdleDisconnect - - - 151, 88 - - - 223, 19 - - - 200 - - - 57, 33 - - - 215 - - - NoControl - - - pnlMain - - - NoControl - - - False - - - 9 - - - 7, 41 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 49, 13 - - - 169 - - - Flat - - - 83 - - - pnlMain - - - bnSwipeRight - - - 7, 45 - - - False - - + System.Windows.Forms.TrackBar, 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 + + pnlShift - + + 6 + + + False + + NoControl - - 1 + + 325, 31 - + + 100, 20 + + + 12 + + + tBShiftBlueBar + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShift + + + 7 + + + 1, 41 + + + 435, 60 + + + 235 + + + False + + + pnlShift + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 0 + + + Flat + + NoControl - - gBTouchpad + + 344, 107 - - L2 : - - - 227 - - - Left Stick Left : - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + 13, 13 - + + 49 + + + False + + + btnChargingColor + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnShiftTouchLeft + + gBLightbar - - 188, 45 + + 1 - - 15, 13 + + True - - Use Dinput only + + NoControl - - 5, 17 + + 289, 105 + + + 49, 17 + + + 238 + + + Color + + + rBColor + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 2 + + + True + + + NoControl + + + 159, 105 + + + 51, 17 + + + 237 + + + Pulse + + + rBFade + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 3 + + + True NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 97, 105 + + + 58, 17 + + + 237 + + + Normal + + + rBNormal + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 4 + + + True + + + NoControl + + + 216, 105 + + + 67, 17 + + + 237 + + + Rainbow + + + rBRainbow + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 5 + + + True + + + NoControl + + + 9, 108 + + + 82, 13 + + + 236 + + + While Charging: + + + lbWhileCharging + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 6 + + + True + + + NoControl + + + 99, 17 + + + 15, 13 + + + 207 + + + % + + + lbPercentFlashBar + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 7 + + + 55, 16 + + + 43, 20 + + + 167 + + + nUDflashLED System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBLightbar + + + 9 + + + True + + + NoControl + + + 9, 17 + + + 44, 13 + + + 207 + + + Flash at + + + lbFlashAt + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 13 + + + 443, 85 + + + 439, 129 + + + 247 + + + Lightbar + + + gBLightbar + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 3 + + + True + + + NoControl + + + 91, 16 + + + 15, 13 + + + 207 + + + % + + + lbPercentRumble + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBRumble + + + 0 + + + NoControl + + + 75, 39 + + + 72, 23 + + + 214 + + + Test Light + + + btnRumbleLightTest + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBRumble + + + 1 + + + 445, 12 + + + 150, 67 + + + 247 + + + Rumble + + + gBRumble + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 2 + + + True + + + NoControl + + + 168, 16 + + + 49, 13 + + + 197 + + + Sixaxis X + + + lbSixaxisX + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBDeadzone + + + 2 + + + True + + + NoControl + + + 168, 45 + + + 49, 13 + + + 197 + + + Sixaxis Z + + + lbSixaxisZ + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBDeadzone + + + 3 + + + 223, 43 + + + No + + + 49, 20 + + + 203 + + + nUDSZ + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + gBDeadzone - - 161 + + 6 - - lbL2Track + + 223, 15 - - lbFlashAt + + 49, 20 - - 166 + + 202 - - 14 + + nUDSX - - gBRumble - - - 36, 120 - - - 5 - - - pBController - - - Right Mouse Button - - - 71 - - - True - - - gBTouchpad - - - pnlShiftMain - - - 249, 137 - - - 5, 88 - - - Flush HID - - - - 5 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 25, 35 - - - 89, 3 - - - tBShiftRedBar - - - 325, 4 - - - 169, 17 - - - 207 - - - gBDeadzone - - - NoControl - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - bnRight - - - gBOther - - - 175, 13 - - - btnShiftLeftStick - - - True - - - gBTouchpad - - - bnShiftOptions - - - Right Bumper - - - 7, 33 - - - cBTouchpadJitterCompensation - - - Touchpad -Swipes: - - - NoControl - - - False - - - 72, 185 - - - Test Light - - - cBScroll - - - pnlShiftSticks - - - 23, 23 - - - 5 - - - pnlSticks - - - 436, 242 - - - 89 - - - 0 - - - Right Stick - - - gBOther - - - gBDeadzone - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - None - - - Yes - - - bnL3 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - 73, 17 - - - pnlShiftMain - - - 255 - - + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 224 + + gBDeadzone - - 173, 61 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - pnlShift - - + 8 - - gBOther + + 601, 11 - - pnlShiftMain + + 281, 67 - - 3, 3 + + 248 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Deadzone - - bnUp + + gBDeadzone - - 9, 9 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 158 - - - 100, 20 - - - Sixaxis Right : - - - None - - - nUDScroll - - - Sixaxis Left - - - 84, 7 - - - L2 - - - 40, 13 - - - NoControl - - - pnlFull - - - NoControl - - - pnlMain - - - 1 - - - bnTouchRight - - + $this - - 72, 185 + + 1 - - gBLightbar - - - pnlMain - - - NoControl - - - lbLowRed - - - 300, 88 - - - Left : - - - 2 - - - 73 - - - 428, 216 - - - 10 - - - 191 - - + + 153, 17 + + False - - 181 - - - 23, 11 - - - 3 - - - btnSATrack - - - No - - - fLPTouchSwipe - - - 2 - - - Flat - - - lbButtonMouseSens - - - 216 - - - 216 - - - Share : - - - 88 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - + NoControl - - True + + 71, 25 + + + 49, 19 + + + 219 + + + tBsixaxisAccelX + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSixaxis + + + 0 True - - True + + NoControl - - 49, 19 + + 81, 4 - + + 34, 13 + + + 215 + + + Accel + + + lb6Accel + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSixaxis + + + 1 + + False - - 166 - - - lbR2 - - - 81 - - - 49 - - + NoControl - - 7 + + 3, 24 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 49, 19 - - 170 + + 222 - - bnLSUp + + tBsixaxisGyroX - + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSixaxis + + + 2 + + + True + + NoControl - - 87 - - - NoControl - - - 7 - 13, 5 - - 329, 102 + + 29, 13 - - 15 + + 216 - - Flat + + Gyro - - 100, 20 + + lb6Gryo - - pnlShiftMain + + 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 + + pnlSixaxis - - pnlSticks - - - 225 - - + 3 - - tPControls + + False + + + NoControl + + + 3, 49 + + + 49, 19 + + + 221 + + + tBsixaxisGyroY + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSixaxis + + + 4 + + + False + + + NoControl + + + 3, 79 + + + 49, 19 + + + 220 + + + tBsixaxisGyroZ + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSixaxis + + + 5 + + + False + + + NoControl + + + 72, 49 + + + 49, 19 + + + 218 + + + tBsixaxisAccelY + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSixaxis + + + 6 + + + False + + + NoControl + + + 71, 79 + + + 49, 19 + + + 217 + + + tBsixaxisAccelZ + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSixaxis + + + 7 + + + 300, 88 + + + 125, 125 + + + 236 + + + False + + + pnlSixaxis + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPController + + + 0 + + + True + + + NoControl + + + 316, 33 + + + 19, 13 + + + 216 + + + L2 + + + MiddleCenter + + + lbL2Track + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPController + + + 1 + + + NoControl + + + 112, 9 + + + 9, 9 + + + 243 + + + pBDelayTracker + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPController + + + 2 + + + False + + + Popup + + + NoControl 361, 151 - + + 3, 3 + + + 237 + + + button1 + + + btnSATrack + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPController + + + 3 + + + False + + + Popup + + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 211, 149 - - 5 + + 3, 3 - - btnLSTrack + + 237 - - 139, 40 + + button1 - - None + + btnRSTrack - - None + + System.Windows.Forms.Button, 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 + + tPController - - NoControl - - + 4 - - gBRumble - - - pnlShift - - - None - - - pnlShiftSticks - - - 96, 96 - - - None - - - MiddleCenter - - - pnlShift - - + NoControl - - None - - - 5, 221 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlShift - 151, 56 125, 31 - - 91 + + 216 - - lbGreen + + Right Stick - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleCenter - - 31, 61 + + lbRSTip - - False - - - NoControl - - - bnShiftL3 - - - Fall Back - - - Share : - - - nUDSZ - - - 175, 3 - - - Fall Back - - - Lightbar - - - Back - - - Yes - - - label2 - - - 49, 20 - - - 39, 13 - - - Flat - - - Flat - - - True - - - True - - - lbHold - - - rBNormal - - - Scroll - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Right : - - - Left : - - - None - - - 89, 3 - - - 162 - - - Circle : - - - While Charging: - - - Triangle : - - - 14 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Options : - - - Down : - - - Sixaxis Gyro: - - - 1 - - - 43, 20 - - - 203 - - - 19, 13 - - - button1 - - - Flat - - - 9 - - - 196 - - - 365, 3 - - - 250 - - - pnlShift - - - bnRSRight - - - 1, 41 - - - Up - - - $this - - - 49, 20 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlSticks - - - pnlSixaxis - - - 250 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlMain - - - lbPercentRumble - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 20, 16 - - - tPControls - - - bnShiftLSLeft - - - bnShiftSwipeUp - - - Flat - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 208, 60 - - - L3 : - - - Swipe Up - - - Right Stick Up : - - - 0 - - - gBOther - - - 255 - - - tPControls - - - True - - - 12 - - - 257, 7 - - - Left Stick Left : - - - 245, 132 - - - True - - - Right Button - - - 67, 13 - - - None - - - NoControl - - - tPShiftMod - - - NoControl - - - 247 - - - bnShiftPS - - - lbControlTip - - - Fall Back - - - fLPTiltControls - - - 168, 16 - - - No - - - 8 - - - 10 - - - gBLightbar - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Right Y-Axis- - - - 256 - - - False - - - 151, 89 - - - 2 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - 192 - - - True - - - 31, 31 - - - bnSwipeUp - - - 10 - - - Fall Back - - - 253 - - - 207 - - + tPController - - Jitter Compensation - - - gBTouchpad - - - bnShiftRSUp - - - Right Stick Down : - - - pnlShiftMain - - - pnlMain - - - pnlSticks - - - 214 - - - 0 - - - 44, 13 - - + 5 - - 184 + + True - - 49, 17 - - - pBShiftController - - - pnlLowBattery - - - 91 - - - 7 - - - 9, 9 - - - 172 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - None - - - Controls - - - Fall Back - - + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7, 7 - + + 100, 13 + + + 216 + + + Input Delay: N/Ams + + + MiddleCenter + + + lbInputDelay + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fall Back + + tPController - - 80, 23 + + 6 + + + True + + + NoControl + + + 385, 33 + + + 21, 13 + + + 216 + + + R2 + + + MiddleCenter + + + lbR2Track + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPController + + + 7 + + + NoControl + + + 7, 56 + + + 125, 31 + + + 216 + + + Left Stick + + + MiddleCenter + + + lbLSTip + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPController + + + 8 + + + NoControl + + + 300, 56 + + + 125, 31 + + + 216 + + + Sixaxis: X axis is flipped for easier reading + + + MiddleCenter + + + lbSATip + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPController + + + 9 + + + False + + + Popup + + + NoControl + + + 67, 149 + + + 3, 3 + + + 237 button1 - - 180, 9 + + btnLSTrack - - No - - - 248 - - - None - - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + tPController - - NoControl - - - 219, 25 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - StretchImage - - - True - - - NoControl + + 10 @@ -3275,1415 +3149,177 @@ Swipes: AElFTkSuQmCC - - 3 - - - lBShiftControls - - - 3, 3, 3, 3 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + NoControl - - Options + + 348, 136 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 31, 31 - - 191 + + StretchImage - - Flat + + 242 - - None + + pBSADeadzone - - None - - - Left Stick Up : - - - 79, 19 - - - LS - - - None - - - 197 - - - 4 - - - 117, 98 - - - lbInputDelay - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Flat - - - 15, 13 - - - pnlSticks - - - NoControl - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 249, 137 - - - False - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 80, 23 - - - NoControl - - - Fall Back - - - None - - - 171 - - - NoControl - - - 3 - - - 3 - - - NoControl - - - False - - - 73, 13 - - - 23, 23 - - - 19, 17 - - - 15, 13 - - - 256 - - - tBR2 - - - MiddleCenter - - - Accel - - - Left Stick Right : - - - 5 - - - Slide - - - Full: - - - NoControl - - - NoControl - - - None - - - 183, 116 - - - System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - fLPTiltControls - - - PS : - - - 29, 20 - - - True - - - rBFade - - - 11, 21 - - - NoControl - - - True - - - 2 - - - NoControl - - - 84, 25 - - - pnlMain - - - nUDRainbow - - - Left X-Axis- - - - lbShiftRed - - - bnShiftTouchMulti - - - Flat - - - Flat - - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - bnShiftR1 - - - 14, 13 - - - True - - - 217 - - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - label1 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlMain - - - None - - - 254 - - - NoControl - - - 11, 23 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Right Stick Left : - - - 12 - - - 3, 3 - - - cBTPforControls - - - 40, 20 - - - 36, 92 - - - 0 - - - 31, 0 - - - 125, 125 - - - 97, 105 - - - NoControl - - - False - - - pnlShiftSticks - - - 5 - - - NoControl - - - bnSquare - - - 0 - - - 175, 0 - - - 79, 16 - - - cBSlide - - - bnShare - - - Share - - - 44, 73 - - - Triangle - - - True - - - Circle - - - Square - - - 0 - - - Cross - - - 5, 221 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pBShiftSticks - - - Left - - - 0, 0 - - - 0 - - - 171 - - - lbLowGreen - - - 230 - - - Fall Back - - - 209, 20 - - - 1 - - - <- Back to full view - - - None - - - True - - - pnlShiftMain - - - 428, 216 - - - 7, 7 - - - NoControl - - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Up : - - - Use another color for shift mode - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - NoControl - - - R2 - - - Left Stick Down : - - - fLPShiftTouchSwipe - - - 21, 92 - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - bnRSDown - - - bnRSLeft - - - R2 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 181, 16 - - - Fall Back - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 168 - - - 6 - - - Sixaxis Right - - - gBDeadzone - - - 6 - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - bnDown - - - NoControl - - - 11, 17 - - - pnlMain - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 4 - - - 11 - - - 67, 17 - - - 4 - - - tPController - - - gBTouchpad - - - LS - - - B - - - NoControl - - - 21, 92 - - - B - - - 167, 33 - - - 73 - - - 16 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - 10 - - - 1 - - - tPShiftMod - - - 209, 92 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 250 - - - 245, 132 - - - Sixaxis: X axis is flipped for easier reading - - - pnlShiftMain - - - Right Stick Up : - - - 100, 13 - - - bnShiftSwipeRight - - - 125, 125 - - - Color by Battery % - - - 183, 92 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Flat - - - gBRumble - - - pnlMain - - - 243 - - - Flat - - - 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 - - - True - - - 164, 19 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - 3, 3, 3, 3 - - - <- Back to full view - - - pnlShiftSticks - - - lbRS - - - lbLSTrack - - - 0 - - - 193 - - - 241 - - - Left Stick - - - NoControl - - - Flat - - - 187, 76 - - - True - - - 250 - - - NoControl - - - Input Delay: N/Ams - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 13 - - - tPShiftMod - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlSticks - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 25, 35 - - - 1 - - - 29, 13 - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 4 - - - Right Stick Right : - - - Right Touch : - - - 223, 43 - - - nUDSX - - - Use Controller - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Browse... - - - 3, 79 - - - 43, 14 - - - 80 - - - 40, 13 - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tBRedBar - - - btnShiftRightStick - - - False - - - Yes - - - 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 - - - 160 - - - 238 - - - gBLightbar - - - tPController - - - NoControl - - - Options : - - - Y Button - - - Start with Slide/Scroll off - - - System.Windows.Forms.Label, 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 - - - tPController - - - 22, 13 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 71, 25 - - - 3 - - - gBLightbar - - - Stretch - - - NoControl - - - NoControl - - - L2 : - - - None - - - 187, 76 - - - 3, 3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 60, 19 - - - 253 - - - NoControl - - - 10 - - - 261, 3 - - - NoControl - - - bnShiftSquare - - - 4 - - - 3 - - - None - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - bnTouchMulti - - - tPShiftMod - - + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBOther + + tPController - + + 11 + + + + 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 + AElFTkSuQmCC + + + NoControl - - fLPShiftTiltControls + + 207, 145 - - False + + 9, 9 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + StretchImage 241 - - Left X-Axis+ - - - pnlMain - - - gBTouchpad - - - lbWhileCharging - - - 237 - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 125, 31 - - - 175, 3 - - - System.Windows.Forms.Button, 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 - - - Multitouch - - - 13, 23 - - - Right - - - Flat - - - 169, 173 - - - 1 - - - 31, 33 - - - Triangle : - - - 207 - - - Fall Back - - - 4, 22 - - - Middle Mouse Button - - - 74 - - + False - + + pBRSDeadzone + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tPController - - 99, 96 - - - 325, 31 - - - 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 - - - True - - - 4 - - - gBDeadzone - - - 218 - - - 19 - - - cBTap - - - True - - - 193 - - - nUDLS - - - Vertical - - - 6 - - - 17 - - - 20 - - - NoControl - - - No - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tBsixaxisGyroZ - - - 11, 23 - - - None - - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Down Button - - - 2 - - - 145, 21 - - - pnlShiftMain - - - 105, 20 - - - cBDoubleTap - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + 12 - - 31, 33 - - - 14 - - - 166 - - - 180 - - - Yes - - - 86 - - - 151, 89 - - - 11, 23 - - - 209, 92 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + NoControl - - 250 + + 151, 88 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 125, 125 - - 188 + + 239 - - Shift Modifier + + TopCenter - - 44, 48 + + lbRSTrack - - tPControls - - - NoControl - - - 2 - - - Left Trigger - - - True - - - NoControl - - - StretchImage - - - 23, 33 - - - 9 - - - 59, 26 - - - NoControl - - - 3 - - - NoControl - - - True - - - NoControl - - - True - - - NoControl - - - bnShiftLSRight - - - btnRightStick - - - Sixaxis Down : - - - 139, 40 - - - 71 - - - 2 - - - None - - - PS - - - 13 - - - Flat - - - True - - - bnGyroXN - - - None - - - gBOther - - - 84 - - - None - - - None - - - lbGryo - - - 7 - - - 15, 13 - - - 72, 23 - - - None - - - 44, 7 - - - B - - - NoControl - - - 163 - - - NoControl - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 59, 26 - - - bnShiftLSUp - - - True - - - X Button - - - Right X-Axis+ - - - 9, 9 - - - lbRed - - - tBLowGreenBar - - - 150, 67 - - - 3 - - - 80, 23 - - - Flat - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 351, 31 - - - 6 - - - bnR1 - - - 59, 13 - - - 12 - - - Lightbar - - - Flat - - - NoControl - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - btnShiftFullView - - - nUDR2 - - - 165 - - - 436, 132 - - - Touchpad - - - Flat - - - bnShiftSwipeDown - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 157 - - - pnlShiftSticks - tPController - - 190 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 11, 23 - - - L2 - - - Right Touch : - - - lb6Accel - - - 336, 105 - - - NoControl - - - 7 - - - 250 - - - Normal - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - L1 : - - - Sixaxis Left : - - - 23, 33 - - - 0 - - - 17, 17 - - - Tilt Down + + 13 @@ -4773,2402 +3409,3766 @@ Swipes: AElFTkSuQmCC - - None - - - 28, 28 - - + NoControl - - 36, 77 + + 63, 145 - - pnlShiftMain + + 9, 9 - - None - - - 206 - - - NoControl - - - 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 - - - Left Bumper - - - Right Y-Axis+ - - - 1 - - - Options - - - bnShiftGyroXP - - - 71, 33 - - - Fall Back - - - 211, 149 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 22 - - + StretchImage - - 49, 20 + + 240 - - 23, 23 - - - 15, 13 - - - MiddleCenter - - - nUDSixaxis - - - 25, 49 - - - Mouse Sensitivity: - - - lbShift - - - Fall Back - - - pnlLowBattery - - - pnlMain - - - gBDeadzone - - - StretchImage - - - secs/cycle - - - L3 : - - - Sixaxis X - - - bnShiftTriangle - - - 57, 7 - - - gBOther - - - btnBrowse - - - NoControl - - - Flat - - - nUDL2 - - - Flat - - - 300, 88 - - - 43, 12 - - - 223 - - - NoControl - - - bnShiftR3 - - - 19, 17 - - - 73, 31 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - 1 - - - pnlLowBattery - - - 15 - - - NoControl - - - 8 - - - 40, 20 - - - NoControl - - - 11 - - - lbLSTip - - - 107, 30 - - - NoControl - - - tPShiftMod - - - 31, 15 - - - tBL2 - - - 10 - - - NoControl - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 72, 49 - - - Touchpad (not clicked in) - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - L3 - - - bnShiftGyroXN - - - 246 - - - 254 - - - 237 - - - Sixaxis Gyro: - - - nUDTouch - - - tPControls - - - 18 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - bnRSUp - - - 10 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 7, 41 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + False - - 125, 31 + + pBLSDeadzone - - 10 + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + tPController - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 14 - - 0 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBLightbar - - - $this - - - 111, 15 - - - True - - - 11, 23 - - - 16, 17 - - - 89, 3 - - - Swipe Down - - - RS - - - 45, 17 - - - True - - - MiddleCenter - - - 4 - - - 0 - - - 1 - - - 105, 23 - - - 12, 12 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - numUDMouseSens - - - 4 - - - Flat - - - pnlShiftSticks - - - 117, 73 - - - 169, 173 - - - 3, 24 - - + NoControl - - bnLeft + + 5, 88 - - nUDTap - - - 15, 12 - - - NoControl - - - lbIdleMinutes - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 125, 125 239 - - 31, 0 + + TopCenter - - 203 + + lbLSTrack - - 3, 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 - - - 261, 3 - - - button1 - - - NoControl - - - 3 - - - Down - - - NoControl - - - None - - - 31, 61 - - - Swipe Up - - - 115, 30 - - - 1 - - + tPController - - 176, 17 + + 15 - - Fall Back - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlShift - - - (nothing)/shift off - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 67, 23 - - - 7 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False False - + NoControl - - 23, 23 + + 365, 3 - - 74 + + Vertical - - 15 + + Yes - - 167 + + 25, 49 - - 208, 60 + + 244 - - 49 + + tBR2 - - pnlShiftMain + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Controller Readings + + tPController - - 23, 11 + + 16 - - 88, 17 + + False - - 163 + + False - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 81 + + 331, 3 - - pnlShiftSticks + + Vertical - - 239 + + Yes - - 6 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - None - - - Flat - - - 67, 149 - - - pnlMain - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Flat - - - 13, 13 - - - 183, 116 - - - Left Stick - - - 19, 13 - - - Swipe Right - - - 308, 7 - - - pnlShift + + True 25, 49 - + + 244 + + + tBL2 + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPController + + + 17 + + NoControl - - Down : + + 300, 88 - - False + + 125, 125 - - Profile Options + + 239 + + + TopCenter + + + lbSATrack + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPController + + + 18 + + + 4, 22 + + + 3, 3, 3, 3 + + + 428, 216 + + + 2 + + + Controller Readings + + + tPController + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControls + + + 2 + + + True + + + NoControl + + + 5, 221 + + + 59, 26 + + + 257 + + + Touchpad +Swipes: + + + label2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 0 + + + NoControl + + + 3, 3 + + + 80, 23 + + + 250 + + + Swipe Up + + + bnShiftSwipeUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPShiftTouchSwipe + + + 0 + + + NoControl + + + 89, 3 + + + 80, 23 + + + 250 + + + Swipe Down + + + bnShiftSwipeDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPShiftTouchSwipe + + + 1 + + + NoControl + + + 175, 3 + + + 80, 23 + + + 250 + + + Swipe Left bnShiftSwipeLeft - - cBControllerInput + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pBSADeadzone + + fLPShiftTouchSwipe - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - + NoControl - - Fall Back + + 261, 3 - - 221 + + 80, 23 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - None - - - 9 - - - 23, 11 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - None - - - NoControl - - - lbR2Track - - - 1 - - - Popup - - - StretchImage - - - 82, 17 - - - Fall Back - - - 85 - - - 26, 13 - - - 49, 20 - - - 43, 15 - - - 109, 16 - - - cBDinput - - - Flat - - - 196, 4 - - - NoControl - - - 11 - - - NoControl - - - 13 - - + 250 - - 232 + + Swipe Right - - 357, 73 + + bnShiftSwipeRight - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPShiftTouchSwipe + + + 3 + + + 72, 219 + + + 351, 31 + + + 258 + + + fLPShiftTouchSwipe + + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 1 + + + True + + NoControl - - No + + 5, 192 - - Flat + + 67, 13 - - LS + + 255 - - 3, 3 + + Sixaxis Gyro: - - 9 + + lbShiftGryo - - 175, 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlSticks + + tPShiftMod - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 161 + + NoControl - - 173, 61 - - + 3, 3 80, 23 - - 351, 31 - - - Sixaxis Right : - - - NoControl - - - NoControl - - - 160 - - - lbLS - - - System.Windows.Forms.Label, 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 - - - 82 - - - Right Touch - - - None - - - tPControls - - - tPController - - - 8 - - - NoControl - - - 8 - - + 250 - - lowColorChooserButton + + Tilt Up - - 28, 28 + + bnShiftGyroZN - - Flat - - - 222 - - - 99, 17 - - - NoControl - - - True - - - bnR2 - - - fLPTiltControls - - - NoControl - - - NoControl - - - lbPercentFlashBar - - - Flash at - - - 16, 16 - - - Flat - - - 23, 11 - - - 71, 23 - - - 189 - - - to use these controls - - - 0, 0 - - - 5 - - - 3 - - - 188, 45 - - - tPController - - - tPShiftMod - - - 167 - - - 43, 15 - - - Fall Back - - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - None - - - False - - - Flat - - - bnShiftDown - - - None - - - tPController - - - Vertical - - - 216 - - - tPController - - - 43, 15 - - - 231 - - - True - - - 3 - - - NoControl - - - 15, 15 - - - 445, 225 - - - None - - - 9 - - - 172 - - - False - - - 435, 106 - - - 190 - - - gBLightbar - - - Launch Program -with profile - - - 75, 39 - - - 31, 13 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 4 - - - lbBlue - - - 36, 77 - - - Flat - - - pnlShiftSticks - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lb6Gryo - - - 4 - - - 237 - - + fLPShiftTiltControls - - Flat - - - Yes - - - 11, 17 - - - 2 - - - 256 - - - 6, 96 - - - 4 - - - 92, 13 - - - 83 - - - NoControl - - - 2 - - - fLPShiftTiltControls - - - 87 - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - bnShiftRSRight - - + 0 - - Fall Back - - - tPController - - - 49, 19 - - - None - - + NoControl - - 196 + + 89, 3 - - Swipe Down - - - True - - - Flat - - - 183, 92 - - - 165, 92 - - - 3, 3 - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - bnShiftGyroZP - - - tPShiftMod - - - Swipe Left - - - 228 - - - 67, 13 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 247 - - - 250 - - - pnlSixaxis - - - lbFull - - - lbShiftGreen - - - tPControls - - - gBTouchpad - - - 13 - - - pnlShiftMain - - - 100, 20 - - - NoControl - - - No - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gBTouchpad - - - pnlMain - - - 1, 41 - - - 65, 92 - - - pnlLowBattery - - - False - - - lbUseController - - - 226 - - - pnlLowBattery - - - 0 - - - pnlSixaxis - - - 57, 9 - - - 236 - - - RS - - - NoControl - - - NoControl - - - 601, 11 - - - Flat - - - NoControl - - - 164 - - - PS : - - - 12, 79 - - - Fall Back - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - rBColor - - - Fall Back - - - Fall Back - - - 6 - - - fLPTiltControls - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11 - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 197 - - - Flat - - - 4 - - - NoControl - - - 435, 29 - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPShiftTouchSwipe - - - 316, 33 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Cross : - - - 253 - - - Test Heavy - - - bnLSRight - - - Fall Back - - - btnFullView - - + 80, 23 - - None - - - 124, 17 - - - 73, 5 - - - pnlLowBattery - - - gBDeadzone - - - R3 : - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Yes - - - Right Stick Down : - - - 233 - - - None - - - pnlFull - - - NoControl - - - 906, 400 - - - pBDelayTracker - - - NoControl - - - 115, 87 - - - Cross : - - - Tilt Right - - - 49, 19 - - - 82, 13 - - - pnlMain - - - tPController - - - pnlLowBattery - - - 111, 43 - - - False - - - 249, 143 - - - 1 - - - gBLightbar - - - NoControl - - - 11, 23 - - - 85 - - - Flat - - - pBRSDeadzone - - - 0, 1 - - - lbEmpty - - - 80, 23 - - - Color - - - gBOther - - - tPControls - - - True - - - 106, 50 - - - None - - - 79, 16 - - - 163, 47 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 31, 13 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - 1 - - - gBDeadzone - - - 1 - - - 207, 145 - - - Flat - - - 90 - - - 435, 60 - - - 24, 5 - - - 3 - - - Zoom - - - 18 - - - 43, 20 - - - pBSticks - - - 7 - - - None - - - Tap - - - 3, 251 - - - StretchImage - - - R3 : - - - DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.155.0, Culture=neutral, PublicKeyToken=null - - - 28, 13 - - - None - - - cBShiftControl - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 14, 13 - - - NoControl - - - True - - - tPShiftMod - - - 31, 13 - - - 44, 48 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - bnShiftL1 - - - 71, 9 - - - pnlMain - - - 7 - - - bnL1 - - - 216 - - - pnlShiftMain - - - 79, 3 - - - gBLightbar - - - Lightbar - - - NoControl - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 71, 33 - - - False - - - B Button - 250 - - NoControl + + Tilt Down - - 201 + + bnShiftGyroZP - - NoControl - - - 49, 20 - - - bnSwipeLeft - - - 180, 33 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - bnShiftTouchUpper - - - btnShiftLightbar - - - R3 - - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + fLPShiftTiltControls + + + 1 + + + NoControl + + + 175, 3 + + + 80, 23 + + + 250 + + + Tilt Left + + + bnShiftGyroXP + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + fLPShiftTiltControls - - 7, 41 + + 2 - + NoControl 261, 3 - - tPControls + + 80, 23 - + + 250 + + + Tilt Right + + + bnShiftGyroXN + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 86 - - - 281, 67 - - - 15, 13 - - - pnlSticks - - - Flat - - - R - - - NoControl - - - L1 : - - - 18 - - - NoControl - - - tBsixaxisAccelZ - - - Circle : - - - Tilt Up - - - 203 - - - 4 - - - cBLaunchProgram - - - NoControl - - - 216 - - - pnlShiftMain - - - gBLightbar - - - pnlShiftMain - - - 8, 50 - - - 428, 216 - - - 2 - - - gBLightbar - - - cbStartTouchpadOff - - - Sixaxis Z - - - 7 - - - bnShiftLSDown - - - 28, 28 - - - Guide - - - Flat - - - pnlShift - - - tPShiftMod - - - Flat - - - lbSixaxisX - - - Fall Back - - - True - - - Rainbow - fLPShiftTiltControls - - 0 - - - 16 - - - False - - - True - - - NoControl - - - 247 - - - Mouse Acceleration - - - 165 - - - 4 - - - Flat - - - NoControl - - - MiddleCenter - - - 109, 40 - - - pnlMain - - - bnTouchLeft - - - R2 : - - - pnlSixaxis - - - pnlSticks - - - 4 - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 234 - - - 175, 13 - - - pnlMain - - - TopCenter - - - 91 - - - lbRSTip - - - 244 - - - True - - - gBTouchpad - - - tabControls - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 12 - - - 5, 192 - - - 232 - - - 1 - - - pnlShiftMain - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 5 - - - G - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 6 - - - 308, 9 - - - 8 - - - NoControl - - - tBsixaxisAccelY - - - pnlShiftSticks - - - cBShiftLight - - - 80, 23 - - - 12 - - + 3 - - 197 + + 72, 185 - - 439, 129 + + 351, 31 - - NoControl + + 256 - - tBShiftGreenBar + + fLPShiftTiltControls - - 6 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl - - - 118, 17 - - - 250 - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - nUDIdleDisconnect - - - pnlSticks - - - Left Touch : - - - tBsixaxisAccelX - - - pnlShiftMain - - - 89 - - - 160 - - - gBOther - - - 63, 145 - - - Yes - - - Up : - - - bnGyroZP - - - pnlMain - - - 5, 192 - - - 49, 17 - - - 100, 20 - - - Left Mouse Button - - - 158 - - - 180, 7 - - - Fall Back - - - 12, 12 - - - 8 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tBsixaxisGyroY - - - 11 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 159, 17 - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlShiftSticks - - - 225 - - - 73, 4 - - - None - - - 9, 17 - - - 237 - - - 189, 96 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 17 - - - 445, 12 - - + tPShiftMod - - 197 + + 3 - - True + + (nothing)/shift off - - Swipe Left + + Cross - - StretchImage + + Circle - - pnlShiftSticks + + Square - - tPController + + Triangle - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Options - - 49, 19 + + Share - - Flat + + Up - - 185 + + Down - - R1 : + + Left - - fLPShiftTouchSwipe + + Right - - NoControl - - - 315, 36 - - - 16 - - - 2 - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PS L1 - - 385, 33 + + R1 - - None + + L2 - - 12 + + R2 - - MiddleCenter + + L3 - - 8 + + R3 - - Fade in and out + + Left Touch - - 49, 20 + + Upper Touch - - G + + Multitouch - - 15 - - - Hold - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11 - - - gBOther - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 111, 17 - - - 80, 23 - - - 3 - - - NoControl - - - 2 - - - 99, 17 - - - R - - - 3 - - - 79, 19 - - - nUDflashLED - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Yes - - - 168 - - - pnlFull - - - 80 - - - 120, 17 - - - True - - - NoControl - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - Shift: - - - Flat - - - 263, 105 - - - 300, 56 - - - 252 - - - tPController - - - Flat - - - tPController - - - R - - - gBLightbar - - - pnlSixaxis - - - pnlShiftMain - - - True - - - 1, 72 - - - 100, 20 - - - 36, 92 - - - 244 - - - 15, 15 - - - 142, 17 - - - False - - - 14, 13 - - - nUDRumbleBoost - - - None - - - 21, 13 - - - 251 - - - 20, 13 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 5 - - - bnPS - - - 91 - - - bnGyroXP - - - 175, 3 - - - for Mapping and readout - - - rBRainbow - - - 125, 125 - - - 196, 5 - - - 80, 23 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 23, 11 - - - Flat - - - tPController - - - Upper Touch : - - - gBOther - - - Right Stick Right : - - - 192 - - - NoControl - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - None - - - gBOther - - - 23, 11 - - - bnShiftLeft - - - Deadzone - - - 109, 44 - - - 4, 20 - - - 22 + + Right Touch Sixaxis Up - - fLPShiftTiltControls + + Sixaxis Down + + + Sixaxis Left + + + Sixaxis Right + + + Touchpad (not clicked in) + + + 79, 3 + + + 145, 21 + + + 192 + + + cBShiftControl + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 4 + + + Cross : + + + Circle : + + + Sqaure : + + + Triangle : + + + Options : + + + Share : + + + Up : + + + Down : + + + Left : + + + Right : + + + PS : + + + L1 : + + + R1 : + + + L2 : + + + R2 : + + + L3 : + + + R3 : + + + Left Touch : Upper Touch : + + Multitouch : + + + Right Touch : + + + Left Stick Up : + + + Left Stick Down : + + + Left Stick Left : + + + Left Stick Right : + + + Right Stick Up : + + + Right Stick Down : + + + Right Stick Left : + + + Right Stick Right : + + + Sixaxis Up : + + + Sixaxis Down : + + + Sixaxis Left : + + + Sixaxis Right : + + + 257, 7 + + + 169, 173 + + + 188 + + + lBShiftControls + + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 5 + + + True + + + NoControl + + + 44, 7 + + + 29, 13 + + + 189 + + + Hold + + + MiddleCenter + + + lbHold + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 6 + + + True + + + NoControl + + + 84, 24 + + + 105, 13 + + + 189 + + + to use these controls + + + MiddleCenter + + + lbtoUse + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 7 + + + Stretch + + + False + + + NoControl + + + 0, 0 + + + 245, 132 + + + StretchImage + + + 1 + + + pBShiftController + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 0 + + + None + + + Flat + + + NoControl + + + 84, 25 + + + 79, 16 + + + 193 + + + Fall Back + + + bnShiftTouchUpper + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 1 + + + None + + + Flat + + + NoControl + + + 84, 40 + + + 25, 35 + + + 191 + + + Fall Back + + + bnShiftTouchLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 2 + + + None + + + Flat + + + NoControl + + + 139, 40 + + + 23, 33 + + + 190 + + + Fall Back + + + bnShiftTouchRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 3 + + + None + + + Flat + + + NoControl + + + 109, 40 + + + 31, 33 + + + 192 + + + Fall Back + + + bnShiftTouchMulti + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 4 + + + None + + + Flat + + + NoControl + + + 175, 13 + + + 43, 15 + + + 87 + + + Fall Back + + + bnShiftR1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 5 + + + None + + + Flat + + + NoControl + + + 187, 76 + + + 19, 17 + + + 74 + + + Fall Back + + + bnShiftCross + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 6 + + + None + + + Flat + + + NoControl + + + 208, 60 + + + 16, 17 + + + 71 + + + Fall Back + + + bnShiftCircle + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 7 + + + None + + + Flat + + + NoControl + + + 151, 89 + + + 28, 28 + + + 91 + + + RS + + + btnShiftRightStick + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + pnlShiftMain - - 31, 44 + + 8 - + + None + + + Flat + + NoControl - + + 173, 61 + + + 15, 15 + + + 72 + + + Fall Back + + + bnShiftSquare + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 9 + + + None + + + Flat + + + NoControl + + + 84, 7 + + + 79, 19 + + + 91 + + + Lightbar + + + btnShiftLightbar + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 10 + + + None + + + Flat + + + NoControl + + + 188, 45 + + + 20, 16 + + + 73 + + + Fall Back + + + bnShiftTriangle + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 11 + + + None + + + Flat + + + NoControl + + + 44, 48 + + + 11, 15 + + + 80 + + + Fall Back + + + bnShiftUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 12 + + + None + + + Flat + + + NoControl + + + 71, 89 + + + 28, 28 + + + 91 + + + LS + + + btnShiftLeftStick + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 13 + + + None + + + Flat + + + NoControl + + + 44, 73 + + + 12, 12 + + + 81 + + + Fall Back + + + bnShiftDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 14 + + + None + + + Flat + + + NoControl + + + 31, 0 + + + 43, 12 + + + 90 + + + Fall Back + + + bnShiftL2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 15 + + + None + + + Flat + + + NoControl + + + 55, 61 + + + 15, 15 + + + 82 + + + Fall Back + + + bnShiftRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 16 + + + None + + + Flat + + + NoControl + + + 175, 0 + + + 40, 13 + + + 89 + + + Fall Back + + + bnShiftR2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 17 + + + None + + + Flat + + + NoControl + + + 31, 61 + + + 15, 12 + + + 83 + + + Fall Back + + + bnShiftLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 18 + + + None + + + Flat + + + NoControl + + + 31, 13 + + + 43, 15 + + + 88 + + + Fall Back + + + bnShiftL1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 19 + + + None + + + Flat + + + NoControl + + + 167, 33 + + + 11, 21 + + + 84 + + + Fall Back + + + bnShiftOptions + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 20 + + + None + + + Flat + + + NoControl + + + 115, 87 + + + 17, 17 + + + 86 + + + Fall Back + + + bnShiftPS + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 21 + + + None + + + Flat + + + NoControl + + + 71, 33 + + + 11, 17 + + + 85 + + + Fall Back + + + bnShiftShare + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 22 + + + 7, 41 + + + 249, 137 + + + 190 + + + pnlShiftMain + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 8 + + + NoControl + + + 71, 9 + + + 105, 23 + + + 184 + + + <- Back to full view + + + btnShiftFullView + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 0 + + + False + + + NoControl + + + 0, 1 + + + 245, 132 + + + StretchImage + + + 161 + + + pBShiftSticks + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 1 + + + None + + + Flat + + + NoControl + + + 36, 92 + + + 23, 23 + + + 163 + + + Fall Back + + + bnShiftL3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + 2 - - btnRSTrack + + None - - pnlSixaxis + + Flat + + + NoControl + + + 183, 116 + + + 23, 11 + + + 172 + + + Fall Back + + + bnShiftRSDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 3 + + + None + + + Flat + + + NoControl + + + 36, 77 + + + 23, 11 + + + 167 + + + Fall Back + + + bnShiftLSUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 4 + + + None + + + Flat + + + NoControl + + + 183, 79 + + + 23, 11 + + + 171 + + + Fall Back + + + bnShiftRSUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 5 + + + None + + + Flat + + + NoControl + + + 21, 92 + + + 11, 23 + + + 164 + + + Fall Back + + + bnShiftLSLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 6 + + + None + + + Flat + + + NoControl + + + 209, 92 + + + 13, 23 + + + 170 + + + Fall Back + + + bnShiftRSRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 7 + + + None + + + Flat + + + NoControl + + + 65, 92 + + + 11, 23 + + + 165 + + + Fall Back + + + bnShiftLSRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 8 + + + None + + + Flat + + + NoControl + + + 165, 92 + + + 11, 23 + + + 169 + + + Fall Back + + + bnShiftRSLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 9 + + + None + + + Flat + + + NoControl + + + 36, 120 + + + 23, 11 + + + 166 + + + Fall Back + + + bnShiftLSDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 10 + + + None + + + Flat + + + NoControl + + + 183, 92 + + + 23, 23 + + + 168 + + + Fall Back + + + bnShiftR3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 11 + + + 7, 41 + + + 249, 143 + + + 191 + + + False + + + pnlShiftSticks + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 9 + + + 4, 22 + + + 3, 3, 3, 3 + + + 428, 216 + + + 1 + + + Shift Modifier + + + tPShiftMod + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControls + + + 1 + + + True + + + NoControl + + + 5, 221 + + + 59, 26 + + + 255 + + + Touchpad +Swipes: + + + label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 0 + + + NoControl + + + 3, 3 + + + 80, 23 + + + 250 + + + Swipe Up + + + bnSwipeUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPTouchSwipe + + + 0 + + + NoControl + + + 89, 3 + + + 80, 23 + + + 250 + + + Swipe Down + + + bnSwipeDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPTouchSwipe + + + 1 + + + NoControl + + + 175, 3 + + + 80, 23 + + + 250 + + + Swipe Left + + + bnSwipeLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPTouchSwipe + + + 2 + + + NoControl + + + 261, 3 + + + 80, 23 + + + 250 + + + Swipe Right + + + bnSwipeRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPTouchSwipe + + + 3 + + + 72, 219 + + + 351, 31 + + + 256 fLPTouchSwipe - - 153, 17 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 1 + + + True + + + NoControl + + + 5, 192 + + + 67, 13 + + + 253 + + + Sixaxis Gyro: + + + lbGryo + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 2 + + + NoControl + + + 3, 3 + + + 80, 23 + + + 250 + + + Tilt Up + + + bnGyroZN + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPTiltControls + + + 0 + + + NoControl + + + 89, 3 + + + 80, 23 + + + 250 + + + Tilt Down + + + bnGyroZP + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPTiltControls + + + 1 + + + NoControl + + + 175, 3 + + + 80, 23 + + + 250 + + + Tilt Left + + + bnGyroXP + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPTiltControls + + + 2 + + + NoControl + + + 261, 3 + + + 80, 23 + + + 250 + + + Tilt Right + + + bnGyroXN + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPTiltControls + + + 3 + + + 72, 185 + + + 351, 31 + + + 254 + + + fLPTiltControls + + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 3 + + + Stretch + + + False + + + NoControl + + + 0, 0 + + + 245, 132 + + + StretchImage + + + 1 + + + pBController + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 0 + + + None + + + Flat + + + NoControl + + + 84, 25 + + + 79, 16 + + + 193 + + + Middle Mouse Button + + + bnTouchUpper + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 1 + + + None + + + Flat + + + NoControl + + + 84, 40 + + + 25, 35 + + + 191 + + + Left Mouse Button + + + bnTouchLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 2 + + + None + + + Flat + + + NoControl + + + 139, 40 + + + 23, 33 + + + 190 + + + Left Mouse Button + + + bnTouchRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 3 + + + None + + + Flat + + + NoControl + + + 109, 40 + + + 31, 33 + + + 192 + + + Right Mouse Button + + + bnTouchMulti + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 4 + + + None + + + Flat + + + NoControl + + + 175, 13 + + + 43, 15 + + + 87 + + + Right Bumper + + + bnR1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 5 + + + None + + + Flat + + + NoControl + + + 187, 76 + + + 19, 17 + + + 74 + + + A Button + + + bnCross + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 6 + + + None + + + Flat + + + NoControl + + + 208, 60 + + + 16, 17 + + + 71 + + + B Button + + + bnCircle + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 7 + + + None + + + Flat + + + NoControl + + + 151, 89 + + + 28, 28 + + + 91 + + + RS + + + btnRightStick + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 8 + + + None + + + Flat + + + NoControl + + + 173, 61 + + + 15, 15 + + + 72 + + + X Button + + + bnSquare + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 9 + + + None + + + Flat + + + NoControl + + + 84, 7 + + + 79, 19 + + + 91 + + + Lightbar + + + btnLightbar + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 10 + + + None + + + Flat + + + NoControl + + + 188, 45 + + + 20, 16 + + + 73 + + + Y Button + + + bnTriangle + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 11 + + + None + + + Flat + + + NoControl + + + 44, 48 + + + 11, 15 + + + 80 + + + Up Button + + + bnUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 12 + + + None + + + Flat + + + NoControl + + + 71, 89 + + + 28, 28 + + + 91 + + + LS + + + btnLeftStick + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 13 + + + None + + + Flat + + + NoControl + + + 44, 73 + + + 12, 12 + + + 81 + + + Down Button + + + bnDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 14 + + + None + + + Flat + + + NoControl + + + 55, 61 + + + 15, 15 + + + 82 + + + Right Button + + + bnRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 15 + + + None + + + Flat + + + NoControl + + + 31, 61 + + + 15, 12 + + + 83 + + + Left Button + + + bnLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 16 + + + None + + + Flat + + + NoControl + + + 31, 13 + + + 43, 15 + + + 88 + + + Left Bumper + + + bnL1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 17 + + + None + + + Flat + + + NoControl + + + 167, 33 + + + 11, 21 + + + 84 + + + Start + + + bnOptions + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 18 + + + None + + + Flat + + + NoControl + + + 115, 87 + + + 17, 17 + + + 86 + + + Guide + + + bnPS + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 19 + + + None + + + Flat + + + NoControl + + + 71, 33 + + + 11, 17 + + + 85 + + + Back + + + bnShare + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 20 + + + None + + + Flat + + + NoControl + + + 31, 0 + + + 43, 12 + + + 90 + + + Left Trigger + + + bnL2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 21 + + + None + + + Flat + + + NoControl + + + 175, 0 + + + 40, 13 + + + 89 + + + Right Trigger + + + bnR2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 22 + + + 7, 41 + + + 249, 137 + + + 185 + + + pnlMain + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 4 + + + Cross : + + + Circle : + + + Square : + + + Triangle : + + + Options : + + + Share : + + + Up : + + + Down : + + + Left : + + + Right : + + + PS : + + + L1 : + + + R1 : + + + L2 : + + + R2 : + + + L3 : + + + R3 : + + + Left Touch : + + + Upper Touch : + + + Multitouch : + + + Right Touch : + + + Left Stick Up : + + + Left Stick Down : + + + Left Stick Left : + + + Left Stick Right : + + + Right Stick Up : + + + Right Stick Down : + + + Right Stick Left : + + + Right Stick Right : + + + Sixaxis Up : + + + Sixaxis Down : + + + Sixaxis Left : + + + Sixaxis Right : + + + 257, 7 + + + 169, 173 + + + 180 + + + lBControls + + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 5 + + + NoControl + + + 24, 5 + + + 219, 25 + + + 181 + + + Click a part of the controller to change action +Click the lightbar for color picker + + + MiddleCenter + + + lbControlTip + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 6 + + + NoControl + + + 71, 9 + + + 105, 23 + + + 184 + + + <- Back to full view + + + btnFullView + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 0 + + + False + + + NoControl + + + 0, 1 + + + 245, 132 + + + StretchImage + + + 161 + + + pBSticks + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 1 + + + None + + + Flat + + + NoControl + + + 36, 92 + + + 23, 23 + + + 163 + + + Left Stick + + + bnL3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 2 + + + None + + + Flat + + + NoControl + + + 183, 116 + + + 23, 11 + + + 172 + + + Right Y-Axis+ + + + bnRSDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 3 + + + None + + + Flat + + + NoControl + + + 36, 77 + + + 23, 11 + + + 167 + + + Left Y-Axis- + + + bnLSUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 4 + + + None + + + Flat + + + NoControl + + + 183, 79 + + + 23, 11 + + + 171 + + + Right Y-Axis- + + + bnRSUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 5 + + + None + + + Flat + + + NoControl + + + 21, 92 + + + 11, 23 + + + 164 + + + Left X-Axis- + + + bnLSLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 6 + + + None + + + Flat + + + NoControl + + + 209, 92 + + + 13, 23 + + + 170 + + + Right X-Axis+ + + + bnRSRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 7 + + + None + + + Flat + + + NoControl + + + 65, 92 + + + 11, 23 + + + 165 + + + Left X-Axis+ + + + bnLSRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 8 + + + None + + + Flat + + + NoControl + + + 165, 92 + + + 11, 23 + + + 169 + + + Right X-Axis- + + + bnRSLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 9 + + + None + + + Flat + + + NoControl + + + 36, 120 + + + 23, 11 + + + 166 + + + Left Y-Axis+ + + + bnLSDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 10 + + + None + + + Flat + + + NoControl + + + 183, 92 + + + 23, 23 + + + 168 + + + Right Stick + + + bnR3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 11 + + + 7, 41 + + + 249, 143 + + + 187 + + + False + + + pnlSticks + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 7 + + + 4, 22 + + + 3, 3, 3, 3 + + + 428, 216 + + + 0 + + + Controls + + + tPControls + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControls + + + 0 + + + 3, 3 + + + 436, 242 + + + 253 + + + tabControls + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + + + 17, 17 True - - 17, 17 - + + 96, 96 + + + True + + + 890, 361 + + + 906, 400 + + + 99, 96 + + + Profile Options + + + openFileDialog1 + + + System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + advColorDialog + + + DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.157.0, Culture=neutral, PublicKeyToken=null + + + Options + + + 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/DS4Tool/Program.cs b/DS4Tool/Program.cs index c9ba2d7..408dece 100644 --- a/DS4Tool/Program.cs +++ b/DS4Tool/Program.cs @@ -117,6 +117,7 @@ namespace DS4Windows else { WinProgs wp = (WinProgs)frm; + wp.form.mAllowVisible = true; wp.ShowMainWindow(); SetForegroundWindow(wp.form.Handle); } diff --git a/DS4Tool/Properties/AssemblyInfo.cs b/DS4Tool/Properties/AssemblyInfo.cs index ee9882e..392d27b 100644 --- a/DS4Tool/Properties/AssemblyInfo.cs +++ b/DS4Tool/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // 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.156")] -[assembly: AssemblyFileVersion("1.4.156")] +[assembly: AssemblyVersion("1.4.157")] +[assembly: AssemblyFileVersion("1.4.157")] diff --git a/DS4Tool/Properties/Resources.resx b/DS4Tool/Properties/Resources.resx index 9d40489..9957b81 100644 --- a/DS4Tool/Properties/Resources.resx +++ b/DS4Tool/Properties/Resources.resx @@ -577,4 +577,7 @@ Plein: + + EXPERIMENTAL: Auto-Disable BT when conencting to USB + \ No newline at end of file diff --git a/DS4Tool/Properties/Resources1.Designer.cs b/DS4Tool/Properties/Resources1.Designer.cs index bf229ae..9498776 100644 --- a/DS4Tool/Properties/Resources1.Designer.cs +++ b/DS4Tool/Properties/Resources1.Designer.cs @@ -917,6 +917,15 @@ namespace DS4Windows.Properties { } } + /// + /// Looks up a localized string similar to EXPERIMENTAL: Auto-Disable BT when conencting to USB. + /// + internal static string QuickCharge { + get { + return ResourceManager.GetString("QuickCharge", resourceCulture); + } + } + /// /// Looks up a localized string similar to You must quit other applications like Steam, Uplay before activating the 'Hide DS4 Controller' option.". ///