Version 1.4.321

Changed the Rainbow button to an actual button
For using the sixaxis as a mouse, changed none to Always on, also better
movement for the gyro when the sensitivity is lowered
Updated Hebrew, Chinese (Traditional), Itilian, Chinese (Simplified)
This commit is contained in:
Jays2Kings 2015-12-13 16:30:54 -05:00
parent f567bfb0da
commit fa639ba31c
41 changed files with 4767 additions and 4894 deletions

View File

@ -34,12 +34,12 @@ namespace DS4Windows
public virtual void sixaxisMoved(object sender, SixAxisEventArgs arg) public virtual void sixaxisMoved(object sender, SixAxisEventArgs arg)
{ {
if (Global.UseSAforMouse[deviceNum]) if (Global.UseSAforMouse[deviceNum] && Global.GyroSensitivity[deviceNum] > 0)
{ {
bool triggeractivated = true; bool triggeractivated = true;
int i = 0; int i = 0;
string[] ss = Global.SATriggers[deviceNum].Split(','); string[] ss = Global.SATriggers[deviceNum].Split(',');
//List<DS4Controls> ds4C = new List<DS4Controls>(); if (!string.IsNullOrEmpty(ss[0]))
foreach (string s in ss) foreach (string s in ss)
if (!(int.TryParse(s, out i) && getDS4ControlsByName(i))) if (!(int.TryParse(s, out i) && getDS4ControlsByName(i)))
triggeractivated = false; triggeractivated = false;
@ -53,6 +53,7 @@ namespace DS4Windows
{ {
switch (key) switch (key)
{ {
case -1: return true;
case 0: return s.Cross; case 0: return s.Cross;
case 1: return s.Circle; case 1: return s.Circle;
case 2: return s.Square; case 2: return s.Square;
@ -71,6 +72,7 @@ namespace DS4Windows
case 15: return s.Touch2; case 15: return s.Touch2;
case 16: return s.Options; case 16: return s.Options;
case 17: return s.Share; case 17: return s.Share;
case 18: return s.PS;
} }
return false; return false;
} }

View File

@ -28,35 +28,20 @@ namespace DS4Windows
int deltaX = 0, deltaY = 0; int deltaX = 0, deltaY = 0;
deltaX = -arg.sixAxis.accelX; deltaX = -arg.sixAxis.accelX;
deltaY = -arg.sixAxis.accelY; deltaY = -arg.sixAxis.accelY;
double coefficient = Global.GyroSensitivity[deviceNumber] / 100f; //Console.WriteLine(arg.sixAxis.deltaX);
// Collect rounding errors instead of losing motion.
double xMotion = coefficient * deltaX;
if (xMotion > 0.0)
{
if (horizontalRemainder > 0.0)
xMotion += horizontalRemainder;
}
else if (xMotion < 0.0)
{
if (horizontalRemainder < 0.0)
xMotion += horizontalRemainder;
}
int xAction = (int)xMotion;
hRemainder = xMotion - xAction;
double coefficient = Global.GyroSensitivity[deviceNumber] / 100f;
//Collect rounding errors instead of losing motion.
double xMotion = coefficient * deltaX;
xMotion += hRemainder;
int xAction = (int)xMotion;
hRemainder += xMotion - xAction;
hRemainder -= (int)hRemainder;
double yMotion = coefficient * deltaY; double yMotion = coefficient * deltaY;
if (yMotion > 0.0) yMotion += vRemainder;
{
if (verticalRemainder > 0.0)
yMotion += verticalRemainder;
}
else if (yMotion < 0.0)
{
if (verticalRemainder < 0.0)
yMotion += verticalRemainder;
}
int yAction = (int)yMotion; int yAction = (int)yMotion;
vRemainder = yMotion - yAction; vRemainder += yMotion - yAction;
vRemainder -= (int)vRemainder;
if (Global.GyroInvert[deviceNumber] == 2 || Global.GyroInvert[deviceNumber] == 3) if (Global.GyroInvert[deviceNumber] == 2 || Global.GyroInvert[deviceNumber] == 3)
xAction *= -1; xAction *= -1;
if (Global.GyroInvert[deviceNumber] == 1 || Global.GyroInvert[deviceNumber] == 3) if (Global.GyroInvert[deviceNumber] == 1 || Global.GyroInvert[deviceNumber] == 3)

View File

@ -181,13 +181,12 @@
// //
// lvDebug // lvDebug
// //
resources.ApplyResources(this.lvDebug, "lvDebug");
this.lvDebug.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.lvDebug.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.chTime, this.chTime,
this.chData}); this.chData});
resources.ApplyResources(this.lvDebug, "lvDebug");
this.lvDebug.FullRowSelect = true; this.lvDebug.FullRowSelect = true;
this.lvDebug.Name = "lvDebug"; this.lvDebug.Name = "lvDebug";
this.toolTip1.SetToolTip(this.lvDebug, resources.GetString("lvDebug.ToolTip"));
this.lvDebug.UseCompatibleStateImageBehavior = false; this.lvDebug.UseCompatibleStateImageBehavior = false;
this.lvDebug.View = System.Windows.Forms.View.Details; this.lvDebug.View = System.Windows.Forms.View.Details;
this.lvDebug.ItemActivate += new System.EventHandler(this.lvDebug_ItemActivate); this.lvDebug.ItemActivate += new System.EventHandler(this.lvDebug_ItemActivate);
@ -207,27 +206,24 @@
// //
// pnlButton // pnlButton
// //
resources.ApplyResources(this.pnlButton, "pnlButton");
this.pnlButton.BackColor = System.Drawing.SystemColors.Control; this.pnlButton.BackColor = System.Drawing.SystemColors.Control;
this.pnlButton.Controls.Add(this.lbTest); this.pnlButton.Controls.Add(this.lbTest);
this.pnlButton.Controls.Add(this.btnStartStop); this.pnlButton.Controls.Add(this.btnStartStop);
this.pnlButton.Controls.Add(this.lbLastMessage); this.pnlButton.Controls.Add(this.lbLastMessage);
this.pnlButton.Controls.Add(this.llbHelp); this.pnlButton.Controls.Add(this.llbHelp);
resources.ApplyResources(this.pnlButton, "pnlButton");
this.pnlButton.Name = "pnlButton"; this.pnlButton.Name = "pnlButton";
this.toolTip1.SetToolTip(this.pnlButton, resources.GetString("pnlButton.ToolTip"));
this.pnlButton.MouseLeave += new System.EventHandler(this.pnlButton_MouseLeave); this.pnlButton.MouseLeave += new System.EventHandler(this.pnlButton_MouseLeave);
// //
// lbTest // lbTest
// //
resources.ApplyResources(this.lbTest, "lbTest"); resources.ApplyResources(this.lbTest, "lbTest");
this.lbTest.Name = "lbTest"; this.lbTest.Name = "lbTest";
this.toolTip1.SetToolTip(this.lbTest, resources.GetString("lbTest.ToolTip"));
// //
// btnStartStop // btnStartStop
// //
resources.ApplyResources(this.btnStartStop, "btnStartStop"); resources.ApplyResources(this.btnStartStop, "btnStartStop");
this.btnStartStop.Name = "btnStartStop"; this.btnStartStop.Name = "btnStartStop";
this.toolTip1.SetToolTip(this.btnStartStop, resources.GetString("btnStartStop.ToolTip"));
this.btnStartStop.UseVisualStyleBackColor = true; this.btnStartStop.UseVisualStyleBackColor = true;
this.btnStartStop.Click += new System.EventHandler(this.btnStartStop_Click); this.btnStartStop.Click += new System.EventHandler(this.btnStartStop_Click);
// //
@ -236,7 +232,6 @@
resources.ApplyResources(this.lbLastMessage, "lbLastMessage"); resources.ApplyResources(this.lbLastMessage, "lbLastMessage");
this.lbLastMessage.ForeColor = System.Drawing.SystemColors.GrayText; this.lbLastMessage.ForeColor = System.Drawing.SystemColors.GrayText;
this.lbLastMessage.Name = "lbLastMessage"; this.lbLastMessage.Name = "lbLastMessage";
this.toolTip1.SetToolTip(this.lbLastMessage, resources.GetString("lbLastMessage.ToolTip"));
this.lbLastMessage.MouseHover += new System.EventHandler(this.lbLastMessage_MouseHover); this.lbLastMessage.MouseHover += new System.EventHandler(this.lbLastMessage_MouseHover);
// //
// llbHelp // llbHelp
@ -244,14 +239,12 @@
resources.ApplyResources(this.llbHelp, "llbHelp"); resources.ApplyResources(this.llbHelp, "llbHelp");
this.llbHelp.Name = "llbHelp"; this.llbHelp.Name = "llbHelp";
this.llbHelp.TabStop = true; this.llbHelp.TabStop = true;
this.toolTip1.SetToolTip(this.llbHelp, resources.GetString("llbHelp.ToolTip"));
this.llbHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbHelp_LinkClicked); this.llbHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbHelp_LinkClicked);
// //
// btnClear // btnClear
// //
resources.ApplyResources(this.btnClear, "btnClear"); resources.ApplyResources(this.btnClear, "btnClear");
this.btnClear.Name = "btnClear"; this.btnClear.Name = "btnClear";
this.toolTip1.SetToolTip(this.btnClear, resources.GetString("btnClear.ToolTip"));
this.btnClear.UseVisualStyleBackColor = true; this.btnClear.UseVisualStyleBackColor = true;
this.btnClear.Click += new System.EventHandler(this.btnClear_Click); this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
// //
@ -266,7 +259,6 @@
// //
// cMTaskbar // cMTaskbar
// //
resources.ApplyResources(this.cMTaskbar, "cMTaskbar");
this.cMTaskbar.ImageScalingSize = new System.Drawing.Size(24, 24); this.cMTaskbar.ImageScalingSize = new System.Drawing.Size(24, 24);
this.cMTaskbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cMTaskbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.editProfileForController1ToolStripMenuItem, this.editProfileForController1ToolStripMenuItem,
@ -278,46 +270,46 @@
this.openToolStripMenuItem, this.openToolStripMenuItem,
this.exitToolStripMenuItem}); this.exitToolStripMenuItem});
this.cMTaskbar.Name = "cMTaskbar"; this.cMTaskbar.Name = "cMTaskbar";
resources.ApplyResources(this.cMTaskbar, "cMTaskbar");
this.cMTaskbar.Tag = "25"; this.cMTaskbar.Tag = "25";
this.toolTip1.SetToolTip(this.cMTaskbar, resources.GetString("cMTaskbar.ToolTip"));
// //
// editProfileForController1ToolStripMenuItem // editProfileForController1ToolStripMenuItem
// //
resources.ApplyResources(this.editProfileForController1ToolStripMenuItem, "editProfileForController1ToolStripMenuItem");
this.editProfileForController1ToolStripMenuItem.Name = "editProfileForController1ToolStripMenuItem"; this.editProfileForController1ToolStripMenuItem.Name = "editProfileForController1ToolStripMenuItem";
resources.ApplyResources(this.editProfileForController1ToolStripMenuItem, "editProfileForController1ToolStripMenuItem");
this.editProfileForController1ToolStripMenuItem.Tag = "0"; this.editProfileForController1ToolStripMenuItem.Tag = "0";
this.editProfileForController1ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); this.editProfileForController1ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
// //
// editProfileForController2ToolStripMenuItem // editProfileForController2ToolStripMenuItem
// //
resources.ApplyResources(this.editProfileForController2ToolStripMenuItem, "editProfileForController2ToolStripMenuItem");
this.editProfileForController2ToolStripMenuItem.Name = "editProfileForController2ToolStripMenuItem"; this.editProfileForController2ToolStripMenuItem.Name = "editProfileForController2ToolStripMenuItem";
resources.ApplyResources(this.editProfileForController2ToolStripMenuItem, "editProfileForController2ToolStripMenuItem");
this.editProfileForController2ToolStripMenuItem.Tag = "1"; this.editProfileForController2ToolStripMenuItem.Tag = "1";
this.editProfileForController2ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); this.editProfileForController2ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
// //
// editProfileForController3ToolStripMenuItem // editProfileForController3ToolStripMenuItem
// //
resources.ApplyResources(this.editProfileForController3ToolStripMenuItem, "editProfileForController3ToolStripMenuItem");
this.editProfileForController3ToolStripMenuItem.Name = "editProfileForController3ToolStripMenuItem"; this.editProfileForController3ToolStripMenuItem.Name = "editProfileForController3ToolStripMenuItem";
resources.ApplyResources(this.editProfileForController3ToolStripMenuItem, "editProfileForController3ToolStripMenuItem");
this.editProfileForController3ToolStripMenuItem.Tag = "2"; this.editProfileForController3ToolStripMenuItem.Tag = "2";
this.editProfileForController3ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); this.editProfileForController3ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
// //
// editProfileForController4ToolStripMenuItem // editProfileForController4ToolStripMenuItem
// //
resources.ApplyResources(this.editProfileForController4ToolStripMenuItem, "editProfileForController4ToolStripMenuItem");
this.editProfileForController4ToolStripMenuItem.Name = "editProfileForController4ToolStripMenuItem"; this.editProfileForController4ToolStripMenuItem.Name = "editProfileForController4ToolStripMenuItem";
resources.ApplyResources(this.editProfileForController4ToolStripMenuItem, "editProfileForController4ToolStripMenuItem");
this.editProfileForController4ToolStripMenuItem.Tag = "4"; this.editProfileForController4ToolStripMenuItem.Tag = "4";
this.editProfileForController4ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); this.editProfileForController4ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
// //
// toolStripSeparator1 // toolStripSeparator1
// //
resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Name = "toolStripSeparator1";
resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
// //
// startToolStripMenuItem // startToolStripMenuItem
// //
resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem");
this.startToolStripMenuItem.Name = "startToolStripMenuItem"; this.startToolStripMenuItem.Name = "startToolStripMenuItem";
resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem");
this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click); this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click);
// //
// openToolStripMenuItem // openToolStripMenuItem
@ -328,14 +320,14 @@
// //
// exitToolStripMenuItem // exitToolStripMenuItem
// //
resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
// //
// toolStripSeparator2 // toolStripSeparator2
// //
resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Name = "toolStripSeparator2";
resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
// //
// openProfiles // openProfiles
// //
@ -344,32 +336,29 @@
// //
// tabMain // tabMain
// //
resources.ApplyResources(this.tabMain, "tabMain");
this.tabMain.Controls.Add(this.tabControllers); this.tabMain.Controls.Add(this.tabControllers);
this.tabMain.Controls.Add(this.tabProfiles); this.tabMain.Controls.Add(this.tabProfiles);
this.tabMain.Controls.Add(this.tabAutoProfiles); this.tabMain.Controls.Add(this.tabAutoProfiles);
this.tabMain.Controls.Add(this.tabSettings); this.tabMain.Controls.Add(this.tabSettings);
this.tabMain.Controls.Add(this.tabLog); this.tabMain.Controls.Add(this.tabLog);
resources.ApplyResources(this.tabMain, "tabMain");
this.tabMain.Name = "tabMain"; this.tabMain.Name = "tabMain";
this.tabMain.SelectedIndex = 0; this.tabMain.SelectedIndex = 0;
this.toolTip1.SetToolTip(this.tabMain, resources.GetString("tabMain.ToolTip"));
this.tabMain.SelectedIndexChanged += new System.EventHandler(this.tabMain_SelectedIndexChanged); this.tabMain.SelectedIndexChanged += new System.EventHandler(this.tabMain_SelectedIndexChanged);
// //
// tabControllers // tabControllers
// //
resources.ApplyResources(this.tabControllers, "tabControllers");
this.tabControllers.Controls.Add(this.btnConnectDS4Win10); this.tabControllers.Controls.Add(this.btnConnectDS4Win10);
this.tabControllers.Controls.Add(this.tLPControllers); this.tabControllers.Controls.Add(this.tLPControllers);
this.tabControllers.Controls.Add(this.lbNoControllers); this.tabControllers.Controls.Add(this.lbNoControllers);
resources.ApplyResources(this.tabControllers, "tabControllers");
this.tabControllers.Name = "tabControllers"; this.tabControllers.Name = "tabControllers";
this.toolTip1.SetToolTip(this.tabControllers, resources.GetString("tabControllers.ToolTip"));
this.tabControllers.UseVisualStyleBackColor = true; this.tabControllers.UseVisualStyleBackColor = true;
// //
// btnConnectDS4Win10 // btnConnectDS4Win10
// //
resources.ApplyResources(this.btnConnectDS4Win10, "btnConnectDS4Win10"); resources.ApplyResources(this.btnConnectDS4Win10, "btnConnectDS4Win10");
this.btnConnectDS4Win10.Name = "btnConnectDS4Win10"; this.btnConnectDS4Win10.Name = "btnConnectDS4Win10";
this.toolTip1.SetToolTip(this.btnConnectDS4Win10, resources.GetString("btnConnectDS4Win10.ToolTip"));
this.btnConnectDS4Win10.UseVisualStyleBackColor = true; this.btnConnectDS4Win10.UseVisualStyleBackColor = true;
this.btnConnectDS4Win10.Click += new System.EventHandler(this.btnConnectDS4Win10_Click); this.btnConnectDS4Win10.Click += new System.EventHandler(this.btnConnectDS4Win10_Click);
// //
@ -405,15 +394,13 @@
this.tLPControllers.Controls.Add(this.bnLight2, 5, 2); this.tLPControllers.Controls.Add(this.bnLight2, 5, 2);
this.tLPControllers.Controls.Add(this.bnLight4, 5, 4); this.tLPControllers.Controls.Add(this.bnLight4, 5, 4);
this.tLPControllers.Name = "tLPControllers"; this.tLPControllers.Name = "tLPControllers";
this.toolTip1.SetToolTip(this.tLPControllers, resources.GetString("tLPControllers.ToolTip"));
// //
// bnLight3 // bnLight3
// //
resources.ApplyResources(this.bnLight3, "bnLight3");
this.bnLight3.BackColor = System.Drawing.Color.White; this.bnLight3.BackColor = System.Drawing.Color.White;
resources.ApplyResources(this.bnLight3, "bnLight3");
this.bnLight3.Name = "bnLight3"; this.bnLight3.Name = "bnLight3";
this.bnLight3.Tag = "2"; this.bnLight3.Tag = "2";
this.toolTip1.SetToolTip(this.bnLight3, resources.GetString("bnLight3.ToolTip"));
this.bnLight3.UseVisualStyleBackColor = false; this.bnLight3.UseVisualStyleBackColor = false;
this.bnLight3.Click += new System.EventHandler(this.EditCustomLed); this.bnLight3.Click += new System.EventHandler(this.EditCustomLed);
// //
@ -424,7 +411,6 @@
this.pBStatus1.Name = "pBStatus1"; this.pBStatus1.Name = "pBStatus1";
this.pBStatus1.TabStop = false; this.pBStatus1.TabStop = false;
this.pBStatus1.Tag = "0"; this.pBStatus1.Tag = "0";
this.toolTip1.SetToolTip(this.pBStatus1, resources.GetString("pBStatus1.ToolTip"));
this.pBStatus1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); this.pBStatus1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
// //
// lbPad1 // lbPad1
@ -432,7 +418,6 @@
resources.ApplyResources(this.lbPad1, "lbPad1"); resources.ApplyResources(this.lbPad1, "lbPad1");
this.lbPad1.Name = "lbPad1"; this.lbPad1.Name = "lbPad1";
this.lbPad1.Tag = "0"; this.lbPad1.Tag = "0";
this.toolTip1.SetToolTip(this.lbPad1, resources.GetString("lbPad1.ToolTip"));
this.lbPad1.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad1.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad1.MouseHover += new System.EventHandler(this.Pads_MouseHover); this.lbPad1.MouseHover += new System.EventHandler(this.Pads_MouseHover);
// //
@ -441,7 +426,6 @@
resources.ApplyResources(this.lbPad2, "lbPad2"); resources.ApplyResources(this.lbPad2, "lbPad2");
this.lbPad2.Name = "lbPad2"; this.lbPad2.Name = "lbPad2";
this.lbPad2.Tag = "1"; this.lbPad2.Tag = "1";
this.toolTip1.SetToolTip(this.lbPad2, resources.GetString("lbPad2.ToolTip"));
this.lbPad2.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad2.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad2.MouseHover += new System.EventHandler(this.Pads_MouseHover); this.lbPad2.MouseHover += new System.EventHandler(this.Pads_MouseHover);
// //
@ -450,7 +434,6 @@
resources.ApplyResources(this.bnEditC3, "bnEditC3"); resources.ApplyResources(this.bnEditC3, "bnEditC3");
this.bnEditC3.Name = "bnEditC3"; this.bnEditC3.Name = "bnEditC3";
this.bnEditC3.Tag = "2"; this.bnEditC3.Tag = "2";
this.toolTip1.SetToolTip(this.bnEditC3, resources.GetString("bnEditC3.ToolTip"));
this.bnEditC3.UseVisualStyleBackColor = true; this.bnEditC3.UseVisualStyleBackColor = true;
this.bnEditC3.Click += new System.EventHandler(this.editButtons_Click); this.bnEditC3.Click += new System.EventHandler(this.editButtons_Click);
// //
@ -459,7 +442,6 @@
resources.ApplyResources(this.bnEditC4, "bnEditC4"); resources.ApplyResources(this.bnEditC4, "bnEditC4");
this.bnEditC4.Name = "bnEditC4"; this.bnEditC4.Name = "bnEditC4";
this.bnEditC4.Tag = "3"; this.bnEditC4.Tag = "3";
this.toolTip1.SetToolTip(this.bnEditC4, resources.GetString("bnEditC4.ToolTip"));
this.bnEditC4.UseVisualStyleBackColor = true; this.bnEditC4.UseVisualStyleBackColor = true;
this.bnEditC4.Click += new System.EventHandler(this.editButtons_Click); this.bnEditC4.Click += new System.EventHandler(this.editButtons_Click);
// //
@ -468,7 +450,6 @@
resources.ApplyResources(this.lbPad3, "lbPad3"); resources.ApplyResources(this.lbPad3, "lbPad3");
this.lbPad3.Name = "lbPad3"; this.lbPad3.Name = "lbPad3";
this.lbPad3.Tag = "2"; this.lbPad3.Tag = "2";
this.toolTip1.SetToolTip(this.lbPad3, resources.GetString("lbPad3.ToolTip"));
this.lbPad3.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad3.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad3.MouseHover += new System.EventHandler(this.Pads_MouseHover); this.lbPad3.MouseHover += new System.EventHandler(this.Pads_MouseHover);
// //
@ -477,7 +458,6 @@
resources.ApplyResources(this.lbPad4, "lbPad4"); resources.ApplyResources(this.lbPad4, "lbPad4");
this.lbPad4.Name = "lbPad4"; this.lbPad4.Name = "lbPad4";
this.lbPad4.Tag = "3"; this.lbPad4.Tag = "3";
this.toolTip1.SetToolTip(this.lbPad4, resources.GetString("lbPad4.ToolTip"));
this.lbPad4.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad4.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad4.MouseHover += new System.EventHandler(this.Pads_MouseHover); this.lbPad4.MouseHover += new System.EventHandler(this.Pads_MouseHover);
// //
@ -488,7 +468,6 @@
this.cBController1.FormattingEnabled = true; this.cBController1.FormattingEnabled = true;
this.cBController1.Name = "cBController1"; this.cBController1.Name = "cBController1";
this.cBController1.Tag = "0"; this.cBController1.Tag = "0";
this.toolTip1.SetToolTip(this.cBController1, resources.GetString("cBController1.ToolTip"));
this.cBController1.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); this.cBController1.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
// //
// bnEditC2 // bnEditC2
@ -496,7 +475,6 @@
resources.ApplyResources(this.bnEditC2, "bnEditC2"); resources.ApplyResources(this.bnEditC2, "bnEditC2");
this.bnEditC2.Name = "bnEditC2"; this.bnEditC2.Name = "bnEditC2";
this.bnEditC2.Tag = "1"; this.bnEditC2.Tag = "1";
this.toolTip1.SetToolTip(this.bnEditC2, resources.GetString("bnEditC2.ToolTip"));
this.bnEditC2.UseVisualStyleBackColor = true; this.bnEditC2.UseVisualStyleBackColor = true;
this.bnEditC2.Click += new System.EventHandler(this.editButtons_Click); this.bnEditC2.Click += new System.EventHandler(this.editButtons_Click);
// //
@ -507,7 +485,6 @@
this.cBController2.FormattingEnabled = true; this.cBController2.FormattingEnabled = true;
this.cBController2.Name = "cBController2"; this.cBController2.Name = "cBController2";
this.cBController2.Tag = "1"; this.cBController2.Tag = "1";
this.toolTip1.SetToolTip(this.cBController2, resources.GetString("cBController2.ToolTip"));
this.cBController2.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); this.cBController2.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
// //
// cBController3 // cBController3
@ -517,7 +494,6 @@
this.cBController3.FormattingEnabled = true; this.cBController3.FormattingEnabled = true;
this.cBController3.Name = "cBController3"; this.cBController3.Name = "cBController3";
this.cBController3.Tag = "2"; this.cBController3.Tag = "2";
this.toolTip1.SetToolTip(this.cBController3, resources.GetString("cBController3.ToolTip"));
this.cBController3.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); this.cBController3.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
// //
// bnEditC1 // bnEditC1
@ -525,7 +501,6 @@
resources.ApplyResources(this.bnEditC1, "bnEditC1"); resources.ApplyResources(this.bnEditC1, "bnEditC1");
this.bnEditC1.Name = "bnEditC1"; this.bnEditC1.Name = "bnEditC1";
this.bnEditC1.Tag = "0"; this.bnEditC1.Tag = "0";
this.toolTip1.SetToolTip(this.bnEditC1, resources.GetString("bnEditC1.ToolTip"));
this.bnEditC1.UseVisualStyleBackColor = true; this.bnEditC1.UseVisualStyleBackColor = true;
this.bnEditC1.Click += new System.EventHandler(this.editButtons_Click); this.bnEditC1.Click += new System.EventHandler(this.editButtons_Click);
// //
@ -536,56 +511,47 @@
this.cBController4.FormattingEnabled = true; this.cBController4.FormattingEnabled = true;
this.cBController4.Name = "cBController4"; this.cBController4.Name = "cBController4";
this.cBController4.Tag = "3"; this.cBController4.Tag = "3";
this.toolTip1.SetToolTip(this.cBController4, resources.GetString("cBController4.ToolTip"));
this.cBController4.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); this.cBController4.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
// //
// lbSelectedProfile // lbSelectedProfile
// //
resources.ApplyResources(this.lbSelectedProfile, "lbSelectedProfile"); resources.ApplyResources(this.lbSelectedProfile, "lbSelectedProfile");
this.lbSelectedProfile.Name = "lbSelectedProfile"; this.lbSelectedProfile.Name = "lbSelectedProfile";
this.toolTip1.SetToolTip(this.lbSelectedProfile, resources.GetString("lbSelectedProfile.ToolTip"));
// //
// lbID // lbID
// //
resources.ApplyResources(this.lbID, "lbID"); resources.ApplyResources(this.lbID, "lbID");
this.lbID.Name = "lbID"; this.lbID.Name = "lbID";
this.toolTip1.SetToolTip(this.lbID, resources.GetString("lbID.ToolTip"));
// //
// lbStatus // lbStatus
// //
resources.ApplyResources(this.lbStatus, "lbStatus"); resources.ApplyResources(this.lbStatus, "lbStatus");
this.lbStatus.Name = "lbStatus"; this.lbStatus.Name = "lbStatus";
this.toolTip1.SetToolTip(this.lbStatus, resources.GetString("lbStatus.ToolTip"));
// //
// lbBattery // lbBattery
// //
resources.ApplyResources(this.lbBattery, "lbBattery"); resources.ApplyResources(this.lbBattery, "lbBattery");
this.lbBattery.Name = "lbBattery"; this.lbBattery.Name = "lbBattery";
this.toolTip1.SetToolTip(this.lbBattery, resources.GetString("lbBattery.ToolTip"));
// //
// lbBatt1 // lbBatt1
// //
resources.ApplyResources(this.lbBatt1, "lbBatt1"); resources.ApplyResources(this.lbBatt1, "lbBatt1");
this.lbBatt1.Name = "lbBatt1"; this.lbBatt1.Name = "lbBatt1";
this.toolTip1.SetToolTip(this.lbBatt1, resources.GetString("lbBatt1.ToolTip"));
// //
// lbBatt2 // lbBatt2
// //
resources.ApplyResources(this.lbBatt2, "lbBatt2"); resources.ApplyResources(this.lbBatt2, "lbBatt2");
this.lbBatt2.Name = "lbBatt2"; this.lbBatt2.Name = "lbBatt2";
this.toolTip1.SetToolTip(this.lbBatt2, resources.GetString("lbBatt2.ToolTip"));
// //
// lbBatt3 // lbBatt3
// //
resources.ApplyResources(this.lbBatt3, "lbBatt3"); resources.ApplyResources(this.lbBatt3, "lbBatt3");
this.lbBatt3.Name = "lbBatt3"; this.lbBatt3.Name = "lbBatt3";
this.toolTip1.SetToolTip(this.lbBatt3, resources.GetString("lbBatt3.ToolTip"));
// //
// lbBatt4 // lbBatt4
// //
resources.ApplyResources(this.lbBatt4, "lbBatt4"); resources.ApplyResources(this.lbBatt4, "lbBatt4");
this.lbBatt4.Name = "lbBatt4"; this.lbBatt4.Name = "lbBatt4";
this.toolTip1.SetToolTip(this.lbBatt4, resources.GetString("lbBatt4.ToolTip"));
// //
// pBStatus2 // pBStatus2
// //
@ -594,7 +560,6 @@
this.pBStatus2.Name = "pBStatus2"; this.pBStatus2.Name = "pBStatus2";
this.pBStatus2.TabStop = false; this.pBStatus2.TabStop = false;
this.pBStatus2.Tag = "1"; this.pBStatus2.Tag = "1";
this.toolTip1.SetToolTip(this.pBStatus2, resources.GetString("pBStatus2.ToolTip"));
this.pBStatus2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); this.pBStatus2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
// //
// pBStatus3 // pBStatus3
@ -604,7 +569,6 @@
this.pBStatus3.Name = "pBStatus3"; this.pBStatus3.Name = "pBStatus3";
this.pBStatus3.TabStop = false; this.pBStatus3.TabStop = false;
this.pBStatus3.Tag = "2"; this.pBStatus3.Tag = "2";
this.toolTip1.SetToolTip(this.pBStatus3, resources.GetString("pBStatus3.ToolTip"));
this.pBStatus3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); this.pBStatus3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
// //
// pBStatus4 // pBStatus4
@ -614,36 +578,32 @@
this.pBStatus4.Name = "pBStatus4"; this.pBStatus4.Name = "pBStatus4";
this.pBStatus4.TabStop = false; this.pBStatus4.TabStop = false;
this.pBStatus4.Tag = "3"; this.pBStatus4.Tag = "3";
this.toolTip1.SetToolTip(this.pBStatus4, resources.GetString("pBStatus4.ToolTip"));
this.pBStatus4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); this.pBStatus4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
// //
// bnLight1 // bnLight1
// //
resources.ApplyResources(this.bnLight1, "bnLight1");
this.bnLight1.BackColor = System.Drawing.Color.White; this.bnLight1.BackColor = System.Drawing.Color.White;
resources.ApplyResources(this.bnLight1, "bnLight1");
this.bnLight1.Name = "bnLight1"; this.bnLight1.Name = "bnLight1";
this.bnLight1.Tag = "0"; this.bnLight1.Tag = "0";
this.toolTip1.SetToolTip(this.bnLight1, resources.GetString("bnLight1.ToolTip"));
this.bnLight1.UseVisualStyleBackColor = false; this.bnLight1.UseVisualStyleBackColor = false;
this.bnLight1.Click += new System.EventHandler(this.EditCustomLed); this.bnLight1.Click += new System.EventHandler(this.EditCustomLed);
// //
// bnLight2 // bnLight2
// //
resources.ApplyResources(this.bnLight2, "bnLight2");
this.bnLight2.BackColor = System.Drawing.Color.White; this.bnLight2.BackColor = System.Drawing.Color.White;
resources.ApplyResources(this.bnLight2, "bnLight2");
this.bnLight2.Name = "bnLight2"; this.bnLight2.Name = "bnLight2";
this.bnLight2.Tag = "1"; this.bnLight2.Tag = "1";
this.toolTip1.SetToolTip(this.bnLight2, resources.GetString("bnLight2.ToolTip"));
this.bnLight2.UseVisualStyleBackColor = false; this.bnLight2.UseVisualStyleBackColor = false;
this.bnLight2.Click += new System.EventHandler(this.EditCustomLed); this.bnLight2.Click += new System.EventHandler(this.EditCustomLed);
// //
// bnLight4 // bnLight4
// //
resources.ApplyResources(this.bnLight4, "bnLight4");
this.bnLight4.BackColor = System.Drawing.Color.White; this.bnLight4.BackColor = System.Drawing.Color.White;
resources.ApplyResources(this.bnLight4, "bnLight4");
this.bnLight4.Name = "bnLight4"; this.bnLight4.Name = "bnLight4";
this.bnLight4.Tag = "3"; this.bnLight4.Tag = "3";
this.toolTip1.SetToolTip(this.bnLight4, resources.GetString("bnLight4.ToolTip"));
this.bnLight4.UseVisualStyleBackColor = false; this.bnLight4.UseVisualStyleBackColor = false;
this.bnLight4.Click += new System.EventHandler(this.EditCustomLed); this.bnLight4.Click += new System.EventHandler(this.EditCustomLed);
// //
@ -651,34 +611,30 @@
// //
resources.ApplyResources(this.lbNoControllers, "lbNoControllers"); resources.ApplyResources(this.lbNoControllers, "lbNoControllers");
this.lbNoControllers.Name = "lbNoControllers"; this.lbNoControllers.Name = "lbNoControllers";
this.toolTip1.SetToolTip(this.lbNoControllers, resources.GetString("lbNoControllers.ToolTip"));
// //
// tabProfiles // tabProfiles
// //
resources.ApplyResources(this.tabProfiles, "tabProfiles");
this.tabProfiles.Controls.Add(this.lBProfiles); this.tabProfiles.Controls.Add(this.lBProfiles);
this.tabProfiles.Controls.Add(this.tSOptions); this.tabProfiles.Controls.Add(this.tSOptions);
this.tabProfiles.Controls.Add(this.toolStrip1); this.tabProfiles.Controls.Add(this.toolStrip1);
resources.ApplyResources(this.tabProfiles, "tabProfiles");
this.tabProfiles.Name = "tabProfiles"; this.tabProfiles.Name = "tabProfiles";
this.toolTip1.SetToolTip(this.tabProfiles, resources.GetString("tabProfiles.ToolTip"));
this.tabProfiles.UseVisualStyleBackColor = true; this.tabProfiles.UseVisualStyleBackColor = true;
// //
// lBProfiles // lBProfiles
// //
resources.ApplyResources(this.lBProfiles, "lBProfiles");
this.lBProfiles.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lBProfiles.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.lBProfiles.ContextMenuStrip = this.cMProfile; this.lBProfiles.ContextMenuStrip = this.cMProfile;
resources.ApplyResources(this.lBProfiles, "lBProfiles");
this.lBProfiles.FormattingEnabled = true; this.lBProfiles.FormattingEnabled = true;
this.lBProfiles.MultiColumn = true; this.lBProfiles.MultiColumn = true;
this.lBProfiles.Name = "lBProfiles"; this.lBProfiles.Name = "lBProfiles";
this.toolTip1.SetToolTip(this.lBProfiles, resources.GetString("lBProfiles.ToolTip"));
this.lBProfiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lBProfiles_KeyDown); this.lBProfiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lBProfiles_KeyDown);
this.lBProfiles.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDoubleClick); this.lBProfiles.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDoubleClick);
this.lBProfiles.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDown); this.lBProfiles.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDown);
// //
// cMProfile // cMProfile
// //
resources.ApplyResources(this.cMProfile, "cMProfile");
this.cMProfile.ImageScalingSize = new System.Drawing.Size(24, 24); this.cMProfile.ImageScalingSize = new System.Drawing.Size(24, 24);
this.cMProfile.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cMProfile.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.editToolStripMenuItem, this.editToolStripMenuItem,
@ -692,7 +648,7 @@
this.importToolStripMenuItem, this.importToolStripMenuItem,
this.exportToolStripMenuItem}); this.exportToolStripMenuItem});
this.cMProfile.Name = "cMProfile"; this.cMProfile.Name = "cMProfile";
this.toolTip1.SetToolTip(this.cMProfile, resources.GetString("cMProfile.ToolTip")); resources.ApplyResources(this.cMProfile, "cMProfile");
// //
// editToolStripMenuItem // editToolStripMenuItem
// //
@ -702,61 +658,60 @@
// //
// assignToController1ToolStripMenuItem // assignToController1ToolStripMenuItem
// //
resources.ApplyResources(this.assignToController1ToolStripMenuItem, "assignToController1ToolStripMenuItem");
this.assignToController1ToolStripMenuItem.Name = "assignToController1ToolStripMenuItem"; this.assignToController1ToolStripMenuItem.Name = "assignToController1ToolStripMenuItem";
resources.ApplyResources(this.assignToController1ToolStripMenuItem, "assignToController1ToolStripMenuItem");
this.assignToController1ToolStripMenuItem.Click += new System.EventHandler(this.assignToController1ToolStripMenuItem_Click); this.assignToController1ToolStripMenuItem.Click += new System.EventHandler(this.assignToController1ToolStripMenuItem_Click);
// //
// assignToController2ToolStripMenuItem // assignToController2ToolStripMenuItem
// //
resources.ApplyResources(this.assignToController2ToolStripMenuItem, "assignToController2ToolStripMenuItem");
this.assignToController2ToolStripMenuItem.Name = "assignToController2ToolStripMenuItem"; this.assignToController2ToolStripMenuItem.Name = "assignToController2ToolStripMenuItem";
resources.ApplyResources(this.assignToController2ToolStripMenuItem, "assignToController2ToolStripMenuItem");
this.assignToController2ToolStripMenuItem.Click += new System.EventHandler(this.assignToController2ToolStripMenuItem_Click); this.assignToController2ToolStripMenuItem.Click += new System.EventHandler(this.assignToController2ToolStripMenuItem_Click);
// //
// assignToController3ToolStripMenuItem // assignToController3ToolStripMenuItem
// //
resources.ApplyResources(this.assignToController3ToolStripMenuItem, "assignToController3ToolStripMenuItem");
this.assignToController3ToolStripMenuItem.Name = "assignToController3ToolStripMenuItem"; this.assignToController3ToolStripMenuItem.Name = "assignToController3ToolStripMenuItem";
resources.ApplyResources(this.assignToController3ToolStripMenuItem, "assignToController3ToolStripMenuItem");
this.assignToController3ToolStripMenuItem.Click += new System.EventHandler(this.assignToController3ToolStripMenuItem_Click); this.assignToController3ToolStripMenuItem.Click += new System.EventHandler(this.assignToController3ToolStripMenuItem_Click);
// //
// assignToController4ToolStripMenuItem // assignToController4ToolStripMenuItem
// //
resources.ApplyResources(this.assignToController4ToolStripMenuItem, "assignToController4ToolStripMenuItem");
this.assignToController4ToolStripMenuItem.Name = "assignToController4ToolStripMenuItem"; this.assignToController4ToolStripMenuItem.Name = "assignToController4ToolStripMenuItem";
resources.ApplyResources(this.assignToController4ToolStripMenuItem, "assignToController4ToolStripMenuItem");
this.assignToController4ToolStripMenuItem.Click += new System.EventHandler(this.assignToController4ToolStripMenuItem_Click); this.assignToController4ToolStripMenuItem.Click += new System.EventHandler(this.assignToController4ToolStripMenuItem_Click);
// //
// deleteToolStripMenuItem // deleteToolStripMenuItem
// //
resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem"; this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.tsBDeleteProfle_Click); this.deleteToolStripMenuItem.Click += new System.EventHandler(this.tsBDeleteProfle_Click);
// //
// duplicateToolStripMenuItem // duplicateToolStripMenuItem
// //
resources.ApplyResources(this.duplicateToolStripMenuItem, "duplicateToolStripMenuItem");
this.duplicateToolStripMenuItem.Name = "duplicateToolStripMenuItem"; this.duplicateToolStripMenuItem.Name = "duplicateToolStripMenuItem";
resources.ApplyResources(this.duplicateToolStripMenuItem, "duplicateToolStripMenuItem");
this.duplicateToolStripMenuItem.Click += new System.EventHandler(this.tSBDupProfile_Click); this.duplicateToolStripMenuItem.Click += new System.EventHandler(this.tSBDupProfile_Click);
// //
// newProfileToolStripMenuItem // newProfileToolStripMenuItem
// //
resources.ApplyResources(this.newProfileToolStripMenuItem, "newProfileToolStripMenuItem");
this.newProfileToolStripMenuItem.Name = "newProfileToolStripMenuItem"; this.newProfileToolStripMenuItem.Name = "newProfileToolStripMenuItem";
resources.ApplyResources(this.newProfileToolStripMenuItem, "newProfileToolStripMenuItem");
this.newProfileToolStripMenuItem.Click += new System.EventHandler(this.tsBNewProfile_Click); this.newProfileToolStripMenuItem.Click += new System.EventHandler(this.tsBNewProfile_Click);
// //
// importToolStripMenuItem // importToolStripMenuItem
// //
resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem");
this.importToolStripMenuItem.Name = "importToolStripMenuItem"; this.importToolStripMenuItem.Name = "importToolStripMenuItem";
resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem");
this.importToolStripMenuItem.Click += new System.EventHandler(this.tSBImportProfile_Click); this.importToolStripMenuItem.Click += new System.EventHandler(this.tSBImportProfile_Click);
// //
// exportToolStripMenuItem // exportToolStripMenuItem
// //
resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem");
this.exportToolStripMenuItem.Name = "exportToolStripMenuItem"; this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem");
this.exportToolStripMenuItem.Click += new System.EventHandler(this.tSBExportProfile_Click); this.exportToolStripMenuItem.Click += new System.EventHandler(this.tSBExportProfile_Click);
// //
// tSOptions // tSOptions
// //
resources.ApplyResources(this.tSOptions, "tSOptions");
this.tSOptions.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; this.tSOptions.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.tSOptions.ImageScalingSize = new System.Drawing.Size(20, 20); this.tSOptions.ImageScalingSize = new System.Drawing.Size(20, 20);
this.tSOptions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tSOptions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
@ -766,55 +721,54 @@
this.tSBCancel, this.tSBCancel,
this.toolStripSeparator3, this.toolStripSeparator3,
this.tSBKeepSize}); this.tSBKeepSize});
resources.ApplyResources(this.tSOptions, "tSOptions");
this.tSOptions.Name = "tSOptions"; this.tSOptions.Name = "tSOptions";
this.tSOptions.ShowItemToolTips = false; this.tSOptions.ShowItemToolTips = false;
this.toolTip1.SetToolTip(this.tSOptions, resources.GetString("tSOptions.ToolTip"));
// //
// toolStripLabel1 // toolStripLabel1
// //
resources.ApplyResources(this.toolStripLabel1, "toolStripLabel1");
this.toolStripLabel1.Name = "toolStripLabel1"; this.toolStripLabel1.Name = "toolStripLabel1";
resources.ApplyResources(this.toolStripLabel1, "toolStripLabel1");
// //
// tSTBProfile // tSTBProfile
// //
resources.ApplyResources(this.tSTBProfile, "tSTBProfile");
this.tSTBProfile.ForeColor = System.Drawing.SystemColors.GrayText; this.tSTBProfile.ForeColor = System.Drawing.SystemColors.GrayText;
this.tSTBProfile.Name = "tSTBProfile"; this.tSTBProfile.Name = "tSTBProfile";
resources.ApplyResources(this.tSTBProfile, "tSTBProfile");
this.tSTBProfile.Enter += new System.EventHandler(this.tBProfile_Enter); this.tSTBProfile.Enter += new System.EventHandler(this.tBProfile_Enter);
this.tSTBProfile.Leave += new System.EventHandler(this.tBProfile_Leave); this.tSTBProfile.Leave += new System.EventHandler(this.tBProfile_Leave);
this.tSTBProfile.TextChanged += new System.EventHandler(this.tBProfile_TextChanged); this.tSTBProfile.TextChanged += new System.EventHandler(this.tBProfile_TextChanged);
// //
// tSBSaveProfile // tSBSaveProfile
// //
resources.ApplyResources(this.tSBSaveProfile, "tSBSaveProfile");
this.tSBSaveProfile.AutoToolTip = false; this.tSBSaveProfile.AutoToolTip = false;
this.tSBSaveProfile.Image = global::DS4Windows.Properties.Resources.saveprofile; this.tSBSaveProfile.Image = global::DS4Windows.Properties.Resources.saveprofile;
resources.ApplyResources(this.tSBSaveProfile, "tSBSaveProfile");
this.tSBSaveProfile.Name = "tSBSaveProfile"; this.tSBSaveProfile.Name = "tSBSaveProfile";
this.tSBSaveProfile.Click += new System.EventHandler(this.tSBSaveProfile_Click); this.tSBSaveProfile.Click += new System.EventHandler(this.tSBSaveProfile_Click);
// //
// tSBCancel // tSBCancel
// //
resources.ApplyResources(this.tSBCancel, "tSBCancel");
this.tSBCancel.AutoToolTip = false; this.tSBCancel.AutoToolTip = false;
this.tSBCancel.Image = global::DS4Windows.Properties.Resources.delete; this.tSBCancel.Image = global::DS4Windows.Properties.Resources.delete;
resources.ApplyResources(this.tSBCancel, "tSBCancel");
this.tSBCancel.Name = "tSBCancel"; this.tSBCancel.Name = "tSBCancel";
this.tSBCancel.Click += new System.EventHandler(this.tSBCancel_Click); this.tSBCancel.Click += new System.EventHandler(this.tSBCancel_Click);
// //
// toolStripSeparator3 // toolStripSeparator3
// //
resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
this.toolStripSeparator3.Name = "toolStripSeparator3"; this.toolStripSeparator3.Name = "toolStripSeparator3";
resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
// //
// tSBKeepSize // tSBKeepSize
// //
resources.ApplyResources(this.tSBKeepSize, "tSBKeepSize");
this.tSBKeepSize.Image = global::DS4Windows.Properties.Resources.size; this.tSBKeepSize.Image = global::DS4Windows.Properties.Resources.size;
resources.ApplyResources(this.tSBKeepSize, "tSBKeepSize");
this.tSBKeepSize.Name = "tSBKeepSize"; this.tSBKeepSize.Name = "tSBKeepSize";
this.tSBKeepSize.Click += new System.EventHandler(this.tSBKeepSize_Click); this.tSBKeepSize.Click += new System.EventHandler(this.tSBKeepSize_Click);
// //
// toolStrip1 // toolStrip1
// //
resources.ApplyResources(this.toolStrip1, "toolStrip1");
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
@ -824,20 +778,20 @@
this.tSBDupProfile, this.tSBDupProfile,
this.tSBImportProfile, this.tSBImportProfile,
this.tSBExportProfile}); this.tSBExportProfile});
resources.ApplyResources(this.toolStrip1, "toolStrip1");
this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Name = "toolStrip1";
this.toolTip1.SetToolTip(this.toolStrip1, resources.GetString("toolStrip1.ToolTip"));
// //
// tsBNewProfle // tsBNewProfle
// //
resources.ApplyResources(this.tsBNewProfle, "tsBNewProfle");
this.tsBNewProfle.Image = global::DS4Windows.Properties.Resources.newprofile; this.tsBNewProfle.Image = global::DS4Windows.Properties.Resources.newprofile;
resources.ApplyResources(this.tsBNewProfle, "tsBNewProfle");
this.tsBNewProfle.Name = "tsBNewProfle"; this.tsBNewProfle.Name = "tsBNewProfle";
this.tsBNewProfle.Click += new System.EventHandler(this.tsBNewProfile_Click); this.tsBNewProfle.Click += new System.EventHandler(this.tsBNewProfile_Click);
// //
// tsBEditProfile // tsBEditProfile
// //
resources.ApplyResources(this.tsBEditProfile, "tsBEditProfile");
this.tsBEditProfile.Image = global::DS4Windows.Properties.Resources.edit; this.tsBEditProfile.Image = global::DS4Windows.Properties.Resources.edit;
resources.ApplyResources(this.tsBEditProfile, "tsBEditProfile");
this.tsBEditProfile.Name = "tsBEditProfile"; this.tsBEditProfile.Name = "tsBEditProfile";
this.tsBEditProfile.Click += new System.EventHandler(this.tsBNEditProfile_Click); this.tsBEditProfile.Click += new System.EventHandler(this.tsBNEditProfile_Click);
// //
@ -855,8 +809,8 @@
// //
// tSBImportProfile // tSBImportProfile
// //
resources.ApplyResources(this.tSBImportProfile, "tSBImportProfile");
this.tSBImportProfile.Image = global::DS4Windows.Properties.Resources.import; this.tSBImportProfile.Image = global::DS4Windows.Properties.Resources.import;
resources.ApplyResources(this.tSBImportProfile, "tSBImportProfile");
this.tSBImportProfile.Name = "tSBImportProfile"; this.tSBImportProfile.Name = "tSBImportProfile";
this.tSBImportProfile.Click += new System.EventHandler(this.tSBImportProfile_Click); this.tSBImportProfile.Click += new System.EventHandler(this.tSBImportProfile_Click);
// //
@ -870,15 +824,13 @@
// //
resources.ApplyResources(this.tabAutoProfiles, "tabAutoProfiles"); resources.ApplyResources(this.tabAutoProfiles, "tabAutoProfiles");
this.tabAutoProfiles.Name = "tabAutoProfiles"; this.tabAutoProfiles.Name = "tabAutoProfiles";
this.toolTip1.SetToolTip(this.tabAutoProfiles, resources.GetString("tabAutoProfiles.ToolTip"));
this.tabAutoProfiles.UseVisualStyleBackColor = true; this.tabAutoProfiles.UseVisualStyleBackColor = true;
// //
// tabSettings // tabSettings
// //
resources.ApplyResources(this.tabSettings, "tabSettings");
this.tabSettings.Controls.Add(this.fLPSettings); this.tabSettings.Controls.Add(this.fLPSettings);
resources.ApplyResources(this.tabSettings, "tabSettings");
this.tabSettings.Name = "tabSettings"; this.tabSettings.Name = "tabSettings";
this.toolTip1.SetToolTip(this.tabSettings, resources.GetString("tabSettings.ToolTip"));
this.tabSettings.UseVisualStyleBackColor = true; this.tabSettings.UseVisualStyleBackColor = true;
// //
// fLPSettings // fLPSettings
@ -899,13 +851,11 @@
this.fLPSettings.Controls.Add(this.pnlXIPorts); this.fLPSettings.Controls.Add(this.pnlXIPorts);
this.fLPSettings.Controls.Add(this.flowLayoutPanel1); this.fLPSettings.Controls.Add(this.flowLayoutPanel1);
this.fLPSettings.Name = "fLPSettings"; this.fLPSettings.Name = "fLPSettings";
this.toolTip1.SetToolTip(this.fLPSettings, resources.GetString("fLPSettings.ToolTip"));
// //
// hideDS4CheckBox // hideDS4CheckBox
// //
resources.ApplyResources(this.hideDS4CheckBox, "hideDS4CheckBox"); resources.ApplyResources(this.hideDS4CheckBox, "hideDS4CheckBox");
this.hideDS4CheckBox.Name = "hideDS4CheckBox"; this.hideDS4CheckBox.Name = "hideDS4CheckBox";
this.toolTip1.SetToolTip(this.hideDS4CheckBox, resources.GetString("hideDS4CheckBox.ToolTip"));
this.hideDS4CheckBox.UseVisualStyleBackColor = true; this.hideDS4CheckBox.UseVisualStyleBackColor = true;
this.hideDS4CheckBox.CheckedChanged += new System.EventHandler(this.hideDS4CheckBox_CheckedChanged); this.hideDS4CheckBox.CheckedChanged += new System.EventHandler(this.hideDS4CheckBox_CheckedChanged);
// //
@ -915,7 +865,6 @@
this.cBSwipeProfiles.Checked = true; this.cBSwipeProfiles.Checked = true;
this.cBSwipeProfiles.CheckState = System.Windows.Forms.CheckState.Checked; this.cBSwipeProfiles.CheckState = System.Windows.Forms.CheckState.Checked;
this.cBSwipeProfiles.Name = "cBSwipeProfiles"; this.cBSwipeProfiles.Name = "cBSwipeProfiles";
this.toolTip1.SetToolTip(this.cBSwipeProfiles, resources.GetString("cBSwipeProfiles.ToolTip"));
this.cBSwipeProfiles.UseVisualStyleBackColor = true; this.cBSwipeProfiles.UseVisualStyleBackColor = true;
this.cBSwipeProfiles.CheckedChanged += new System.EventHandler(this.cBSwipeProfiles_CheckedChanged); this.cBSwipeProfiles.CheckedChanged += new System.EventHandler(this.cBSwipeProfiles_CheckedChanged);
// //
@ -923,7 +872,6 @@
// //
resources.ApplyResources(this.StartWindowsCheckBox, "StartWindowsCheckBox"); resources.ApplyResources(this.StartWindowsCheckBox, "StartWindowsCheckBox");
this.StartWindowsCheckBox.Name = "StartWindowsCheckBox"; this.StartWindowsCheckBox.Name = "StartWindowsCheckBox";
this.toolTip1.SetToolTip(this.StartWindowsCheckBox, resources.GetString("StartWindowsCheckBox.ToolTip"));
this.StartWindowsCheckBox.UseVisualStyleBackColor = true; this.StartWindowsCheckBox.UseVisualStyleBackColor = true;
this.StartWindowsCheckBox.CheckedChanged += new System.EventHandler(this.StartWindowsCheckBox_CheckedChanged); this.StartWindowsCheckBox.CheckedChanged += new System.EventHandler(this.StartWindowsCheckBox_CheckedChanged);
// //
@ -931,23 +879,20 @@
// //
resources.ApplyResources(this.startMinimizedCheckBox, "startMinimizedCheckBox"); resources.ApplyResources(this.startMinimizedCheckBox, "startMinimizedCheckBox");
this.startMinimizedCheckBox.Name = "startMinimizedCheckBox"; this.startMinimizedCheckBox.Name = "startMinimizedCheckBox";
this.toolTip1.SetToolTip(this.startMinimizedCheckBox, resources.GetString("startMinimizedCheckBox.ToolTip"));
this.startMinimizedCheckBox.UseVisualStyleBackColor = true; this.startMinimizedCheckBox.UseVisualStyleBackColor = true;
this.startMinimizedCheckBox.CheckedChanged += new System.EventHandler(this.startMinimizedCheckBox_CheckedChanged); this.startMinimizedCheckBox.CheckedChanged += new System.EventHandler(this.startMinimizedCheckBox_CheckedChanged);
// //
// panel1 // panel1
// //
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Controls.Add(this.lbNotifications); this.panel1.Controls.Add(this.lbNotifications);
this.panel1.Controls.Add(this.cBoxNotifications); this.panel1.Controls.Add(this.cBoxNotifications);
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1"; this.panel1.Name = "panel1";
this.toolTip1.SetToolTip(this.panel1, resources.GetString("panel1.ToolTip"));
// //
// lbNotifications // lbNotifications
// //
resources.ApplyResources(this.lbNotifications, "lbNotifications"); resources.ApplyResources(this.lbNotifications, "lbNotifications");
this.lbNotifications.Name = "lbNotifications"; this.lbNotifications.Name = "lbNotifications";
this.toolTip1.SetToolTip(this.lbNotifications, resources.GetString("lbNotifications.ToolTip"));
// //
// cBoxNotifications // cBoxNotifications
// //
@ -959,25 +904,22 @@
resources.GetString("cBoxNotifications.Items1"), resources.GetString("cBoxNotifications.Items1"),
resources.GetString("cBoxNotifications.Items2")}); resources.GetString("cBoxNotifications.Items2")});
this.cBoxNotifications.Name = "cBoxNotifications"; this.cBoxNotifications.Name = "cBoxNotifications";
this.toolTip1.SetToolTip(this.cBoxNotifications, resources.GetString("cBoxNotifications.ToolTip"));
this.cBoxNotifications.SelectedIndexChanged += new System.EventHandler(this.cBoxNotifications_SelectedIndexChanged); this.cBoxNotifications.SelectedIndexChanged += new System.EventHandler(this.cBoxNotifications_SelectedIndexChanged);
// //
// cBDisconnectBT // cBDisconnectBT
// //
resources.ApplyResources(this.cBDisconnectBT, "cBDisconnectBT"); resources.ApplyResources(this.cBDisconnectBT, "cBDisconnectBT");
this.cBDisconnectBT.Name = "cBDisconnectBT"; this.cBDisconnectBT.Name = "cBDisconnectBT";
this.toolTip1.SetToolTip(this.cBDisconnectBT, resources.GetString("cBDisconnectBT.ToolTip"));
this.cBDisconnectBT.UseVisualStyleBackColor = true; this.cBDisconnectBT.UseVisualStyleBackColor = true;
this.cBDisconnectBT.CheckedChanged += new System.EventHandler(this.cBDisconnectBT_CheckedChanged); this.cBDisconnectBT.CheckedChanged += new System.EventHandler(this.cBDisconnectBT_CheckedChanged);
// //
// panel2 // panel2
// //
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Controls.Add(this.nUDLatency); this.panel2.Controls.Add(this.nUDLatency);
this.panel2.Controls.Add(this.lbMsLatency); this.panel2.Controls.Add(this.lbMsLatency);
this.panel2.Controls.Add(this.cBFlashWhenLate); this.panel2.Controls.Add(this.cBFlashWhenLate);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2"; this.panel2.Name = "panel2";
this.toolTip1.SetToolTip(this.panel2, resources.GetString("panel2.ToolTip"));
// //
// nUDLatency // nUDLatency
// //
@ -988,7 +930,6 @@
0, 0,
0}); 0});
this.nUDLatency.Name = "nUDLatency"; this.nUDLatency.Name = "nUDLatency";
this.toolTip1.SetToolTip(this.nUDLatency, resources.GetString("nUDLatency.ToolTip"));
this.nUDLatency.Value = new decimal(new int[] { this.nUDLatency.Value = new decimal(new int[] {
10, 10,
0, 0,
@ -1000,7 +941,6 @@
// //
resources.ApplyResources(this.lbMsLatency, "lbMsLatency"); resources.ApplyResources(this.lbMsLatency, "lbMsLatency");
this.lbMsLatency.Name = "lbMsLatency"; this.lbMsLatency.Name = "lbMsLatency";
this.toolTip1.SetToolTip(this.lbMsLatency, resources.GetString("lbMsLatency.ToolTip"));
// //
// cBFlashWhenLate // cBFlashWhenLate
// //
@ -1008,7 +948,6 @@
this.cBFlashWhenLate.Checked = true; this.cBFlashWhenLate.Checked = true;
this.cBFlashWhenLate.CheckState = System.Windows.Forms.CheckState.Checked; this.cBFlashWhenLate.CheckState = System.Windows.Forms.CheckState.Checked;
this.cBFlashWhenLate.Name = "cBFlashWhenLate"; this.cBFlashWhenLate.Name = "cBFlashWhenLate";
this.toolTip1.SetToolTip(this.cBFlashWhenLate, resources.GetString("cBFlashWhenLate.ToolTip"));
this.cBFlashWhenLate.UseVisualStyleBackColor = true; this.cBFlashWhenLate.UseVisualStyleBackColor = true;
this.cBFlashWhenLate.CheckedChanged += new System.EventHandler(this.cBFlashWhenLate_CheckedChanged); this.cBFlashWhenLate.CheckedChanged += new System.EventHandler(this.cBFlashWhenLate_CheckedChanged);
// //
@ -1016,7 +955,6 @@
// //
resources.ApplyResources(this.cBCloseMini, "cBCloseMini"); resources.ApplyResources(this.cBCloseMini, "cBCloseMini");
this.cBCloseMini.Name = "cBCloseMini"; this.cBCloseMini.Name = "cBCloseMini";
this.toolTip1.SetToolTip(this.cBCloseMini, resources.GetString("cBCloseMini.ToolTip"));
this.cBCloseMini.UseVisualStyleBackColor = true; this.cBCloseMini.UseVisualStyleBackColor = true;
this.cBCloseMini.CheckedChanged += new System.EventHandler(this.cBCloseMini_CheckedChanged); this.cBCloseMini.CheckedChanged += new System.EventHandler(this.cBCloseMini_CheckedChanged);
// //
@ -1024,7 +962,6 @@
// //
resources.ApplyResources(this.cBQuickCharge, "cBQuickCharge"); resources.ApplyResources(this.cBQuickCharge, "cBQuickCharge");
this.cBQuickCharge.Name = "cBQuickCharge"; this.cBQuickCharge.Name = "cBQuickCharge";
this.toolTip1.SetToolTip(this.cBQuickCharge, resources.GetString("cBQuickCharge.ToolTip"));
this.cBQuickCharge.UseVisualStyleBackColor = true; this.cBQuickCharge.UseVisualStyleBackColor = true;
this.cBQuickCharge.CheckedChanged += new System.EventHandler(this.cBQuickCharge_CheckedChanged); this.cBQuickCharge.CheckedChanged += new System.EventHandler(this.cBQuickCharge_CheckedChanged);
// //
@ -1034,7 +971,6 @@
this.cBDownloadLangauge.Checked = true; this.cBDownloadLangauge.Checked = true;
this.cBDownloadLangauge.CheckState = System.Windows.Forms.CheckState.Checked; this.cBDownloadLangauge.CheckState = System.Windows.Forms.CheckState.Checked;
this.cBDownloadLangauge.Name = "cBDownloadLangauge"; this.cBDownloadLangauge.Name = "cBDownloadLangauge";
this.toolTip1.SetToolTip(this.cBDownloadLangauge, resources.GetString("cBDownloadLangauge.ToolTip"));
this.cBDownloadLangauge.UseVisualStyleBackColor = true; this.cBDownloadLangauge.UseVisualStyleBackColor = true;
this.cBDownloadLangauge.CheckedChanged += new System.EventHandler(this.cBDownloadLangauge_CheckedChanged); this.cBDownloadLangauge.CheckedChanged += new System.EventHandler(this.cBDownloadLangauge_CheckedChanged);
// //
@ -1042,18 +978,16 @@
// //
resources.ApplyResources(this.cBUpdate, "cBUpdate"); resources.ApplyResources(this.cBUpdate, "cBUpdate");
this.cBUpdate.Name = "cBUpdate"; this.cBUpdate.Name = "cBUpdate";
this.toolTip1.SetToolTip(this.cBUpdate, resources.GetString("cBUpdate.ToolTip"));
this.cBUpdate.UseVisualStyleBackColor = true; this.cBUpdate.UseVisualStyleBackColor = true;
this.cBUpdate.CheckedChanged += new System.EventHandler(this.cBUpdate_CheckedChanged); this.cBUpdate.CheckedChanged += new System.EventHandler(this.cBUpdate_CheckedChanged);
// //
// pNUpdate // pNUpdate
// //
resources.ApplyResources(this.pNUpdate, "pNUpdate");
this.pNUpdate.Controls.Add(this.cBUpdateTime); this.pNUpdate.Controls.Add(this.cBUpdateTime);
this.pNUpdate.Controls.Add(this.lbCheckEvery); this.pNUpdate.Controls.Add(this.lbCheckEvery);
this.pNUpdate.Controls.Add(this.nUDUpdateTime); this.pNUpdate.Controls.Add(this.nUDUpdateTime);
resources.ApplyResources(this.pNUpdate, "pNUpdate");
this.pNUpdate.Name = "pNUpdate"; this.pNUpdate.Name = "pNUpdate";
this.toolTip1.SetToolTip(this.pNUpdate, resources.GetString("pNUpdate.ToolTip"));
// //
// cBUpdateTime // cBUpdateTime
// //
@ -1064,14 +998,12 @@
resources.GetString("cBUpdateTime.Items"), resources.GetString("cBUpdateTime.Items"),
resources.GetString("cBUpdateTime.Items1")}); resources.GetString("cBUpdateTime.Items1")});
this.cBUpdateTime.Name = "cBUpdateTime"; this.cBUpdateTime.Name = "cBUpdateTime";
this.toolTip1.SetToolTip(this.cBUpdateTime, resources.GetString("cBUpdateTime.ToolTip"));
this.cBUpdateTime.SelectedIndexChanged += new System.EventHandler(this.cBUpdateTime_SelectedIndexChanged); this.cBUpdateTime.SelectedIndexChanged += new System.EventHandler(this.cBUpdateTime_SelectedIndexChanged);
// //
// lbCheckEvery // lbCheckEvery
// //
resources.ApplyResources(this.lbCheckEvery, "lbCheckEvery"); resources.ApplyResources(this.lbCheckEvery, "lbCheckEvery");
this.lbCheckEvery.Name = "lbCheckEvery"; this.lbCheckEvery.Name = "lbCheckEvery";
this.toolTip1.SetToolTip(this.lbCheckEvery, resources.GetString("lbCheckEvery.ToolTip"));
// //
// nUDUpdateTime // nUDUpdateTime
// //
@ -1082,17 +1014,15 @@
0, 0,
0}); 0});
this.nUDUpdateTime.Name = "nUDUpdateTime"; this.nUDUpdateTime.Name = "nUDUpdateTime";
this.toolTip1.SetToolTip(this.nUDUpdateTime, resources.GetString("nUDUpdateTime.ToolTip"));
this.nUDUpdateTime.ValueChanged += new System.EventHandler(this.nUDUpdateTime_ValueChanged); this.nUDUpdateTime.ValueChanged += new System.EventHandler(this.nUDUpdateTime_ValueChanged);
// //
// pnlXIPorts // pnlXIPorts
// //
resources.ApplyResources(this.pnlXIPorts, "pnlXIPorts");
this.pnlXIPorts.Controls.Add(this.lbUseXIPorts); this.pnlXIPorts.Controls.Add(this.lbUseXIPorts);
this.pnlXIPorts.Controls.Add(this.nUDXIPorts); this.pnlXIPorts.Controls.Add(this.nUDXIPorts);
this.pnlXIPorts.Controls.Add(this.lbLastXIPort); this.pnlXIPorts.Controls.Add(this.lbLastXIPort);
resources.ApplyResources(this.pnlXIPorts, "pnlXIPorts");
this.pnlXIPorts.Name = "pnlXIPorts"; this.pnlXIPorts.Name = "pnlXIPorts";
this.toolTip1.SetToolTip(this.pnlXIPorts, resources.GetString("pnlXIPorts.ToolTip"));
this.pnlXIPorts.MouseEnter += new System.EventHandler(this.pnlXIPorts_MouseEnter); this.pnlXIPorts.MouseEnter += new System.EventHandler(this.pnlXIPorts_MouseEnter);
this.pnlXIPorts.MouseLeave += new System.EventHandler(this.pnlXIPorts_MouseLeave); this.pnlXIPorts.MouseLeave += new System.EventHandler(this.pnlXIPorts_MouseLeave);
// //
@ -1100,7 +1030,6 @@
// //
resources.ApplyResources(this.lbUseXIPorts, "lbUseXIPorts"); resources.ApplyResources(this.lbUseXIPorts, "lbUseXIPorts");
this.lbUseXIPorts.Name = "lbUseXIPorts"; this.lbUseXIPorts.Name = "lbUseXIPorts";
this.toolTip1.SetToolTip(this.lbUseXIPorts, resources.GetString("lbUseXIPorts.ToolTip"));
// //
// nUDXIPorts // nUDXIPorts
// //
@ -1116,7 +1045,6 @@
0, 0,
0}); 0});
this.nUDXIPorts.Name = "nUDXIPorts"; this.nUDXIPorts.Name = "nUDXIPorts";
this.toolTip1.SetToolTip(this.nUDXIPorts, resources.GetString("nUDXIPorts.ToolTip"));
this.nUDXIPorts.Value = new decimal(new int[] { this.nUDXIPorts.Value = new decimal(new int[] {
1, 1,
0, 0,
@ -1130,7 +1058,6 @@
// //
resources.ApplyResources(this.lbLastXIPort, "lbLastXIPort"); resources.ApplyResources(this.lbLastXIPort, "lbLastXIPort");
this.lbLastXIPort.Name = "lbLastXIPort"; this.lbLastXIPort.Name = "lbLastXIPort";
this.toolTip1.SetToolTip(this.lbLastXIPort, resources.GetString("lbLastXIPort.ToolTip"));
// //
// flowLayoutPanel1 // flowLayoutPanel1
// //
@ -1141,14 +1068,12 @@
this.flowLayoutPanel1.Controls.Add(this.linkSetup); this.flowLayoutPanel1.Controls.Add(this.linkSetup);
this.flowLayoutPanel1.Controls.Add(this.lLBUpdate); this.flowLayoutPanel1.Controls.Add(this.lLBUpdate);
this.flowLayoutPanel1.Name = "flowLayoutPanel1"; this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.toolTip1.SetToolTip(this.flowLayoutPanel1, resources.GetString("flowLayoutPanel1.ToolTip"));
// //
// linkProfiles // linkProfiles
// //
resources.ApplyResources(this.linkProfiles, "linkProfiles"); resources.ApplyResources(this.linkProfiles, "linkProfiles");
this.linkProfiles.Name = "linkProfiles"; this.linkProfiles.Name = "linkProfiles";
this.linkProfiles.TabStop = true; this.linkProfiles.TabStop = true;
this.toolTip1.SetToolTip(this.linkProfiles, resources.GetString("linkProfiles.ToolTip"));
this.linkProfiles.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkProfiles_LinkClicked); this.linkProfiles.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkProfiles_LinkClicked);
// //
// lnkControllers // lnkControllers
@ -1156,7 +1081,6 @@
resources.ApplyResources(this.lnkControllers, "lnkControllers"); resources.ApplyResources(this.lnkControllers, "lnkControllers");
this.lnkControllers.Name = "lnkControllers"; this.lnkControllers.Name = "lnkControllers";
this.lnkControllers.TabStop = true; this.lnkControllers.TabStop = true;
this.toolTip1.SetToolTip(this.lnkControllers, resources.GetString("lnkControllers.ToolTip"));
this.lnkControllers.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkControllers_LinkClicked); this.lnkControllers.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkControllers_LinkClicked);
// //
// linkUninstall // linkUninstall
@ -1164,7 +1088,6 @@
resources.ApplyResources(this.linkUninstall, "linkUninstall"); resources.ApplyResources(this.linkUninstall, "linkUninstall");
this.linkUninstall.Name = "linkUninstall"; this.linkUninstall.Name = "linkUninstall";
this.linkUninstall.TabStop = true; this.linkUninstall.TabStop = true;
this.toolTip1.SetToolTip(this.linkUninstall, resources.GetString("linkUninstall.ToolTip"));
this.linkUninstall.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkUninstall_LinkClicked); this.linkUninstall.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkUninstall_LinkClicked);
// //
// linkSetup // linkSetup
@ -1172,7 +1095,6 @@
resources.ApplyResources(this.linkSetup, "linkSetup"); resources.ApplyResources(this.linkSetup, "linkSetup");
this.linkSetup.Name = "linkSetup"; this.linkSetup.Name = "linkSetup";
this.linkSetup.TabStop = true; this.linkSetup.TabStop = true;
this.toolTip1.SetToolTip(this.linkSetup, resources.GetString("linkSetup.ToolTip"));
this.linkSetup.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLSetup_LinkClicked); this.linkSetup.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLSetup_LinkClicked);
// //
// lLBUpdate // lLBUpdate
@ -1180,16 +1102,14 @@
resources.ApplyResources(this.lLBUpdate, "lLBUpdate"); resources.ApplyResources(this.lLBUpdate, "lLBUpdate");
this.lLBUpdate.Name = "lLBUpdate"; this.lLBUpdate.Name = "lLBUpdate";
this.lLBUpdate.TabStop = true; this.lLBUpdate.TabStop = true;
this.toolTip1.SetToolTip(this.lLBUpdate, resources.GetString("lLBUpdate.ToolTip"));
this.lLBUpdate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLBUpdate_LinkClicked); this.lLBUpdate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLBUpdate_LinkClicked);
// //
// tabLog // tabLog
// //
resources.ApplyResources(this.tabLog, "tabLog");
this.tabLog.Controls.Add(this.lvDebug); this.tabLog.Controls.Add(this.lvDebug);
this.tabLog.Controls.Add(this.btnClear); this.tabLog.Controls.Add(this.btnClear);
resources.ApplyResources(this.tabLog, "tabLog");
this.tabLog.Name = "tabLog"; this.tabLog.Name = "tabLog";
this.toolTip1.SetToolTip(this.tabLog, resources.GetString("tabLog.ToolTip"));
this.tabLog.UseVisualStyleBackColor = true; this.tabLog.UseVisualStyleBackColor = true;
// //
// saveProfiles // saveProfiles
@ -1198,7 +1118,6 @@
// //
// cMCustomLed // cMCustomLed
// //
resources.ApplyResources(this.cMCustomLed, "cMCustomLed");
this.cMCustomLed.ImageScalingSize = new System.Drawing.Size(20, 20); this.cMCustomLed.ImageScalingSize = new System.Drawing.Size(20, 20);
this.cMCustomLed.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cMCustomLed.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.useProfileColorToolStripMenuItem, this.useProfileColorToolStripMenuItem,
@ -1206,20 +1125,20 @@
this.cMCustomLed.Name = "cMCustomLed"; this.cMCustomLed.Name = "cMCustomLed";
this.cMCustomLed.ShowCheckMargin = true; this.cMCustomLed.ShowCheckMargin = true;
this.cMCustomLed.ShowImageMargin = false; this.cMCustomLed.ShowImageMargin = false;
this.toolTip1.SetToolTip(this.cMCustomLed, resources.GetString("cMCustomLed.ToolTip")); resources.ApplyResources(this.cMCustomLed, "cMCustomLed");
// //
// useProfileColorToolStripMenuItem // useProfileColorToolStripMenuItem
// //
resources.ApplyResources(this.useProfileColorToolStripMenuItem, "useProfileColorToolStripMenuItem");
this.useProfileColorToolStripMenuItem.Checked = true; this.useProfileColorToolStripMenuItem.Checked = true;
this.useProfileColorToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; this.useProfileColorToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.useProfileColorToolStripMenuItem.Name = "useProfileColorToolStripMenuItem"; this.useProfileColorToolStripMenuItem.Name = "useProfileColorToolStripMenuItem";
resources.ApplyResources(this.useProfileColorToolStripMenuItem, "useProfileColorToolStripMenuItem");
this.useProfileColorToolStripMenuItem.Click += new System.EventHandler(this.useProfileColorToolStripMenuItem_Click); this.useProfileColorToolStripMenuItem.Click += new System.EventHandler(this.useProfileColorToolStripMenuItem_Click);
// //
// useCustomColorToolStripMenuItem // useCustomColorToolStripMenuItem
// //
resources.ApplyResources(this.useCustomColorToolStripMenuItem, "useCustomColorToolStripMenuItem");
this.useCustomColorToolStripMenuItem.Name = "useCustomColorToolStripMenuItem"; this.useCustomColorToolStripMenuItem.Name = "useCustomColorToolStripMenuItem";
resources.ApplyResources(this.useCustomColorToolStripMenuItem, "useCustomColorToolStripMenuItem");
this.useCustomColorToolStripMenuItem.Click += new System.EventHandler(this.useCustomColorToolStripMenuItem_Click); this.useCustomColorToolStripMenuItem.Click += new System.EventHandler(this.useCustomColorToolStripMenuItem_Click);
// //
// advColorDialog // advColorDialog
@ -1228,14 +1147,13 @@
// //
// DS4Form // DS4Form
// //
resources.ApplyResources(this, "$this");
this.AllowDrop = true; this.AllowDrop = true;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.Color.White; this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.tabMain); this.Controls.Add(this.tabMain);
this.Controls.Add(this.pnlButton); this.Controls.Add(this.pnlButton);
this.Name = "DS4Form"; this.Name = "DS4Form";
this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip"));
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ScpForm_Closing); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ScpForm_Closing);
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragDrop); this.DragDrop += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragDrop);
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragEnter); this.DragEnter += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragEnter);

View File

@ -6743,7 +6743,7 @@
<value>171, 26</value> <value>171, 26</value>
</data> </data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve"> <data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>تكرير (Ctrl+C)</value> <value>تكرير (Ctrl+D)</value>
</data> </data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>171, 26</value> <value>171, 26</value>
@ -6845,7 +6845,7 @@
<value>كرر</value> <value>كرر</value>
</data> </data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve"> <data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>كرر السجل المحدد (Ctrl+C)</value> <value>كرر السجل المحدد (Ctrl+D)</value>
</data> </data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>77, 24</value> <value>77, 24</value>

View File

@ -329,7 +329,7 @@ namespace DS4Windows
hotkeysTimer.Start(); hotkeysTimer.Start();
hotkeysTimer.Tick += Hotkeys; hotkeysTimer.Tick += Hotkeys;
test.Tick += test_Tick; test.Tick += test_Tick;
if (!System.IO.Directory.Exists(appdatapath + "\\Virtual Bus Driver")) if (!Directory.Exists(appdatapath + "\\Virtual Bus Driver"))
linkUninstall.Visible = false; linkUninstall.Visible = false;
if (File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "\\DS4Windows.lnk")) if (File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "\\DS4Windows.lnk"))
{ {
@ -357,23 +357,6 @@ namespace DS4Windows
File.Move(exepath + "\\Update Files\\DS4Updater.exe", exepath + "\\DS4Updater.exe"); File.Move(exepath + "\\Update Files\\DS4Updater.exe", exepath + "\\DS4Updater.exe");
Directory.Delete(exepath + "\\Update Files"); Directory.Delete(exepath + "\\Update Files");
} }
if(FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileBuildPart == 32 &&
(!File.Exists(exepath + "\\DS4Updater.exe") ||
(File.Exists(exepath + "\\DS4Updater.exe") && FileVersionInfo.GetVersionInfo(exepath + "\\DS4Updater.exe").FileBuildPart < 32)))
{
Uri url2 = new Uri("https://github.com/Jays2Kings/DS4Windows/releases/download/v1.4.32/DS4Updater.exe");
WebClient wc2 = new WebClient();
if (appdatapath == exepath || !AdminNeeded())
{
File.Delete(exepath + "\\DS4Updater.exe");
wc2.DownloadFileAsync(url2, exepath + "\\DS4Updater.exe");
}
else
{
MessageBox.Show(Properties.Resources.PleaseDownloadUpdater);
Process.Start("https://github.com/Jays2Kings/DS4Windows/releases/download/v1.4.32/DS4Updater.exe");
}
}
} }
void NewVersion() void NewVersion()
@ -480,9 +463,9 @@ namespace DS4Windows
private void test_Tick(object sender, EventArgs e) private void test_Tick(object sender, EventArgs e)
{ {
/*testing values //testing values
lbTest.Visible = true; lbTest.Visible = true;
lbTest.Text = Program.rootHub.oldtouchvalue[0].ToString();//*/ lbTest.Text = ((int)(Program.rootHub.ExposedState[0].AccelX * 2) / 2f).ToString();
} }
void Hotkeys(object sender, EventArgs e) void Hotkeys(object sender, EventArgs e)
{ {
@ -932,13 +915,13 @@ namespace DS4Windows
private void lBProfiles_KeyDown(object sender, KeyEventArgs e) private void lBProfiles_KeyDown(object sender, KeyEventArgs e)
{ {
if (lBProfiles.SelectedIndex >= 0 && opt == null) if (lBProfiles.SelectedIndex >= 0 && !opt.Visible)
{ {
if (e.KeyValue == 13) if (e.KeyValue == 13)
ShowOptions(4, lBProfiles.SelectedItem.ToString()); ShowOptions(4, lBProfiles.SelectedItem.ToString());
if (e.KeyValue == 46) if (e.KeyValue == 46)
tsBDeleteProfle_Click(this, e); tsBDeleteProfle_Click(this, e);
if (e.KeyValue == 67 && e.Modifiers == Keys.Control) if (e.KeyValue == 68 && e.Modifiers == Keys.Control)
tSBDupProfile_Click(this, e); tSBDupProfile_Click(this, e);
} }

View File

@ -6744,7 +6744,7 @@
<value>226, 26</value> <value>226, 26</value>
</data> </data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve"> <data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Kopieren (Strg+C)</value> <value>Kopieren (Strg+D)</value>
</data> </data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>226, 26</value> <value>226, 26</value>

View File

@ -6743,7 +6743,7 @@
<value>240, 24</value> <value>240, 24</value>
</data> </data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve"> <data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Duplicar (Ctrl+C)</value> <value>Duplicar (Ctrl+D)</value>
</data> </data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>240, 24</value> <value>240, 24</value>
@ -6851,7 +6851,7 @@
<value>Duplicar</value> <value>Duplicar</value>
</data> </data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve"> <data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Duplicar perfil seleccionado (Ctrl+C)</value> <value>Duplicar perfil seleccionado (Ctrl+D)</value>
</data> </data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>91, 24</value> <value>91, 24</value>

View File

@ -6773,7 +6773,7 @@
<value>206, 26</value> <value>206, 26</value>
</data> </data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve"> <data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Dupliquer (Ctrl+C)</value> <value>Dupliquer (Ctrl+D)</value>
</data> </data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value> <value>206, 26</value>

View File

@ -121,7 +121,7 @@
<value>זמן</value> <value>זמן</value>
</data> </data>
<data name="chData.Text" xml:space="preserve"> <data name="chData.Text" xml:space="preserve">
<value>דאטה</value> <value>נתונים</value>
</data> </data>
<data name="btnStartStop.Text" xml:space="preserve"> <data name="btnStartStop.Text" xml:space="preserve">
<value>התחל</value> <value>התחל</value>
@ -6366,7 +6366,7 @@
<value>בקרים</value> <value>בקרים</value>
</data> </data>
<data name="btnConnectDS4Win10.Text" xml:space="preserve"> <data name="btnConnectDS4Win10.Text" xml:space="preserve">
<value>התחבר ל-DS4 בלעדית</value> <value>התחבר ל-DS4 בלעדית (ניסיוני)</value>
</data> </data>
<data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing">
<value>1085, 94</value> <value>1085, 94</value>
@ -6716,37 +6716,37 @@
<value>186, 26</value> <value>186, 26</value>
</data> </data>
<data name="assignToController1ToolStripMenuItem.Text" xml:space="preserve"> <data name="assignToController1ToolStripMenuItem.Text" xml:space="preserve">
<value>הגדר בבקר 1</value> <value>הגדר כבקר 1</value>
</data> </data>
<data name="assignToController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="assignToController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>186, 26</value> <value>186, 26</value>
</data> </data>
<data name="assignToController2ToolStripMenuItem.Text" xml:space="preserve"> <data name="assignToController2ToolStripMenuItem.Text" xml:space="preserve">
<value>הגדר בבקר 2</value> <value>הגדר כבקר 2</value>
</data> </data>
<data name="assignToController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="assignToController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>186, 26</value> <value>186, 26</value>
</data> </data>
<data name="assignToController3ToolStripMenuItem.Text" xml:space="preserve"> <data name="assignToController3ToolStripMenuItem.Text" xml:space="preserve">
<value>הגדר בבקר 3</value> <value>הגדר כבקר 3</value>
</data> </data>
<data name="assignToController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="assignToController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>186, 26</value> <value>186, 26</value>
</data> </data>
<data name="assignToController4ToolStripMenuItem.Text" xml:space="preserve"> <data name="assignToController4ToolStripMenuItem.Text" xml:space="preserve">
<value>הגדר בבקר 4</value> <value>הגדר כבקר 4</value>
</data> </data>
<data name="deleteToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="deleteToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>186, 26</value> <value>186, 26</value>
</data> </data>
<data name="deleteToolStripMenuItem.Text" xml:space="preserve"> <data name="deleteToolStripMenuItem.Text" xml:space="preserve">
<value>מחיקה (Delete)</value> <value>מחק (Delete)</value>
</data> </data>
<data name="duplicateToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="duplicateToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>186, 26</value> <value>186, 26</value>
</data> </data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve"> <data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>שכפל (Ctrl+C)</value> <value>שכפל (Ctrl+D)</value>
</data> </data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>186, 26</value> <value>186, 26</value>
@ -6851,7 +6851,7 @@
<value>שכפל</value> <value>שכפל</value>
</data> </data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve"> <data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>שכפל את הפרופיל הנבחר</value> <value>שכפל את הפרופיל הנבחר (Ctrl+D)</value>
</data> </data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>60, 24</value> <value>60, 24</value>
@ -6860,7 +6860,7 @@
<value>ייבא</value> <value>ייבא</value>
</data> </data>
<data name="tSBImportProfile.ToolTipText" xml:space="preserve"> <data name="tSBImportProfile.ToolTipText" xml:space="preserve">
<value>ייבא את הפרופיל הנבחר</value> <value>ייבא פרופיל/ים</value>
</data> </data>
<data name="tSBExportProfile.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="tSBExportProfile.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
@ -6940,7 +6940,7 @@
<value>224, 21</value> <value>224, 21</value>
</data> </data>
<data name="cBDisconnectBT.Text" xml:space="preserve"> <data name="cBDisconnectBT.Text" xml:space="preserve">
<value>נתק Bluetooth בעת השימוש בבקר</value> <value>נתק Bluetooth בעת הסגירה</value>
</data> </data>
<data name="panel2.Size" type="System.Drawing.Size, System.Drawing"> <data name="panel2.Size" type="System.Drawing.Size, System.Drawing">
<value>269, 28</value> <value>269, 28</value>
@ -7065,4 +7065,7 @@
<data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve"> <data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve">
<value>שימוש בצבע מסוים</value> <value>שימוש בצבע מסוים</value>
</data> </data>
<data name="cBCloseMini.Text" xml:space="preserve">
<value>סגירה ממזערת</value>
</data>
</root> </root>

View File

@ -6737,7 +6737,7 @@
<value>233, 26</value> <value>233, 26</value>
</data> </data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve"> <data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Duplica (Ctrl+C)</value> <value>Duplica (Ctrl+D)</value>
</data> </data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>233, 26</value> <value>233, 26</value>
@ -6845,7 +6845,7 @@
<value>Duplica</value> <value>Duplica</value>
</data> </data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve"> <data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Duplica Profilo Selezionato (Ctrl+C)</value> <value>Duplica Profilo Selezionato (Ctrl+D)</value>
</data> </data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>86, 24</value> <value>86, 24</value>
@ -7035,4 +7035,31 @@
<data name="tabLog.Text" xml:space="preserve"> <data name="tabLog.Text" xml:space="preserve">
<value>Registro</value> <value>Registro</value>
</data> </data>
<data name="btnConnectDS4Win10.Text" xml:space="preserve">
<value>Connetti Solo DS4 (sperimentale)</value>
</data>
<data name="cBoxNotifications.Items" xml:space="preserve">
<value>Nessuno</value>
</data>
<data name="cBoxNotifications.Items1" xml:space="preserve">
<value>Solo Avvisi</value>
</data>
<data name="cBoxNotifications.Items2" xml:space="preserve">
<value>Tutto</value>
</data>
<data name="chData.Text" xml:space="preserve">
<value>Data</value>
</data>
<data name="lbID.Text" xml:space="preserve">
<value>ID</value>
</data>
<data name="llbHelp.Text" xml:space="preserve">
<value>Hotkeys/About</value>
</data>
<data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve">
<value>Usa Colore Personalizzato</value>
</data>
<data name="useProfileColorToolStripMenuItem.Text" xml:space="preserve">
<value>Usa Colore Profilo</value>
</data>
</root> </root>

View File

@ -6746,7 +6746,7 @@
<value>202, 26</value> <value>202, 26</value>
</data> </data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve"> <data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Duplicar (Ctrl+C)</value> <value>Duplicar (Ctrl+D)</value>
</data> </data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>202, 26</value> <value>202, 26</value>
@ -6854,7 +6854,7 @@
<value>Duplicar</value> <value>Duplicar</value>
</data> </data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve"> <data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Duplicar perfil selecionado (Ctrl+C)</value> <value>Duplicar perfil selecionado (Ctrl+D)</value>
</data> </data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>91, 24</value> <value>91, 24</value>

File diff suppressed because it is too large Load Diff

View File

@ -6752,7 +6752,7 @@
<value>207, 26</value> <value>207, 26</value>
</data> </data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve"> <data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Duplică (Ctrl+C)</value> <value>Duplică (Ctrl+D)</value>
</data> </data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 26</value> <value>207, 26</value>
@ -6857,7 +6857,7 @@
<value>Duplică</value> <value>Duplică</value>
</data> </data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve"> <data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Duplică profilul selectat (Ctrl+C)</value> <value>Duplică profilul selectat (Ctrl+D)</value>
</data> </data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>86, 24</value> <value>86, 24</value>

View File

@ -6881,7 +6881,7 @@
<value>Сделать копию</value> <value>Сделать копию</value>
</data> </data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve"> <data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Сделать копию выбранного профиля (Ctrl+C)</value> <value>Сделать копию выбранного профиля (Ctrl+D)</value>
</data> </data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>88, 24</value> <value>88, 24</value>

View File

@ -6770,7 +6770,7 @@
<value>182, 26</value> <value>182, 26</value>
</data> </data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve"> <data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Klonla (Ctrl+C)</value> <value>Klonla (Ctrl+D)</value>
</data> </data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>182, 26</value> <value>182, 26</value>
@ -6875,7 +6875,7 @@
<value>Klonla</value> <value>Klonla</value>
</data> </data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve"> <data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Seçili Profili Klonla (Ctrl+C)</value> <value>Seçili Profili Klonla (Ctrl+D)</value>
</data> </data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>100, 24</value> <value>100, 24</value>

View File

@ -125,7 +125,7 @@
</data> </data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbTest.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbTest.Location" type="System.Drawing.Point, System.Drawing">
<value>832, 17</value> <value>823, 11</value>
</data> </data>
<data name="lbLastMessage.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbLastMessage.Size" type="System.Drawing.Size, System.Drawing">
<value>890, 22</value> <value>890, 22</value>
@ -142,6 +142,51 @@
<data name="btnClear.Text" xml:space="preserve"> <data name="btnClear.Text" xml:space="preserve">
<value>Xóa</value> <value>Xóa</value>
</data> </data>
<data name="editProfileForController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Sửa Profile của Controller 1</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Sửa Profile của Controller 2</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Sửa Profile của Controller 3</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Sửa Profile của Controller 4</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>262, 6</value>
</data>
<data name="startToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="startToolStripMenuItem.Text" xml:space="preserve">
<value>Bắt đầu</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>Mở</value>
</data>
<data name="exitToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>Thoát (Chuột giữa)</value>
</data>
<data name="cMTaskbar.Size" type="System.Drawing.Size, System.Drawing"> <data name="cMTaskbar.Size" type="System.Drawing.Size, System.Drawing">
<value>266, 192</value> <value>266, 192</value>
</data> </data>
@ -6317,59 +6362,14 @@
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
</value> </value>
</data> </data>
<data name="editProfileForController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Sửa Profile của Controller 1</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Sửa Profile của Controller 2</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Sửa Profile của Controller 3</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Sửa Profile của Controller 4</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>262, 6</value>
</data>
<data name="startToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="startToolStripMenuItem.Text" xml:space="preserve">
<value>Bắt đầu</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>Mở</value>
</data>
<data name="exitToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>265, 26</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>Thoát (Chuột giữa)</value>
</data>
<data name="btnConnectDS4Win10.Text" xml:space="preserve"> <data name="btnConnectDS4Win10.Text" xml:space="preserve">
<value>Kết nối DS4 qua cmd (thử nghiệm)</value> <value>Kết nối DS4 qua cmd (thử nghiệm)</value>
</data> </data>
<data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing">
<value>1085, 94</value> <value>1083, 94</value>
</data> </data>
<data name="bnLight3.Size" type="System.Drawing.Size, System.Drawing"> <data name="bnLight3.Size" type="System.Drawing.Size, System.Drawing">
<value>33, 28</value> <value>35, 28</value>
</data> </data>
<data name="pBStatus1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="pBStatus1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
@ -6427,44 +6427,44 @@
1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg==
</value> </value>
</data> </data>
<data name="pBStatus1.Location" type="System.Drawing.Point, System.Drawing">
<value>511, 26</value>
</data>
<data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing">
<value>1031, 94</value> <value>1029, 94</value>
</data> </data>
<data name="bnEditC3.Text" xml:space="preserve"> <data name="bnEditC3.Text" xml:space="preserve">
<value>Sửa</value> <value>Sửa</value>
</data> </data>
<data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing">
<value>1031, 130</value> <value>1029, 130</value>
</data> </data>
<data name="bnEditC4.Text" xml:space="preserve"> <data name="bnEditC4.Text" xml:space="preserve">
<value>Sửa</value> <value>Sửa</value>
</data> </data>
<data name="cBController1.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBController1.Location" type="System.Drawing.Point, System.Drawing">
<value>885, 23</value> <value>883, 23</value>
</data> </data>
<data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing">
<value>1031, 58</value> <value>1029, 58</value>
</data> </data>
<data name="bnEditC2.Text" xml:space="preserve"> <data name="bnEditC2.Text" xml:space="preserve">
<value>Sửa</value> <value>Sửa</value>
</data> </data>
<data name="cBController2.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBController2.Location" type="System.Drawing.Point, System.Drawing">
<value>885, 59</value> <value>883, 59</value>
</data> </data>
<data name="cBController3.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBController3.Location" type="System.Drawing.Point, System.Drawing">
<value>885, 95</value> <value>883, 95</value>
</data> </data>
<data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing">
<value>1031, 22</value> <value>1029, 22</value>
</data> </data>
<data name="bnEditC1.Text" xml:space="preserve"> <data name="bnEditC1.Text" xml:space="preserve">
<value>Sửa</value> <value>Sửa</value>
</data> </data>
<data name="cBController4.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBController4.Location" type="System.Drawing.Point, System.Drawing">
<value>885, 131</value> <value>883, 131</value>
</data>
<data name="lbSelectedProfile.Location" type="System.Drawing.Point, System.Drawing">
<value>893, 0</value>
</data> </data>
<data name="lbSelectedProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbSelectedProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>122, 18</value> <value>122, 18</value>
@ -6473,7 +6473,7 @@
<value>Profile đã chọn</value> <value>Profile đã chọn</value>
</data> </data>
<data name="lbStatus.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbStatus.Location" type="System.Drawing.Point, System.Drawing">
<value>491, 0</value> <value>489, 0</value>
</data> </data>
<data name="lbStatus.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbStatus.Size" type="System.Drawing.Size, System.Drawing">
<value>83, 18</value> <value>83, 18</value>
@ -6482,7 +6482,7 @@
<value>Trạng thái</value> <value>Trạng thái</value>
</data> </data>
<data name="lbBattery.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbBattery.Location" type="System.Drawing.Point, System.Drawing">
<value>753, 0</value> <value>751, 0</value>
</data> </data>
<data name="lbBattery.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>32, 18</value> <value>32, 18</value>
@ -6491,16 +6491,16 @@
<value>Pin</value> <value>Pin</value>
</data> </data>
<data name="lbBatt1.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbBatt1.Location" type="System.Drawing.Point, System.Drawing">
<value>746, 27</value> <value>744, 27</value>
</data> </data>
<data name="lbBatt2.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbBatt2.Location" type="System.Drawing.Point, System.Drawing">
<value>746, 63</value> <value>744, 63</value>
</data> </data>
<data name="lbBatt3.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbBatt3.Location" type="System.Drawing.Point, System.Drawing">
<value>746, 99</value> <value>744, 99</value>
</data> </data>
<data name="lbBatt4.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbBatt4.Location" type="System.Drawing.Point, System.Drawing">
<value>746, 135</value> <value>744, 135</value>
</data> </data>
<data name="pBStatus2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="pBStatus2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
@ -6558,6 +6558,9 @@
1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg==
</value> </value>
</data> </data>
<data name="pBStatus2.Location" type="System.Drawing.Point, System.Drawing">
<value>511, 62</value>
</data>
<data name="pBStatus3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="pBStatus3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAACcAAAAUCAYAAAAOTSQ2AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH iVBORw0KGgoAAAANSUhEUgAAACcAAAAUCAYAAAAOTSQ2AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
@ -6614,6 +6617,9 @@
1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg==
</value> </value>
</data> </data>
<data name="pBStatus3.Location" type="System.Drawing.Point, System.Drawing">
<value>511, 98</value>
</data>
<data name="pBStatus4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="pBStatus4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAACcAAAAUCAYAAAAOTSQ2AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH iVBORw0KGgoAAAANSUhEUgAAACcAAAAUCAYAAAAOTSQ2AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
@ -6670,39 +6676,30 @@
1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg==
</value> </value>
</data> </data>
<data name="pBStatus4.Location" type="System.Drawing.Point, System.Drawing">
<value>511, 134</value>
</data>
<data name="bnLight1.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnLight1.Location" type="System.Drawing.Point, System.Drawing">
<value>1085, 22</value> <value>1083, 22</value>
</data> </data>
<data name="bnLight1.Size" type="System.Drawing.Size, System.Drawing"> <data name="bnLight1.Size" type="System.Drawing.Size, System.Drawing">
<value>33, 28</value> <value>35, 28</value>
</data> </data>
<data name="bnLight2.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnLight2.Location" type="System.Drawing.Point, System.Drawing">
<value>1085, 58</value> <value>1083, 58</value>
</data> </data>
<data name="bnLight2.Size" type="System.Drawing.Size, System.Drawing"> <data name="bnLight2.Size" type="System.Drawing.Size, System.Drawing">
<value>33, 28</value> <value>35, 28</value>
</data> </data>
<data name="bnLight4.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnLight4.Location" type="System.Drawing.Point, System.Drawing">
<value>1085, 130</value> <value>1083, 130</value>
</data> </data>
<data name="bnLight4.Size" type="System.Drawing.Size, System.Drawing"> <data name="bnLight4.Size" type="System.Drawing.Size, System.Drawing">
<value>33, 28</value> <value>35, 28</value>
</data> </data>
<data name="lbNoControllers.Text" xml:space="preserve"> <data name="lbNoControllers.Text" xml:space="preserve">
<value>Không có tay cầm nào kết nối (Tối đa 4)</value> <value>Không có tay cầm nào kết nối (Tối đa 4)</value>
</data> </data>
<data name="tabAutoProfiles.Text" xml:space="preserve">
<value>Profile tự chọn</value>
</data>
<data name="tabSettings.Text" xml:space="preserve">
<value>Hiệu chỉnh</value>
</data>
<data name="tabLog.Text" xml:space="preserve">
<value>Báo cáo</value>
</data>
<data name="cMProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>221, 264</value>
</data>
<data name="editToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="editToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>220, 26</value> <value>220, 26</value>
</data> </data>
@ -6763,8 +6760,8 @@
<data name="exportToolStripMenuItem.Text" xml:space="preserve"> <data name="exportToolStripMenuItem.Text" xml:space="preserve">
<value>Xuất</value> <value>Xuất</value>
</data> </data>
<data name="tSOptions.Text" xml:space="preserve"> <data name="cMProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>Tùy chọn Profile</value> <value>221, 264</value>
</data> </data>
<data name="toolStripLabel1.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripLabel1.Size" type="System.Drawing.Size, System.Drawing">
<value>79, 24</value> <value>79, 24</value>
@ -6793,6 +6790,9 @@
<data name="tSBKeepSize.Text" xml:space="preserve"> <data name="tSBKeepSize.Text" xml:space="preserve">
<value>Giữ kích thước cửa sổ sau khi đóng</value> <value>Giữ kích thước cửa sổ sau khi đóng</value>
</data> </data>
<data name="tSOptions.Text" xml:space="preserve">
<value>Tùy chọn Profile</value>
</data>
<data name="tsBNewProfle.Size" type="System.Drawing.Size, System.Drawing"> <data name="tsBNewProfle.Size" type="System.Drawing.Size, System.Drawing">
<value>59, 24</value> <value>59, 24</value>
</data> </data>
@ -6882,6 +6882,9 @@
<data name="tSBExportProfile.ToolTipText" xml:space="preserve"> <data name="tSBExportProfile.ToolTipText" xml:space="preserve">
<value>Xuất Profile được chọn</value> <value>Xuất Profile được chọn</value>
</data> </data>
<data name="tabAutoProfiles.Text" xml:space="preserve">
<value>Profile tự chọn</value>
</data>
<data name="hideDS4CheckBox.Size" type="System.Drawing.Size, System.Drawing"> <data name="hideDS4CheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>156, 21</value> <value>156, 21</value>
</data> </data>
@ -6927,9 +6930,6 @@
<data name="cBDisconnectBT.Text" xml:space="preserve"> <data name="cBDisconnectBT.Text" xml:space="preserve">
<value>Ngắt kết nối BT khi bấm Dừng</value> <value>Ngắt kết nối BT khi bấm Dừng</value>
</data> </data>
<data name="panel2.Size" type="System.Drawing.Size, System.Drawing">
<value>262, 28</value>
</data>
<data name="nUDLatency.Location" type="System.Drawing.Point, System.Drawing"> <data name="nUDLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>170, 2</value> <value>170, 2</value>
</data> </data>
@ -6942,6 +6942,9 @@
<data name="cBFlashWhenLate.Text" xml:space="preserve"> <data name="cBFlashWhenLate.Text" xml:space="preserve">
<value>Báo đèn khi độ trễ cao</value> <value>Báo đèn khi độ trễ cao</value>
</data> </data>
<data name="panel2.Size" type="System.Drawing.Size, System.Drawing">
<value>262, 28</value>
</data>
<data name="cBCloseMini.Text" xml:space="preserve"> <data name="cBCloseMini.Text" xml:space="preserve">
<value>Close minimizes</value> <value>Close minimizes</value>
</data> </data>
@ -6972,9 +6975,6 @@
<data name="lbCheckEvery.Text" xml:space="preserve"> <data name="lbCheckEvery.Text" xml:space="preserve">
<value>Kiểm tra mỗi</value> <value>Kiểm tra mỗi</value>
</data> </data>
<data name="pnlXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>266, 28</value>
</data>
<data name="lbUseXIPorts.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbUseXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 17</value> <value>167, 17</value>
</data> </data>
@ -6987,11 +6987,8 @@
<data name="lbLastXIPort.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbLastXIPort.Location" type="System.Drawing.Point, System.Drawing">
<value>239, 5</value> <value>239, 5</value>
</data> </data>
<data name="flowLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing"> <data name="pnlXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>287, 13</value> <value>266, 28</value>
</data>
<data name="flowLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>177, 85</value>
</data> </data>
<data name="linkProfiles.Size" type="System.Drawing.Size, System.Drawing"> <data name="linkProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>106, 17</value> <value>106, 17</value>
@ -7023,8 +7020,17 @@
<data name="lLBUpdate.Text" xml:space="preserve"> <data name="lLBUpdate.Text" xml:space="preserve">
<value>Kiểm tra cập nhật bây giờ</value> <value>Kiểm tra cập nhật bây giờ</value>
</data> </data>
<data name="cMCustomLed.Size" type="System.Drawing.Size, System.Drawing"> <data name="flowLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing">
<value>208, 56</value> <value>287, 13</value>
</data>
<data name="flowLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>177, 85</value>
</data>
<data name="tabSettings.Text" xml:space="preserve">
<value>Hiệu chỉnh</value>
</data>
<data name="tabLog.Text" xml:space="preserve">
<value>Báo cáo</value>
</data> </data>
<data name="useProfileColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="useProfileColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 26</value> <value>207, 26</value>
@ -7038,4 +7044,7 @@
<data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve"> <data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve">
<value>Dùng màu tự chọn</value> <value>Dùng màu tự chọn</value>
</data> </data>
<data name="cMCustomLed.Size" type="System.Drawing.Size, System.Drawing">
<value>208, 56</value>
</data>
</root> </root>

View File

@ -6740,7 +6740,7 @@
<value>190, 26</value> <value>190, 26</value>
</data> </data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve"> <data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>复制Ctrl+C</value> <value>复制Ctrl+D</value>
</data> </data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>190, 26</value> <value>190, 26</value>
@ -6848,7 +6848,7 @@
<value>复制</value> <value>复制</value>
</data> </data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve"> <data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>复制选定的配置Ctrl+C</value> <value>复制选定的配置Ctrl+D</value>
</data> </data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>65, 24</value> <value>65, 24</value>
@ -7023,4 +7023,25 @@
<data name="tabLog.Text" xml:space="preserve"> <data name="tabLog.Text" xml:space="preserve">
<value>日志</value> <value>日志</value>
</data> </data>
<data name="btnConnectDS4Win10.Text" xml:space="preserve">
<value>仅连接DS4 (实验性功能)</value>
</data>
<data name="cBoxNotifications.Items" xml:space="preserve">
<value>不显示</value>
</data>
<data name="cBoxNotifications.Items1" xml:space="preserve">
<value>仅显示警告</value>
</data>
<data name="cBoxNotifications.Items2" xml:space="preserve">
<value>显示全部</value>
</data>
<data name="lbID.Text" xml:space="preserve">
<value>ID</value>
</data>
<data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve">
<value>使用自定义颜色</value>
</data>
<data name="useProfileColorToolStripMenuItem.Text" xml:space="preserve">
<value>使用配置颜色</value>
</data>
</root> </root>

View File

@ -6746,7 +6746,7 @@
<value>192, 26</value> <value>192, 26</value>
</data> </data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve"> <data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>複製 (Ctrl+C)</value> <value>複製 (Ctrl+D)</value>
</data> </data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>192, 26</value> <value>192, 26</value>
@ -6854,7 +6854,7 @@
<value>複製</value> <value>複製</value>
</data> </data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve"> <data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>複製選擇的設定檔 (Ctrl+C)</value> <value>複製選擇的設定檔 (Ctrl+D)</value>
</data> </data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>65, 24</value> <value>65, 24</value>
@ -7077,4 +7077,7 @@
<data name="cMCustomLed.Size" type="System.Drawing.Size, System.Drawing"> <data name="cMCustomLed.Size" type="System.Drawing.Size, System.Drawing">
<value>197, 56</value> <value>197, 56</value>
</data> </data>
<data name="lbID.Text" xml:space="preserve">
<value>ID</value>
</data>
</root> </root>

View File

@ -218,7 +218,7 @@
</data> </data>
<data name="$this.Text" xml:space="preserve"> <data name="$this.Text" xml:space="preserve">
<value>Type name of New Profile</value> <value>Type name of New Profile</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;tBProfile.Name" xml:space="preserve"> <data name="&gt;&gt;tBProfile.Name" xml:space="preserve">
<value>tBProfile</value> <value>tBProfile</value>
</data> </data>

View File

@ -124,6 +124,6 @@
<value>保存</value> <value>保存</value>
</data> </data>
<data name="tBProfile.Text" xml:space="preserve"> <data name="tBProfile.Text" xml:space="preserve">
<value>&lt;在这里输入配置名&gt;</value> <value>&lt;在此处输入配置名&gt;</value>
</data> </data>
</root> </root>

View File

@ -140,13 +140,13 @@
<value>532, 476</value> <value>532, 476</value>
</data> </data>
<data name="lbHotkeys.Text" xml:space="preserve"> <data name="lbHotkeys.Text" xml:space="preserve">
<value>Nascondi Controller DS4: "Nasconde l'input regolare del DS4 (Dinput) da altri programmi spunta se stai avendo input doppio nei giochi o R2 pausa i giochi." <value>Nascondi Controller DS4: "Nasconde l'input regolare del DS4 (Dinput) da altri programmi, spunta se stai avendo input doppio nei giochi o se R2 mette in pausa i giochi."
Clicca parte sinistra del touchpad: Tocco Sinistro Clicca parte sinistra del touchpad: Tocco Sinistro
Clicca parte destra del touchpad: Tocco Destro Clicca parte destra del touchpad: Tocco Destro
Clicca sul touchpad con 2 dita: Tocco Multiplo Clicca sul touchpad con 2 dita: Tocco Multiplo
Clicca parte superiore del touchpad: Tocco Superiore Clicca parte superiore del touchpad: Tocco Superiore
PS + Options oppure tieni premuto PS per 10 secondi: Disconnetti Controller (Solo su Bluetooth) PS + Options oppure tieni premuto PS per 10 secondi: Disconnetti Controller (Solo su Bluetooth)
Tocca Touchpad + PS: Disattiva movimento touchpad (cliccare funziona ancora) Tocca Touchpad + PS: Disattiva movimento touchpad (il click funzionerà ancora)
Click inferiore destro sul Pad*: Click Destro (Meglio usato quando la parte destra è usata come bottone mouse) Click inferiore destro sul Pad*: Click Destro (Meglio usato quando la parte destra è usata come bottone mouse)
Due dita su/giù sul touchpad*: Scorri Su/Giù Due dita su/giù sul touchpad*: Scorri Su/Giù
Tap quindi tieni premuto il touchpad*: Trascinamento mouse Sinistro Tap quindi tieni premuto il touchpad*: Trascinamento mouse Sinistro

View File

@ -152,7 +152,7 @@
</data> </data>
<data name="lbGermanT.Text" xml:space="preserve"> <data name="lbGermanT.Text" xml:space="preserve">
<value>Jan-Stefan Janetzky, Michél, Ammonjak, An Op Turk</value> <value>Jan-Stefan Janetzky, Michél, Ammonjak, An Op Turk</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;lbGermanT.Parent" xml:space="preserve"> <data name="&gt;&gt;lbGermanT.Parent" xml:space="preserve">
<value>tLPTranslators</value> <value>tLPTranslators</value>
</data> </data>
@ -203,7 +203,7 @@
</data> </data>
<data name="linkInhexSTER.Text" xml:space="preserve"> <data name="linkInhexSTER.Text" xml:space="preserve">
<value>InhexSTER (Starter of DS4Tool)</value> <value>InhexSTER (Starter of DS4Tool)</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;lbAbout.ZOrder" xml:space="preserve"> <data name="&gt;&gt;lbAbout.ZOrder" xml:space="preserve">
<value>3</value> <value>3</value>
</data> </data>
@ -263,7 +263,7 @@
</data> </data>
<data name="$this.Text" xml:space="preserve"> <data name="$this.Text" xml:space="preserve">
<value>Help</value> <value>Help</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;linkJays2Kings.Name" xml:space="preserve"> <data name="&gt;&gt;linkJays2Kings.Name" xml:space="preserve">
<value>linkJays2Kings</value> <value>linkJays2Kings</value>
</data> </data>
@ -296,7 +296,7 @@
</data> </data>
<data name="lbLinkText.Text" xml:space="preserve"> <data name="lbLinkText.Text" xml:space="preserve">
<value>Links displayed here</value> <value>Links displayed here</value>
</data> <comment>@Invariant</comment></data>
<data name="linkSourceCode.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="linkSourceCode.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
@ -406,7 +406,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games
</data> </data>
<data name="linkJays2Kings.Text" xml:space="preserve"> <data name="linkJays2Kings.Text" xml:space="preserve">
<value>Jays2Kings</value> <value>Jays2Kings</value>
</data> <comment>@Invariant</comment></data>
<data name="lbRussianT.TabIndex" type="System.Int32, mscorlib"> <data name="lbRussianT.TabIndex" type="System.Int32, mscorlib">
<value>13</value> <value>13</value>
</data> </data>
@ -508,7 +508,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games
</data> </data>
<data name="lbItalian.Text" xml:space="preserve"> <data name="lbItalian.Text" xml:space="preserve">
<value>Italian/Italiano</value> <value>Italian/Italiano</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;linkSourceCode.ZOrder" xml:space="preserve"> <data name="&gt;&gt;linkSourceCode.ZOrder" xml:space="preserve">
<value>3</value> <value>3</value>
</data> </data>
@ -538,10 +538,10 @@ Scan Code: Keys are interpreted differently. May be needed for certain games
</data> </data>
<data name="lbItalianT.Text" xml:space="preserve"> <data name="lbItalianT.Text" xml:space="preserve">
<value>Giulio</value> <value>Giulio</value>
</data> <comment>@Invariant</comment></data>
<data name="lbRussianT.Text" xml:space="preserve"> <data name="lbRussianT.Text" xml:space="preserve">
<value>KoNoRIMCI, Sr_psycho</value> <value>KoNoRIMCI, Sr_psycho</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;linkElectro.Type" xml:space="preserve"> <data name="&gt;&gt;linkElectro.Type" xml:space="preserve">
<value>System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -565,7 +565,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games
</data> </data>
<data name="lbTurkish.Text" xml:space="preserve"> <data name="lbTurkish.Text" xml:space="preserve">
<value>Turkish</value> <value>Turkish</value>
</data> <comment>@Invariant</comment></data>
<data name="lbTranslators.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbTranslators.Size" type="System.Drawing.Size, System.Drawing">
<value>84, 17</value> <value>84, 17</value>
</data> </data>
@ -661,7 +661,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games
</data> </data>
<data name="linkJhebbel.Text" xml:space="preserve"> <data name="linkJhebbel.Text" xml:space="preserve">
<value>jhebbel (DSDCS)</value> <value>jhebbel (DSDCS)</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;lbTurkish.ZOrder" xml:space="preserve"> <data name="&gt;&gt;lbTurkish.ZOrder" xml:space="preserve">
<value>8</value> <value>8</value>
</data> </data>
@ -697,7 +697,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games
</data> </data>
<data name="linkElectro.Text" xml:space="preserve"> <data name="linkElectro.Text" xml:space="preserve">
<value>electrobrains (Branched off of)</value> <value>electrobrains (Branched off of)</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;lbHotkeys.Name" xml:space="preserve"> <data name="&gt;&gt;lbHotkeys.Name" xml:space="preserve">
<value>lbHotkeys</value> <value>lbHotkeys</value>
</data> </data>
@ -724,7 +724,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games
</data> </data>
<data name="label2.Text" xml:space="preserve"> <data name="label2.Text" xml:space="preserve">
<value>Lütfi Tekin</value> <value>Lütfi Tekin</value>
</data> <comment>@Invariant</comment></data>
<data name="tLPTranslators.LayoutSettings" type="System.Windows.Forms.TableLayoutSettings, System.Windows.Forms"> <data name="tLPTranslators.LayoutSettings" type="System.Windows.Forms.TableLayoutSettings, System.Windows.Forms">
<value>&lt;?xml version="1.0" encoding="utf-16"?&gt;&lt;TableLayoutSettings&gt;&lt;Controls&gt;&lt;Control Name="lbGerman" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbGermanT" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbItalianT" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbItalian" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbRussian" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbRussianT" Row="2" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbRomanian" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbRomanianT" Row="3" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbTurkish" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="label2" Row="4" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbChineseS" Row="5" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbChineseST" Row="5" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbChineseT" Row="6" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbChineseTT" Row="6" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbArabic" Row="7" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbArabicT" Row="7" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbHebrew" Row="8" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbHebrewT" Row="8" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;/Controls&gt;&lt;Columns Styles="AutoSize,0,AutoSize,0" /&gt;&lt;Rows Styles="Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10" /&gt;&lt;/TableLayoutSettings&gt;</value> <value>&lt;?xml version="1.0" encoding="utf-16"?&gt;&lt;TableLayoutSettings&gt;&lt;Controls&gt;&lt;Control Name="lbGerman" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbGermanT" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbItalianT" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbItalian" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbRussian" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbRussianT" Row="2" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbRomanian" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbRomanianT" Row="3" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbTurkish" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="label2" Row="4" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbChineseS" Row="5" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbChineseST" Row="5" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbChineseT" Row="6" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbChineseTT" Row="6" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbArabic" Row="7" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbArabicT" Row="7" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;Control Name="lbHebrew" Row="8" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="lbHebrewT" Row="8" RowSpan="1" Column="1" ColumnSpan="1" /&gt;&lt;/Controls&gt;&lt;Columns Styles="AutoSize,0,AutoSize,0" /&gt;&lt;Rows Styles="Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10" /&gt;&lt;/TableLayoutSettings&gt;</value>
</data> </data>
@ -781,7 +781,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games
</data> </data>
<data name="lbRomanian.Text" xml:space="preserve"> <data name="lbRomanian.Text" xml:space="preserve">
<value>Romanian</value> <value>Romanian</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;lbRussianT.Parent" xml:space="preserve"> <data name="&gt;&gt;lbRussianT.Parent" xml:space="preserve">
<value>tLPTranslators</value> <value>tLPTranslators</value>
</data> </data>
@ -865,13 +865,13 @@ Scan Code: Keys are interpreted differently. May be needed for certain games
</data> </data>
<data name="lbGerman.Text" xml:space="preserve"> <data name="lbGerman.Text" xml:space="preserve">
<value>German/Deutsch</value> <value>German/Deutsch</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;linkJhebbel.Type" xml:space="preserve"> <data name="&gt;&gt;linkJhebbel.Type" xml:space="preserve">
<value>System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<data name="linkSourceCode.Text" xml:space="preserve"> <data name="linkSourceCode.Text" xml:space="preserve">
<value>Source Code</value> <value>Source Code</value>
</data> <comment>@Invariant</comment></data>
<data name="lbLinkText.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbLinkText.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 453</value> <value>4, 453</value>
</data> </data>
@ -1048,7 +1048,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games
</data> </data>
<data name="lbRussian.Text" xml:space="preserve"> <data name="lbRussian.Text" xml:space="preserve">
<value>Russian/ру́сский язы́к</value> <value>Russian/ру́сский язы́к</value>
</data> <comment>@Invariant</comment></data>
<data name="lbRomanianT.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="lbRomanianT.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
@ -1243,7 +1243,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games
</data> </data>
<data name="lbRomanianT.Text" xml:space="preserve"> <data name="lbRomanianT.Text" xml:space="preserve">
<value>Vlad Giurgiu, Anonim</value> <value>Vlad Giurgiu, Anonim</value>
</data> <comment>@Invariant</comment></data>
<data name="lbHotkeys.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="lbHotkeys.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 0, 4, 0</value> <value>4, 0, 4, 0</value>
</data> </data>

View File

@ -3737,9 +3737,7 @@ un tasto digitandolo</value>
<value>98, 55</value> <value>98, 55</value>
</data> </data>
<data name="cBMouse.Text" xml:space="preserve"> <data name="cBMouse.Text" xml:space="preserve">
<value>Cambia <value>Cambia Sensibilità Mouse</value>
Sensibilità
Mouse</value>
</data> </data>
<data name="cBLightbar.Size" type="System.Drawing.Size, System.Drawing"> <data name="cBLightbar.Size" type="System.Drawing.Size, System.Drawing">
<value>112, 21</value> <value>112, 21</value>
@ -3750,4 +3748,22 @@ Mouse</value>
<data name="gBExtras.Text" xml:space="preserve"> <data name="gBExtras.Text" xml:space="preserve">
<value>Extra</value> <value>Extra</value>
</data> </data>
<data name="bnTest.Text" xml:space="preserve">
<value>Test</value>
</data>
<data name="btnDefault.Text" xml:space="preserve">
<value>Predefinito</value>
</data>
<data name="cBToggle.Text" xml:space="preserve">
<value>Toggle</value>
</data>
<data name="lbBlue.Text" xml:space="preserve">
<value>B</value>
</data>
<data name="lbGreen.Text" xml:space="preserve">
<value>G</value>
</data>
<data name="lbRed.Text" xml:space="preserve">
<value>R</value>
</data>
</root> </root>

View File

@ -136,7 +136,7 @@
</data> </data>
<data name="btnP.Text" xml:space="preserve"> <data name="btnP.Text" xml:space="preserve">
<value>P</value> <value>P</value>
</data> <comment>@Invariant</comment></data>
<data name="button36.Size" type="System.Drawing.Size, System.Drawing"> <data name="button36.Size" type="System.Drawing.Size, System.Drawing">
<value>52, 30</value> <value>52, 30</value>
</data> </data>
@ -160,13 +160,13 @@
</data> </data>
<data name="button6.Text" xml:space="preserve"> <data name="button6.Text" xml:space="preserve">
<value>↓Down</value> <value>↓Down</value>
</data> <comment>@Invariant</comment></data>
<data name="cBScanCode.RightToLeft" type="System.Windows.Forms.RightToLeft, System.Windows.Forms"> <data name="cBScanCode.RightToLeft" type="System.Windows.Forms.RightToLeft, System.Windows.Forms">
<value>Yes</value> <value>Yes</value>
</data> </data>
<data name="btnRETURN.Text" xml:space="preserve"> <data name="btnRETURN.Text" xml:space="preserve">
<value>Enter</value> <value>Enter</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnPREVTRACK.Name" xml:space="preserve"> <data name="&gt;&gt;btnPREVTRACK.Name" xml:space="preserve">
<value>btnPREVTRACK</value> <value>btnPREVTRACK</value>
</data> </data>
@ -197,7 +197,7 @@
</data> </data>
<data name="btnA.Text" xml:space="preserve"> <data name="btnA.Text" xml:space="preserve">
<value>A</value> <value>A</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnT.Parent" xml:space="preserve"> <data name="&gt;&gt;btnT.Parent" xml:space="preserve">
<value>$this</value> <value>$this</value>
</data> </data>
@ -299,7 +299,7 @@
</data> </data>
<data name="btnH.Text" xml:space="preserve"> <data name="btnH.Text" xml:space="preserve">
<value>H</value> <value>H</value>
</data> <comment>@Invariant</comment></data>
<data name="btnBREAK.TabIndex" type="System.Int32, mscorlib"> <data name="btnBREAK.TabIndex" type="System.Int32, mscorlib">
<value>240</value> <value>240</value>
</data> </data>
@ -332,7 +332,7 @@
</data> </data>
<data name="btnS.Text" xml:space="preserve"> <data name="btnS.Text" xml:space="preserve">
<value>S</value> <value>S</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnNUM0.Type" xml:space="preserve"> <data name="&gt;&gt;btnNUM0.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -398,7 +398,7 @@
</data> </data>
<data name="btnF10.Text" xml:space="preserve"> <data name="btnF10.Text" xml:space="preserve">
<value>F10</value> <value>F10</value>
</data> <comment>@Invariant</comment></data>
<data name="bnWHEELUP.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnWHEELUP.Location" type="System.Drawing.Point, System.Drawing">
<value>995, 78</value> <value>995, 78</value>
</data> </data>
@ -482,7 +482,7 @@
</data> </data>
<data name="btnK.Text" xml:space="preserve"> <data name="btnK.Text" xml:space="preserve">
<value>K</value> <value>K</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnX.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnX.ZOrder" xml:space="preserve">
<value>121</value> <value>121</value>
</data> </data>
@ -518,7 +518,7 @@
</data> </data>
<data name="btnU.Text" xml:space="preserve"> <data name="btnU.Text" xml:space="preserve">
<value>U</value> <value>U</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnW.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnW.ZOrder" xml:space="preserve">
<value>42</value> <value>42</value>
</data> </data>
@ -575,7 +575,7 @@
</data> </data>
<data name="btnMOUSELEFT.Text" xml:space="preserve"> <data name="btnMOUSELEFT.Text" xml:space="preserve">
<value>←Mouse Left</value> <value>←Mouse Left</value>
</data> <comment>@Invariant</comment></data>
<data name="btnNUMSTAR.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="btnNUMSTAR.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 4, 4, 4</value> <value>4, 4, 4, 4</value>
</data> </data>
@ -593,7 +593,7 @@
</data> </data>
<data name="btnAPOSTROPHE.Text" xml:space="preserve"> <data name="btnAPOSTROPHE.Text" xml:space="preserve">
<value>'</value> <value>'</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnCAPS.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnCAPS.ZOrder" xml:space="preserve">
<value>153</value> <value>153</value>
</data> </data>
@ -698,7 +698,7 @@
</data> </data>
<data name="btnO.Text" xml:space="preserve"> <data name="btnO.Text" xml:space="preserve">
<value>O</value> <value>O</value>
</data> <comment>@Invariant</comment></data>
<data name="btnSPACE.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="btnSPACE.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 4, 4, 4</value> <value>4, 4, 4, 4</value>
</data> </data>
@ -728,7 +728,7 @@
</data> </data>
<data name="btnJ.Text" xml:space="preserve"> <data name="btnJ.Text" xml:space="preserve">
<value>J</value> <value>J</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btn4.Type" xml:space="preserve"> <data name="&gt;&gt;btn4.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -854,7 +854,7 @@
</data> </data>
<data name="lbBlueV.Text" xml:space="preserve"> <data name="lbBlueV.Text" xml:space="preserve">
<value>255</value> <value>255</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;bnMacro.Type" xml:space="preserve"> <data name="&gt;&gt;bnMacro.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -866,7 +866,7 @@
</data> </data>
<data name="btnB.Text" xml:space="preserve"> <data name="btnB.Text" xml:space="preserve">
<value>B</value> <value>B</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnR.Parent" xml:space="preserve"> <data name="&gt;&gt;btnR.Parent" xml:space="preserve">
<value>$this</value> <value>$this</value>
</data> </data>
@ -908,7 +908,7 @@
</data> </data>
<data name="btnNUM1.Text" xml:space="preserve"> <data name="btnNUM1.Text" xml:space="preserve">
<value>1Numpad</value> <value>1Numpad</value>
</data> <comment>@Invariant</comment></data>
<data name="pBMouse.Location" type="System.Drawing.Point, System.Drawing"> <data name="pBMouse.Location" type="System.Drawing.Point, System.Drawing">
<value>950, 55</value> <value>950, 55</value>
</data> </data>
@ -1082,7 +1082,7 @@
</data> </data>
<data name="btnV.Text" xml:space="preserve"> <data name="btnV.Text" xml:space="preserve">
<value>V</value> <value>V</value>
</data> <comment>@Invariant</comment></data>
<data name="btnQ.Size" type="System.Drawing.Size, System.Drawing"> <data name="btnQ.Size" type="System.Drawing.Size, System.Drawing">
<value>30, 30</value> <value>30, 30</value>
</data> </data>
@ -1139,7 +1139,7 @@
</data> </data>
<data name="btnMINUS.Text" xml:space="preserve"> <data name="btnMINUS.Text" xml:space="preserve">
<value>-</value> <value>-</value>
</data> <comment>@Invariant</comment></data>
<data name="btnP.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms"> <data name="btnP.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms">
<value>Popup</value> <value>Popup</value>
</data> </data>
@ -1205,10 +1205,10 @@
</data> </data>
<data name="btnF.Text" xml:space="preserve"> <data name="btnF.Text" xml:space="preserve">
<value>F</value> <value>F</value>
</data> <comment>@Invariant</comment></data>
<data name="btnN.Text" xml:space="preserve"> <data name="btnN.Text" xml:space="preserve">
<value>N</value> <value>N</value>
</data> <comment>@Invariant</comment></data>
<data name="lbRumble.AutoSize" type="System.Boolean, mscorlib"> <data name="lbRumble.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
</data> </data>
@ -1223,7 +1223,7 @@
</data> </data>
<data name="btnPGDN.Text" xml:space="preserve"> <data name="btnPGDN.Text" xml:space="preserve">
<value>pgd</value> <value>pgd</value>
</data> <comment>@Invariant</comment></data>
<data name="btnNUMDOT.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms"> <data name="btnNUMDOT.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms">
<value>Popup</value> <value>Popup</value>
</data> </data>
@ -1250,7 +1250,7 @@
</data> </data>
<data name="btnRCTRL.Text" xml:space="preserve"> <data name="btnRCTRL.Text" xml:space="preserve">
<value>RCtrl</value> <value>RCtrl</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnA.Type" xml:space="preserve"> <data name="&gt;&gt;btnA.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -1391,7 +1391,7 @@
</data> </data>
<data name="btnF11.Text" xml:space="preserve"> <data name="btnF11.Text" xml:space="preserve">
<value>F11</value> <value>F11</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnY.Parent" xml:space="preserve"> <data name="&gt;&gt;btnY.Parent" xml:space="preserve">
<value>$this</value> <value>$this</value>
</data> </data>
@ -1412,7 +1412,7 @@
</data> </data>
<data name="lbGreenV.Text" xml:space="preserve"> <data name="lbGreenV.Text" xml:space="preserve">
<value>255</value> <value>255</value>
</data> <comment>@Invariant</comment></data>
<data name="nUDHeavy.Size" type="System.Drawing.Size, System.Drawing"> <data name="nUDHeavy.Size" type="System.Drawing.Size, System.Drawing">
<value>61, 22</value> <value>61, 22</value>
</data> </data>
@ -1421,7 +1421,7 @@
</data> </data>
<data name="btnF9.Text" xml:space="preserve"> <data name="btnF9.Text" xml:space="preserve">
<value>F9</value> <value>F9</value>
</data> <comment>@Invariant</comment></data>
<data name="button8.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="button8.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
@ -1448,7 +1448,7 @@
</data> </data>
<data name="btnNUMSLASH.Text" xml:space="preserve"> <data name="btnNUMSLASH.Text" xml:space="preserve">
<value>/Numpad</value> <value>/Numpad</value>
</data> <comment>@Invariant</comment></data>
<data name="btnLSD.TabIndex" type="System.Int32, mscorlib"> <data name="btnLSD.TabIndex" type="System.Int32, mscorlib">
<value>308</value> <value>308</value>
</data> </data>
@ -1478,7 +1478,7 @@
</data> </data>
<data name="btnM.Text" xml:space="preserve"> <data name="btnM.Text" xml:space="preserve">
<value>M</value> <value>M</value>
</data> <comment>@Invariant</comment></data>
<data name="btnMOUSERIGHT.Size" type="System.Drawing.Size, System.Drawing"> <data name="btnMOUSERIGHT.Size" type="System.Drawing.Size, System.Drawing">
<value>30, 30</value> <value>30, 30</value>
</data> </data>
@ -1535,7 +1535,7 @@
</data> </data>
<data name="btnBACKSPACE.Text" xml:space="preserve"> <data name="btnBACKSPACE.Text" xml:space="preserve">
<value>Backspace</value> <value>Backspace</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnNUM6.Type" xml:space="preserve"> <data name="&gt;&gt;btnNUM6.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -1583,7 +1583,7 @@
</data> </data>
<data name="btnNUMDOT.Text" xml:space="preserve"> <data name="btnNUMDOT.Text" xml:space="preserve">
<value>.</value> <value>.</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;pBX360.Parent" xml:space="preserve"> <data name="&gt;&gt;pBX360.Parent" xml:space="preserve">
<value>$this</value> <value>$this</value>
</data> </data>
@ -1598,7 +1598,7 @@
</data> </data>
<data name="btnT.Text" xml:space="preserve"> <data name="btnT.Text" xml:space="preserve">
<value>T</value> <value>T</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnRETURN.Type" xml:space="preserve"> <data name="&gt;&gt;btnRETURN.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -1652,7 +1652,7 @@
</data> </data>
<data name="btnE.Text" xml:space="preserve"> <data name="btnE.Text" xml:space="preserve">
<value>E</value> <value>E</value>
</data> <comment>@Invariant</comment></data>
<data name="btnLSD.Size" type="System.Drawing.Size, System.Drawing"> <data name="btnLSD.Size" type="System.Drawing.Size, System.Drawing">
<value>38, 38</value> <value>38, 38</value>
</data> </data>
@ -1754,7 +1754,7 @@
</data> </data>
<data name="btnL.Text" xml:space="preserve"> <data name="btnL.Text" xml:space="preserve">
<value>L</value> <value>L</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnNUM8.Parent" xml:space="preserve"> <data name="&gt;&gt;btnNUM8.Parent" xml:space="preserve">
<value>$this</value> <value>$this</value>
</data> </data>
@ -1799,10 +1799,10 @@
</data> </data>
<data name="btnRALT.Text" xml:space="preserve"> <data name="btnRALT.Text" xml:space="preserve">
<value>RAlt</value> <value>RAlt</value>
</data> <comment>@Invariant</comment></data>
<data name="button4.Text" xml:space="preserve"> <data name="button4.Text" xml:space="preserve">
<value>←Left</value> <value>←Left</value>
</data> <comment>@Invariant</comment></data>
<data name="pBX360.TabIndex" type="System.Int32, mscorlib"> <data name="pBX360.TabIndex" type="System.Int32, mscorlib">
<value>322</value> <value>322</value>
</data> </data>
@ -1838,7 +1838,7 @@
</data> </data>
<data name="btnLCTRL.Text" xml:space="preserve"> <data name="btnLCTRL.Text" xml:space="preserve">
<value>LCtrl</value> <value>LCtrl</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btn1.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btn1.ZOrder" xml:space="preserve">
<value>29</value> <value>29</value>
</data> </data>
@ -1856,7 +1856,7 @@
</data> </data>
<data name="btnTILDE.Text" xml:space="preserve"> <data name="btnTILDE.Text" xml:space="preserve">
<value>`</value> <value>`</value>
</data> <comment>@Invariant</comment></data>
<data name="btnMOUSERIGHT.Location" type="System.Drawing.Point, System.Drawing"> <data name="btnMOUSERIGHT.Location" type="System.Drawing.Point, System.Drawing">
<value>1054, 150</value> <value>1054, 150</value>
</data> </data>
@ -1904,13 +1904,13 @@
</data> </data>
<data name="bnWHEELDOWN.Text" xml:space="preserve"> <data name="bnWHEELDOWN.Text" xml:space="preserve">
<value>↓Mouse Wheel Down</value> <value>↓Mouse Wheel Down</value>
</data> <comment>@Invariant</comment></data>
<data name="X360Label.Location" type="System.Drawing.Point, System.Drawing"> <data name="X360Label.Location" type="System.Drawing.Point, System.Drawing">
<value>494, 266</value> <value>494, 266</value>
</data> </data>
<data name="btnD.Text" xml:space="preserve"> <data name="btnD.Text" xml:space="preserve">
<value>D</value> <value>D</value>
</data> <comment>@Invariant</comment></data>
<data name="btnF6.Location" type="System.Drawing.Point, System.Drawing"> <data name="btnF6.Location" type="System.Drawing.Point, System.Drawing">
<value>272, 31</value> <value>272, 31</value>
</data> </data>
@ -1928,7 +1928,7 @@
</data> </data>
<data name="btnPERIOD.Text" xml:space="preserve"> <data name="btnPERIOD.Text" xml:space="preserve">
<value>.</value> <value>.</value>
</data> <comment>@Invariant</comment></data>
<data name="gBExtras.TabIndex" type="System.Int32, mscorlib"> <data name="gBExtras.TabIndex" type="System.Int32, mscorlib">
<value>324</value> <value>324</value>
</data> </data>
@ -1976,7 +1976,7 @@
</data> </data>
<data name="btnTAB.Text" xml:space="preserve"> <data name="btnTAB.Text" xml:space="preserve">
<value>Tab</value> <value>Tab</value>
</data> <comment>@Invariant</comment></data>
<data name="button35.Location" type="System.Drawing.Point, System.Drawing"> <data name="button35.Location" type="System.Drawing.Point, System.Drawing">
<value>879, 106</value> <value>879, 106</value>
</data> </data>
@ -1991,10 +1991,10 @@
</data> </data>
<data name="btnNUM5.Text" xml:space="preserve"> <data name="btnNUM5.Text" xml:space="preserve">
<value>5Numpad</value> <value>5Numpad</value>
</data> <comment>@Invariant</comment></data>
<data name="button35.Text" xml:space="preserve"> <data name="button35.Text" xml:space="preserve">
<value>ØVolume Mute</value> <value>ØVolume Mute</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnRSL.Type" xml:space="preserve"> <data name="&gt;&gt;btnRSL.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -2021,7 +2021,7 @@
</data> </data>
<data name="btnRSHIFT.Text" xml:space="preserve"> <data name="btnRSHIFT.Text" xml:space="preserve">
<value>RShift</value> <value>RShift</value>
</data> <comment>@Invariant</comment></data>
<data name="nUDHeavy.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="nUDHeavy.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 4, 4, 4</value> <value>4, 4, 4, 4</value>
</data> </data>
@ -2039,7 +2039,7 @@
</data> </data>
<data name="btnMIDDLEMOUSE.Text" xml:space="preserve"> <data name="btnMIDDLEMOUSE.Text" xml:space="preserve">
<value>Middle Mouse Button</value> <value>Middle Mouse Button</value>
</data> <comment>@Invariant</comment></data>
<data name="btnF11.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms"> <data name="btnF11.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms">
<value>Popup</value> <value>Popup</value>
</data> </data>
@ -2150,7 +2150,7 @@
</data> </data>
<data name="btnDEL.Text" xml:space="preserve"> <data name="btnDEL.Text" xml:space="preserve">
<value>del</value> <value>del</value>
</data> <comment>@Invariant</comment></data>
<data name="btnNUM2.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms"> <data name="btnNUM2.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms">
<value>Popup</value> <value>Popup</value>
</data> </data>
@ -2159,16 +2159,16 @@
</data> </data>
<data name="btnY.Text" xml:space="preserve"> <data name="btnY.Text" xml:space="preserve">
<value>Y</value> <value>Y</value>
</data> <comment>@Invariant</comment></data>
<data name="btnNUM9.Text" xml:space="preserve"> <data name="btnNUM9.Text" xml:space="preserve">
<value>9Numpad</value> <value>9Numpad</value>
</data> <comment>@Invariant</comment></data>
<data name="X360Label.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="X360Label.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 0, 4, 0</value> <value>4, 0, 4, 0</value>
</data> </data>
<data name="btnPGUP.Text" xml:space="preserve"> <data name="btnPGUP.Text" xml:space="preserve">
<value>pgu</value> <value>pgu</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnN.Type" xml:space="preserve"> <data name="&gt;&gt;btnN.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -2189,7 +2189,7 @@
</data> </data>
<data name="btnC.Text" xml:space="preserve"> <data name="btnC.Text" xml:space="preserve">
<value>C</value> <value>C</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnTILDE.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnTILDE.ZOrder" xml:space="preserve">
<value>98</value> <value>98</value>
</data> </data>
@ -2216,7 +2216,7 @@
</data> </data>
<data name="btnPLAYPAUSE.Text" xml:space="preserve"> <data name="btnPLAYPAUSE.Text" xml:space="preserve">
<value>4</value> <value>4</value>
</data> <comment>@Invariant</comment></data>
<data name="btnMOUSEDOWN.TabIndex" type="System.Int32, mscorlib"> <data name="btnMOUSEDOWN.TabIndex" type="System.Int32, mscorlib">
<value>170</value> <value>170</value>
</data> </data>
@ -2243,7 +2243,7 @@
</data> </data>
<data name="btnNUM7.Text" xml:space="preserve"> <data name="btnNUM7.Text" xml:space="preserve">
<value>7Numpad</value> <value>7Numpad</value>
</data> <comment>@Invariant</comment></data>
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing"> <data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
<value>120, 120</value> <value>120, 120</value>
</data> </data>
@ -2432,7 +2432,7 @@
</data> </data>
<data name="btnWINDOWS.Text" xml:space="preserve"> <data name="btnWINDOWS.Text" xml:space="preserve">
<value>LWin</value> <value>LWin</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btn6.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btn6.ZOrder" xml:space="preserve">
<value>60</value> <value>60</value>
</data> </data>
@ -2564,7 +2564,7 @@
</data> </data>
<data name="btnNUMLOCK.Text" xml:space="preserve"> <data name="btnNUMLOCK.Text" xml:space="preserve">
<value>Num Lock</value> <value>Num Lock</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;nUDHeavy.Parent" xml:space="preserve"> <data name="&gt;&gt;nUDHeavy.Parent" xml:space="preserve">
<value>gBExtras</value> <value>gBExtras</value>
</data> </data>
@ -2666,7 +2666,7 @@
</data> </data>
<data name="button34.Text" xml:space="preserve"> <data name="button34.Text" xml:space="preserve">
<value>prt</value> <value>prt</value>
</data> <comment>@Invariant</comment></data>
<data name="tBRedBar.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="tBRedBar.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 4, 4, 4</value> <value>4, 4, 4, 4</value>
</data> </data>
@ -2741,7 +2741,7 @@
</data> </data>
<data name="btn8.Text" xml:space="preserve"> <data name="btn8.Text" xml:space="preserve">
<value>8</value> <value>8</value>
</data> <comment>@Invariant</comment></data>
<data name="cBToggle.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBToggle.Location" type="System.Drawing.Point, System.Drawing">
<value>748, 10</value> <value>748, 10</value>
</data> </data>
@ -2750,7 +2750,7 @@
</data> </data>
<data name="btnNEXTTRACK.Text" xml:space="preserve"> <data name="btnNEXTTRACK.Text" xml:space="preserve">
<value>:</value> <value>:</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnCLOSEBRACKET.Parent" xml:space="preserve"> <data name="&gt;&gt;btnCLOSEBRACKET.Parent" xml:space="preserve">
<value>$this</value> <value>$this</value>
</data> </data>
@ -2807,7 +2807,7 @@
</data> </data>
<data name="btnNUMENTER.Text" xml:space="preserve"> <data name="btnNUMENTER.Text" xml:space="preserve">
<value>Enter</value> <value>Enter</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnUNBOUND.Parent" xml:space="preserve"> <data name="&gt;&gt;btnUNBOUND.Parent" xml:space="preserve">
<value>$this</value> <value>$this</value>
</data> </data>
@ -2849,7 +2849,7 @@
</data> </data>
<data name="btnSPACE.Text" xml:space="preserve"> <data name="btnSPACE.Text" xml:space="preserve">
<value>Space</value> <value>Space</value>
</data> <comment>@Invariant</comment></data>
<data name="cBScanCode.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBScanCode.Location" type="System.Drawing.Point, System.Drawing">
<value>829, 10</value> <value>829, 10</value>
</data> </data>
@ -2861,13 +2861,13 @@
</data> </data>
<data name="btnBREAK.Text" xml:space="preserve"> <data name="btnBREAK.Text" xml:space="preserve">
<value>bk</value> <value>bk</value>
</data> <comment>@Invariant</comment></data>
<data name="btnMIDDLEMOUSE.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="btnMIDDLEMOUSE.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 4, 4, 4</value> <value>4, 4, 4, 4</value>
</data> </data>
<data name="btnLALT.Text" xml:space="preserve"> <data name="btnLALT.Text" xml:space="preserve">
<value>LAlt</value> <value>LAlt</value>
</data> <comment>@Invariant</comment></data>
<data name="btn4.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="btn4.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 4, 4, 4</value> <value>4, 4, 4, 4</value>
</data> </data>
@ -6526,7 +6526,7 @@
</data> </data>
<data name="btnESC.Text" xml:space="preserve"> <data name="btnESC.Text" xml:space="preserve">
<value>Escape</value> <value>Escape</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnLSD.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnLSD.ZOrder" xml:space="preserve">
<value>24</value> <value>24</value>
</data> </data>
@ -6604,7 +6604,7 @@
</data> </data>
<data name="btnHOME.Text" xml:space="preserve"> <data name="btnHOME.Text" xml:space="preserve">
<value>hm</value> <value>hm</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;button38.Name" xml:space="preserve"> <data name="&gt;&gt;button38.Name" xml:space="preserve">
<value>button38</value> <value>button38</value>
</data> </data>
@ -6685,13 +6685,13 @@
</data> </data>
<data name="bTNRIGHTMOUSE.Text" xml:space="preserve"> <data name="bTNRIGHTMOUSE.Text" xml:space="preserve">
<value>Right Mouse Button</value> <value>Right Mouse Button</value>
</data> <comment>@Invariant</comment></data>
<data name="lBTip.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="lBTip.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 0, 4, 0</value> <value>4, 0, 4, 0</value>
</data> </data>
<data name="btnF7.Text" xml:space="preserve"> <data name="btnF7.Text" xml:space="preserve">
<value>F7</value> <value>F7</value>
</data> <comment>@Invariant</comment></data>
<data name="btnX.TabIndex" type="System.Int32, mscorlib"> <data name="btnX.TabIndex" type="System.Int32, mscorlib">
<value>211</value> <value>211</value>
</data> </data>
@ -6712,7 +6712,7 @@
</data> </data>
<data name="btnEQUALS.Text" xml:space="preserve"> <data name="btnEQUALS.Text" xml:space="preserve">
<value>=</value> <value>=</value>
</data> <comment>@Invariant</comment></data>
<data name="button23.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="button23.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 4, 4, 4</value> <value>4, 4, 4, 4</value>
</data> </data>
@ -6721,7 +6721,7 @@
</data> </data>
<data name="btnNUM2.Text" xml:space="preserve"> <data name="btnNUM2.Text" xml:space="preserve">
<value>2Numpad</value> <value>2Numpad</value>
</data> <comment>@Invariant</comment></data>
<data name="button10.TabIndex" type="System.Int32, mscorlib"> <data name="button10.TabIndex" type="System.Int32, mscorlib">
<value>297</value> <value>297</value>
</data> </data>
@ -6775,7 +6775,7 @@
</data> </data>
<data name="btnMOUSERIGHT.Text" xml:space="preserve"> <data name="btnMOUSERIGHT.Text" xml:space="preserve">
<value>→Mouse Right</value> <value>→Mouse Right</value>
</data> <comment>@Invariant</comment></data>
<data name="btn0.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="btn0.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
@ -6805,7 +6805,7 @@
</data> </data>
<data name="btnOPENBRACKET.Text" xml:space="preserve"> <data name="btnOPENBRACKET.Text" xml:space="preserve">
<value>[</value> <value>[</value>
</data> <comment>@Invariant</comment></data>
<data name="btnF6.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="btnF6.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
@ -6814,7 +6814,7 @@
</data> </data>
<data name="btnNUM0.Text" xml:space="preserve"> <data name="btnNUM0.Text" xml:space="preserve">
<value>Num0</value> <value>Num0</value>
</data> <comment>@Invariant</comment></data>
<data name="btnCOMMA.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms"> <data name="btnCOMMA.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms">
<value>Popup</value> <value>Popup</value>
</data> </data>
@ -6844,7 +6844,7 @@
</data> </data>
<data name="button38.Text" xml:space="preserve"> <data name="button38.Text" xml:space="preserve">
<value>↑Volume Up</value> <value>↑Volume Up</value>
</data> <comment>@Invariant</comment></data>
<data name="btnNUM6.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms"> <data name="btnNUM6.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms">
<value>Popup</value> <value>Popup</value>
</data> </data>
@ -6919,7 +6919,7 @@
</data> </data>
<data name="btnNUM6.Text" xml:space="preserve"> <data name="btnNUM6.Text" xml:space="preserve">
<value>6Numpad</value> <value>6Numpad</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnOPENBRACKET.Type" xml:space="preserve"> <data name="&gt;&gt;btnOPENBRACKET.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -7027,7 +7027,7 @@
</data> </data>
<data name="btnCAPS.Text" xml:space="preserve"> <data name="btnCAPS.Text" xml:space="preserve">
<value>Caps</value> <value>Caps</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnNUM7.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnNUM7.ZOrder" xml:space="preserve">
<value>108</value> <value>108</value>
</data> </data>
@ -7048,7 +7048,7 @@
</data> </data>
<data name="btn0.Text" xml:space="preserve"> <data name="btn0.Text" xml:space="preserve">
<value>0</value> <value>0</value>
</data> <comment>@Invariant</comment></data>
<data name="btn9.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms"> <data name="btn9.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms">
<value>Popup</value> <value>Popup</value>
</data> </data>
@ -7093,7 +7093,7 @@
</data> </data>
<data name="btnCOMMA.Text" xml:space="preserve"> <data name="btnCOMMA.Text" xml:space="preserve">
<value>,</value> <value>,</value>
</data> <comment>@Invariant</comment></data>
<data name="btnOPENBRACKET.TabIndex" type="System.Int32, mscorlib"> <data name="btnOPENBRACKET.TabIndex" type="System.Int32, mscorlib">
<value>187</value> <value>187</value>
</data> </data>
@ -7123,7 +7123,7 @@
</data> </data>
<data name="button39.Text" xml:space="preserve"> <data name="button39.Text" xml:space="preserve">
<value>↓Volume Down</value> <value>↓Volume Down</value>
</data> <comment>@Invariant</comment></data>
<data name="btnBACKSPACE.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms"> <data name="btnBACKSPACE.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms">
<value>Popup</value> <value>Popup</value>
</data> </data>
@ -7173,7 +7173,7 @@ Sensitivity</value>
</data> </data>
<data name="btnNUMPLUS.Text" xml:space="preserve"> <data name="btnNUMPLUS.Text" xml:space="preserve">
<value>+</value> <value>+</value>
</data> <comment>@Invariant</comment></data>
<data name="btnPREVTRACK.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms"> <data name="btnPREVTRACK.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms">
<value>Popup</value> <value>Popup</value>
</data> </data>
@ -7209,7 +7209,7 @@ Sensitivity</value>
</data> </data>
<data name="btn3.Text" xml:space="preserve"> <data name="btn3.Text" xml:space="preserve">
<value>3</value> <value>3</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnP.Parent" xml:space="preserve"> <data name="&gt;&gt;btnP.Parent" xml:space="preserve">
<value>$this</value> <value>$this</value>
</data> </data>
@ -7269,7 +7269,7 @@ Sensitivity</value>
</data> </data>
<data name="btnNUMSTAR.Text" xml:space="preserve"> <data name="btnNUMSTAR.Text" xml:space="preserve">
<value>*Numpad</value> <value>*Numpad</value>
</data> <comment>@Invariant</comment></data>
<data name="btnI.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="btnI.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 4, 4, 4</value> <value>4, 4, 4, 4</value>
</data> </data>
@ -7401,7 +7401,7 @@ Sensitivity</value>
</data> </data>
<data name="btnMOUSEDOWN.Text" xml:space="preserve"> <data name="btnMOUSEDOWN.Text" xml:space="preserve">
<value>↓Mouse Down</value> <value>↓Mouse Down</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnSCL.Type" xml:space="preserve"> <data name="&gt;&gt;btnSCL.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -7416,7 +7416,7 @@ Sensitivity</value>
</data> </data>
<data name="btnCLOSEBRACKET.Text" xml:space="preserve"> <data name="btnCLOSEBRACKET.Text" xml:space="preserve">
<value>]</value> <value>]</value>
</data> <comment>@Invariant</comment></data>
<data name="btnNUM0.TabIndex" type="System.Int32, mscorlib"> <data name="btnNUM0.TabIndex" type="System.Int32, mscorlib">
<value>280</value> <value>280</value>
</data> </data>
@ -7488,7 +7488,7 @@ Sensitivity</value>
</data> </data>
<data name="btnLEFTMOUSE.Text" xml:space="preserve"> <data name="btnLEFTMOUSE.Text" xml:space="preserve">
<value>Left Mouse Button</value> <value>Left Mouse Button</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btn1.Name" xml:space="preserve"> <data name="&gt;&gt;btn1.Name" xml:space="preserve">
<value>btn1</value> <value>btn1</value>
</data> </data>
@ -7551,7 +7551,7 @@ Sensitivity</value>
</data> </data>
<data name="btn9.Text" xml:space="preserve"> <data name="btn9.Text" xml:space="preserve">
<value>9</value> <value>9</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnNUM6.Parent" xml:space="preserve"> <data name="&gt;&gt;btnNUM6.Parent" xml:space="preserve">
<value>$this</value> <value>$this</value>
</data> </data>
@ -7623,7 +7623,7 @@ Sensitivity</value>
</data> </data>
<data name="button5.Text" xml:space="preserve"> <data name="button5.Text" xml:space="preserve">
<value>→Right</value> <value>→Right</value>
</data> <comment>@Invariant</comment></data>
<data name="btnNEXTTRACK.Font" type="System.Drawing.Font, System.Drawing"> <data name="btnNEXTTRACK.Font" type="System.Drawing.Font, System.Drawing">
<value>Webdings, 8.25pt</value> <value>Webdings, 8.25pt</value>
</data> </data>
@ -7635,7 +7635,7 @@ Sensitivity</value>
</data> </data>
<data name="btnF6.Text" xml:space="preserve"> <data name="btnF6.Text" xml:space="preserve">
<value>F6</value> <value>F6</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnF10.Parent" xml:space="preserve"> <data name="&gt;&gt;btnF10.Parent" xml:space="preserve">
<value>$this</value> <value>$this</value>
</data> </data>
@ -7653,7 +7653,7 @@ Sensitivity</value>
</data> </data>
<data name="btnBACKSLASH.Text" xml:space="preserve"> <data name="btnBACKSLASH.Text" xml:space="preserve">
<value>\</value> <value>\</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;nUDLightFlash.Name" xml:space="preserve"> <data name="&gt;&gt;nUDLightFlash.Name" xml:space="preserve">
<value>nUDLightFlash</value> <value>nUDLightFlash</value>
</data> </data>
@ -7686,10 +7686,10 @@ Sensitivity</value>
</data> </data>
<data name="btnSTOP.Text" xml:space="preserve"> <data name="btnSTOP.Text" xml:space="preserve">
<value>&lt;</value> <value>&lt;</value>
</data> <comment>@Invariant</comment></data>
<data name="btnF5.Text" xml:space="preserve"> <data name="btnF5.Text" xml:space="preserve">
<value>F5</value> <value>F5</value>
</data> <comment>@Invariant</comment></data>
<data name="btnF9.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="btnF9.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 4, 4, 4</value> <value>4, 4, 4, 4</value>
</data> </data>
@ -7707,7 +7707,7 @@ Sensitivity</value>
</data> </data>
<data name="btn1.Text" xml:space="preserve"> <data name="btn1.Text" xml:space="preserve">
<value>1</value> <value>1</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;cBScanCode.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cBScanCode.ZOrder" xml:space="preserve">
<value>122</value> <value>122</value>
</data> </data>
@ -7716,7 +7716,7 @@ Sensitivity</value>
</data> </data>
<data name="button7.Text" xml:space="preserve"> <data name="button7.Text" xml:space="preserve">
<value>↑Up</value> <value>↑Up</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;X360Label.Type" xml:space="preserve"> <data name="&gt;&gt;X360Label.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -7755,7 +7755,7 @@ Sensitivity</value>
</data> </data>
<data name="btnF4.Text" xml:space="preserve"> <data name="btnF4.Text" xml:space="preserve">
<value>F4</value> <value>F4</value>
</data> <comment>@Invariant</comment></data>
<data name="btnF8.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="btnF8.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 4, 4, 4</value> <value>4, 4, 4, 4</value>
</data> </data>
@ -7824,7 +7824,7 @@ Sensitivity</value>
</data> </data>
<data name="btnF2.Text" xml:space="preserve"> <data name="btnF2.Text" xml:space="preserve">
<value>F2</value> <value>F2</value>
</data> <comment>@Invariant</comment></data>
<data name="btnPLAYPAUSE.Size" type="System.Drawing.Size, System.Drawing"> <data name="btnPLAYPAUSE.Size" type="System.Drawing.Size, System.Drawing">
<value>30, 30</value> <value>30, 30</value>
</data> </data>
@ -7842,7 +7842,7 @@ Sensitivity</value>
</data> </data>
<data name="btnNUMMINUS.Text" xml:space="preserve"> <data name="btnNUMMINUS.Text" xml:space="preserve">
<value>-Numpad</value> <value>-Numpad</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnTAB.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnTAB.ZOrder" xml:space="preserve">
<value>105</value> <value>105</value>
</data> </data>
@ -7851,7 +7851,7 @@ Sensitivity</value>
</data> </data>
<data name="btnLSHIFT.Text" xml:space="preserve"> <data name="btnLSHIFT.Text" xml:space="preserve">
<value>LShift</value> <value>LShift</value>
</data> <comment>@Invariant</comment></data>
<data name="btnBACKSPACE.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="btnBACKSPACE.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 4, 4, 4</value> <value>4, 4, 4, 4</value>
</data> </data>
@ -7887,13 +7887,13 @@ Sensitivity</value>
</data> </data>
<data name="btnF1.Text" xml:space="preserve"> <data name="btnF1.Text" xml:space="preserve">
<value>F1</value> <value>F1</value>
</data> <comment>@Invariant</comment></data>
<data name="pBX360.SizeMode" type="System.Windows.Forms.PictureBoxSizeMode, System.Windows.Forms"> <data name="pBX360.SizeMode" type="System.Windows.Forms.PictureBoxSizeMode, System.Windows.Forms">
<value>StretchImage</value> <value>StretchImage</value>
</data> </data>
<data name="btn4.Text" xml:space="preserve"> <data name="btn4.Text" xml:space="preserve">
<value>4</value> <value>4</value>
</data> <comment>@Invariant</comment></data>
<data name="lbGreenV.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbGreenV.Size" type="System.Drawing.Size, System.Drawing">
<value>32, 17</value> <value>32, 17</value>
</data> </data>
@ -7932,7 +7932,7 @@ Sensitivity</value>
</data> </data>
<data name="btnSLASH.Text" xml:space="preserve"> <data name="btnSLASH.Text" xml:space="preserve">
<value>/</value> <value>/</value>
</data> <comment>@Invariant</comment></data>
<data name="btnO.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="btnO.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
@ -7944,7 +7944,7 @@ Sensitivity</value>
</data> </data>
<data name="btnSCL.Text" xml:space="preserve"> <data name="btnSCL.Text" xml:space="preserve">
<value>scl</value> <value>scl</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;nUDMouse.ZOrder" xml:space="preserve"> <data name="&gt;&gt;nUDMouse.ZOrder" xml:space="preserve">
<value>0</value> <value>0</value>
</data> </data>
@ -7992,13 +7992,13 @@ Sensitivity</value>
</data> </data>
<data name="btn2.Text" xml:space="preserve"> <data name="btn2.Text" xml:space="preserve">
<value>2</value> <value>2</value>
</data> <comment>@Invariant</comment></data>
<data name="btnEND.Text" xml:space="preserve"> <data name="btnEND.Text" xml:space="preserve">
<value>end</value> <value>end</value>
</data> <comment>@Invariant</comment></data>
<data name="btnMOUSEUP.Text" xml:space="preserve"> <data name="btnMOUSEUP.Text" xml:space="preserve">
<value>↑Mouse Up</value> <value>↑Mouse Up</value>
</data> <comment>@Invariant</comment></data>
<data name="btnRSL.TabIndex" type="System.Int32, mscorlib"> <data name="btnRSL.TabIndex" type="System.Int32, mscorlib">
<value>311</value> <value>311</value>
</data> </data>
@ -8022,7 +8022,7 @@ Sensitivity</value>
</data> </data>
<data name="button36.Text" xml:space="preserve"> <data name="button36.Text" xml:space="preserve">
<value>RWin</value> <value>RWin</value>
</data> <comment>@Invariant</comment></data>
<data name="lbFlashRate.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbFlashRate.Size" type="System.Drawing.Size, System.Drawing">
<value>76, 17</value> <value>76, 17</value>
</data> </data>
@ -8121,7 +8121,7 @@ Sensitivity</value>
</data> </data>
<data name="bnWHEELUP.Text" xml:space="preserve"> <data name="bnWHEELUP.Text" xml:space="preserve">
<value>↑Mouse Wheel Up</value> <value>↑Mouse Wheel Up</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;lbHeavy.Type" xml:space="preserve"> <data name="&gt;&gt;lbHeavy.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -8145,7 +8145,7 @@ Sensitivity</value>
</data> </data>
<data name="btnF3.Text" xml:space="preserve"> <data name="btnF3.Text" xml:space="preserve">
<value>F3</value> <value>F3</value>
</data> <comment>@Invariant</comment></data>
<data name="button18.TabIndex" type="System.Int32, mscorlib"> <data name="button18.TabIndex" type="System.Int32, mscorlib">
<value>305</value> <value>305</value>
</data> </data>
@ -8295,10 +8295,10 @@ Sensitivity</value>
</data> </data>
<data name="btnF8.Text" xml:space="preserve"> <data name="btnF8.Text" xml:space="preserve">
<value>F8</value> <value>F8</value>
</data> <comment>@Invariant</comment></data>
<data name="btnPREVTRACK.Text" xml:space="preserve"> <data name="btnPREVTRACK.Text" xml:space="preserve">
<value>9</value> <value>9</value>
</data> <comment>@Invariant</comment></data>
<data name="btnPREVTRACK.Font" type="System.Drawing.Font, System.Drawing"> <data name="btnPREVTRACK.Font" type="System.Drawing.Font, System.Drawing">
<value>Webdings, 8.25pt</value> <value>Webdings, 8.25pt</value>
</data> </data>
@ -8319,7 +8319,7 @@ Sensitivity</value>
</data> </data>
<data name="btnSEMICOLON.Text" xml:space="preserve"> <data name="btnSEMICOLON.Text" xml:space="preserve">
<value>;</value> <value>;</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnSEMICOLON.Type" xml:space="preserve"> <data name="&gt;&gt;btnSEMICOLON.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -8409,7 +8409,7 @@ Sensitivity</value>
</data> </data>
<data name="btn7.Text" xml:space="preserve"> <data name="btn7.Text" xml:space="preserve">
<value>7</value> <value>7</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;bnMacro.ZOrder" xml:space="preserve"> <data name="&gt;&gt;bnMacro.ZOrder" xml:space="preserve">
<value>52</value> <value>52</value>
</data> </data>
@ -8538,7 +8538,7 @@ Sensitivity</value>
</data> </data>
<data name="btnNUM3.Text" xml:space="preserve"> <data name="btnNUM3.Text" xml:space="preserve">
<value>3Numpad</value> <value>3Numpad</value>
</data> <comment>@Invariant</comment></data>
<data name="btnMOUSELEFT.Location" type="System.Drawing.Point, System.Drawing"> <data name="btnMOUSELEFT.Location" type="System.Drawing.Point, System.Drawing">
<value>931, 151</value> <value>931, 151</value>
</data> </data>
@ -8698,7 +8698,7 @@ a key by typing it</value>
</data> </data>
<data name="btnZ.Text" xml:space="preserve"> <data name="btnZ.Text" xml:space="preserve">
<value>Z</value> <value>Z</value>
</data> <comment>@Invariant</comment></data>
<data name="btnLEFTMOUSE.Size" type="System.Drawing.Size, System.Drawing"> <data name="btnLEFTMOUSE.Size" type="System.Drawing.Size, System.Drawing">
<value>30, 30</value> <value>30, 30</value>
</data> </data>
@ -8800,7 +8800,7 @@ a key by typing it</value>
</data> </data>
<data name="btnINS.Text" xml:space="preserve"> <data name="btnINS.Text" xml:space="preserve">
<value>ins</value> <value>ins</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;button7.Parent" xml:space="preserve"> <data name="&gt;&gt;button7.Parent" xml:space="preserve">
<value>$this</value> <value>$this</value>
</data> </data>
@ -8842,7 +8842,7 @@ a key by typing it</value>
</data> </data>
<data name="btnR.Text" xml:space="preserve"> <data name="btnR.Text" xml:space="preserve">
<value>R</value> <value>R</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;bnWHEELUP.Type" xml:space="preserve"> <data name="&gt;&gt;bnWHEELUP.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -8911,7 +8911,7 @@ a key by typing it</value>
</data> </data>
<data name="btnNUM4.Text" xml:space="preserve"> <data name="btnNUM4.Text" xml:space="preserve">
<value>4Numpad</value> <value>4Numpad</value>
</data> <comment>@Invariant</comment></data>
<data name="btnW.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms"> <data name="btnW.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms">
<value>Popup</value> <value>Popup</value>
</data> </data>
@ -8980,7 +8980,7 @@ a key by typing it</value>
</data> </data>
<data name="btn6.Text" xml:space="preserve"> <data name="btn6.Text" xml:space="preserve">
<value>6</value> <value>6</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;KBMlabel.Name" xml:space="preserve"> <data name="&gt;&gt;KBMlabel.Name" xml:space="preserve">
<value>KBMlabel</value> <value>KBMlabel</value>
</data> </data>
@ -9055,7 +9055,7 @@ a key by typing it</value>
</data> </data>
<data name="btnNUM8.Text" xml:space="preserve"> <data name="btnNUM8.Text" xml:space="preserve">
<value>8Numpad</value> <value>8Numpad</value>
</data> <comment>@Invariant</comment></data>
<data name="btnSTOP.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="btnSTOP.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
@ -9079,13 +9079,13 @@ a key by typing it</value>
</data> </data>
<data name="button33.Text" xml:space="preserve"> <data name="button33.Text" xml:space="preserve">
<value>5th Mouse Button</value> <value>5th Mouse Button</value>
</data> <comment>@Invariant</comment></data>
<data name="button38.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="button38.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 4, 4, 4</value> <value>4, 4, 4, 4</value>
</data> </data>
<data name="btnW.Text" xml:space="preserve"> <data name="btnW.Text" xml:space="preserve">
<value>W</value> <value>W</value>
</data> <comment>@Invariant</comment></data>
<data name="btnNUMSLASH.TabIndex" type="System.Int32, mscorlib"> <data name="btnNUMSLASH.TabIndex" type="System.Int32, mscorlib">
<value>271</value> <value>271</value>
</data> </data>
@ -9190,7 +9190,7 @@ a key by typing it</value>
</data> </data>
<data name="btnQ.Text" xml:space="preserve"> <data name="btnQ.Text" xml:space="preserve">
<value>Q</value> <value>Q</value>
</data> <comment>@Invariant</comment></data>
<data name="button30.TabIndex" type="System.Int32, mscorlib"> <data name="button30.TabIndex" type="System.Int32, mscorlib">
<value>173</value> <value>173</value>
</data> </data>
@ -9229,7 +9229,7 @@ a key by typing it</value>
</data> </data>
<data name="button30.Text" xml:space="preserve"> <data name="button30.Text" xml:space="preserve">
<value>4th Mouse Button</value> <value>4th Mouse Button</value>
</data> <comment>@Invariant</comment></data>
<data name="btnRB.Size" type="System.Drawing.Size, System.Drawing"> <data name="btnRB.Size" type="System.Drawing.Size, System.Drawing">
<value>38, 38</value> <value>38, 38</value>
</data> </data>
@ -9244,7 +9244,7 @@ a key by typing it</value>
</data> </data>
<data name="$this.Text" xml:space="preserve"> <data name="$this.Text" xml:space="preserve">
<value>Keybaord</value> <value>Keybaord</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnF2.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnF2.ZOrder" xml:space="preserve">
<value>21</value> <value>21</value>
</data> </data>
@ -9253,7 +9253,7 @@ a key by typing it</value>
</data> </data>
<data name="btn5.Text" xml:space="preserve"> <data name="btn5.Text" xml:space="preserve">
<value>5</value> <value>5</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;button2.Parent" xml:space="preserve"> <data name="&gt;&gt;button2.Parent" xml:space="preserve">
<value>$this</value> <value>$this</value>
</data> </data>
@ -9286,7 +9286,7 @@ a key by typing it</value>
</data> </data>
<data name="btnX.Text" xml:space="preserve"> <data name="btnX.Text" xml:space="preserve">
<value>X</value> <value>X</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;button5.Name" xml:space="preserve"> <data name="&gt;&gt;button5.Name" xml:space="preserve">
<value>button5</value> <value>button5</value>
</data> </data>
@ -9313,19 +9313,19 @@ a key by typing it</value>
</data> </data>
<data name="lbRedV.Text" xml:space="preserve"> <data name="lbRedV.Text" xml:space="preserve">
<value>255</value> <value>255</value>
</data> <comment>@Invariant</comment></data>
<data name="btnRALT.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms"> <data name="btnRALT.FlatStyle" type="System.Windows.Forms.FlatStyle, System.Windows.Forms">
<value>Popup</value> <value>Popup</value>
</data> </data>
<data name="btnF12.Text" xml:space="preserve"> <data name="btnF12.Text" xml:space="preserve">
<value>F12</value> <value>F12</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnSEMICOLON.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnSEMICOLON.ZOrder" xml:space="preserve">
<value>144</value> <value>144</value>
</data> </data>
<data name="btnI.Text" xml:space="preserve"> <data name="btnI.Text" xml:space="preserve">
<value>I</value> <value>I</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnRSL.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnRSL.ZOrder" xml:space="preserve">
<value>48</value> <value>48</value>
</data> </data>
@ -9400,7 +9400,7 @@ a key by typing it</value>
</data> </data>
<data name="btnG.Text" xml:space="preserve"> <data name="btnG.Text" xml:space="preserve">
<value>G</value> <value>G</value>
</data> <comment>@Invariant</comment></data>
<data name="btn4.Size" type="System.Drawing.Size, System.Drawing"> <data name="btn4.Size" type="System.Drawing.Size, System.Drawing">
<value>30, 30</value> <value>30, 30</value>
</data> </data>

View File

@ -3706,7 +3706,7 @@
<value>74, 21</value> <value>74, 21</value>
</data> </data>
<data name="cBScanCode.Text" xml:space="preserve"> <data name="cBScanCode.Text" xml:space="preserve">
<value>掃描代碼</value> <value>扫描代码</value>
</data> </data>
<data name="lBTip.Text" xml:space="preserve"> <data name="lBTip.Text" xml:space="preserve">
<value>也可以使用键盘输入一个键</value> <value>也可以使用键盘输入一个键</value>

View File

@ -32,7 +32,6 @@
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Options)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Options));
this.lowColorChooserButton = new System.Windows.Forms.Button(); this.lowColorChooserButton = new System.Windows.Forms.Button();
this.nUDRainbow = new System.Windows.Forms.NumericUpDown(); this.nUDRainbow = new System.Windows.Forms.NumericUpDown();
this.pBRainbow = new System.Windows.Forms.PictureBox();
this.tBBlueBar = new System.Windows.Forms.TrackBar(); this.tBBlueBar = new System.Windows.Forms.TrackBar();
this.tBGreenBar = new System.Windows.Forms.TrackBar(); this.tBGreenBar = new System.Windows.Forms.TrackBar();
this.tBRedBar = new System.Windows.Forms.TrackBar(); this.tBRedBar = new System.Windows.Forms.TrackBar();
@ -134,6 +133,7 @@
this.cBControllerInput = new System.Windows.Forms.CheckBox(); this.cBControllerInput = new System.Windows.Forms.CheckBox();
this.cBIdleDisconnect = new System.Windows.Forms.CheckBox(); this.cBIdleDisconnect = new System.Windows.Forms.CheckBox();
this.gBLightbar = new System.Windows.Forms.GroupBox(); this.gBLightbar = new System.Windows.Forms.GroupBox();
this.btnRainbow = new System.Windows.Forms.Button();
this.lbRainbowB = new System.Windows.Forms.Label(); this.lbRainbowB = new System.Windows.Forms.Label();
this.nUDRainbowB = new System.Windows.Forms.NumericUpDown(); this.nUDRainbowB = new System.Windows.Forms.NumericUpDown();
this.cBFlashType = new System.Windows.Forms.ComboBox(); this.cBFlashType = new System.Windows.Forms.ComboBox();
@ -369,10 +369,9 @@
this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.shareToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.shareToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pSToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.pSToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.resetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.alwaysOnToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.advColorDialog = new DS4Windows.AdvancedColorDialog(); this.advColorDialog = new DS4Windows.AdvancedColorDialog();
((System.ComponentModel.ISupportInitialize)(this.nUDRainbow)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDRainbow)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pBRainbow)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tBBlueBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBBlueBar)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tBGreenBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBGreenBar)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tBRedBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBRedBar)).BeginInit();
@ -476,14 +475,6 @@
this.nUDRainbow.Name = "nUDRainbow"; this.nUDRainbow.Name = "nUDRainbow";
this.nUDRainbow.ValueChanged += new System.EventHandler(this.numUDRainbow_ValueChanged); this.nUDRainbow.ValueChanged += new System.EventHandler(this.numUDRainbow_ValueChanged);
// //
// pBRainbow
//
resources.ApplyResources(this.pBRainbow, "pBRainbow");
this.pBRainbow.Image = global::DS4Windows.Properties.Resources.rainbow;
this.pBRainbow.Name = "pBRainbow";
this.pBRainbow.TabStop = false;
this.pBRainbow.Click += new System.EventHandler(this.pbRainbow_Click);
//
// tBBlueBar // tBBlueBar
// //
resources.ApplyResources(this.tBBlueBar, "tBBlueBar"); resources.ApplyResources(this.tBBlueBar, "tBBlueBar");
@ -1413,6 +1404,7 @@
// //
resources.ApplyResources(this.gBLightbar, "gBLightbar"); resources.ApplyResources(this.gBLightbar, "gBLightbar");
this.gBLightbar.BackColor = System.Drawing.Color.WhiteSmoke; this.gBLightbar.BackColor = System.Drawing.Color.WhiteSmoke;
this.gBLightbar.Controls.Add(this.btnRainbow);
this.gBLightbar.Controls.Add(this.lbRainbowB); this.gBLightbar.Controls.Add(this.lbRainbowB);
this.gBLightbar.Controls.Add(this.nUDRainbowB); this.gBLightbar.Controls.Add(this.nUDRainbowB);
this.gBLightbar.Controls.Add(this.cBFlashType); this.gBLightbar.Controls.Add(this.cBFlashType);
@ -1421,7 +1413,6 @@
this.gBLightbar.Controls.Add(this.btnChargingColor); this.gBLightbar.Controls.Add(this.btnChargingColor);
this.gBLightbar.Controls.Add(this.lbWhileCharging); this.gBLightbar.Controls.Add(this.lbWhileCharging);
this.gBLightbar.Controls.Add(this.lbPercentFlashBar); this.gBLightbar.Controls.Add(this.lbPercentFlashBar);
this.gBLightbar.Controls.Add(this.pBRainbow);
this.gBLightbar.Controls.Add(this.nUDflashLED); this.gBLightbar.Controls.Add(this.nUDflashLED);
this.gBLightbar.Controls.Add(this.nUDRainbow); this.gBLightbar.Controls.Add(this.nUDRainbow);
this.gBLightbar.Controls.Add(this.lbspc); this.gBLightbar.Controls.Add(this.lbspc);
@ -1432,6 +1423,14 @@
this.gBLightbar.Name = "gBLightbar"; this.gBLightbar.Name = "gBLightbar";
this.gBLightbar.TabStop = false; this.gBLightbar.TabStop = false;
// //
// btnRainbow
//
resources.ApplyResources(this.btnRainbow, "btnRainbow");
this.btnRainbow.Image = global::DS4Windows.Properties.Resources.rainbow;
this.btnRainbow.Name = "btnRainbow";
this.btnRainbow.UseVisualStyleBackColor = true;
this.btnRainbow.Click += new System.EventHandler(this.btnRainbow_Click);
//
// lbRainbowB // lbRainbowB
// //
resources.ApplyResources(this.lbRainbowB, "lbRainbowB"); resources.ApplyResources(this.lbRainbowB, "lbRainbowB");
@ -3854,7 +3853,7 @@
this.optionsToolStripMenuItem, this.optionsToolStripMenuItem,
this.shareToolStripMenuItem, this.shareToolStripMenuItem,
this.pSToolStripMenuItem, this.pSToolStripMenuItem,
this.resetToolStripMenuItem}); this.alwaysOnToolStripMenuItem});
this.cMGyroTriggers.Name = "cMGyroTriggers"; this.cMGyroTriggers.Name = "cMGyroTriggers";
this.cMGyroTriggers.ShowCheckMargin = true; this.cMGyroTriggers.ShowCheckMargin = true;
this.cMGyroTriggers.ShowImageMargin = false; this.cMGyroTriggers.ShowImageMargin = false;
@ -4011,13 +4010,12 @@
this.pSToolStripMenuItem.Name = "pSToolStripMenuItem"; this.pSToolStripMenuItem.Name = "pSToolStripMenuItem";
this.pSToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); this.pSToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged);
// //
// resetToolStripMenuItem // alwaysOnToolStripMenuItem
// //
resources.ApplyResources(this.resetToolStripMenuItem, "resetToolStripMenuItem"); resources.ApplyResources(this.alwaysOnToolStripMenuItem, "alwaysOnToolStripMenuItem");
this.resetToolStripMenuItem.CheckOnClick = true; this.alwaysOnToolStripMenuItem.CheckOnClick = true;
this.resetToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; this.alwaysOnToolStripMenuItem.Name = "alwaysOnToolStripMenuItem";
this.resetToolStripMenuItem.Name = "resetToolStripMenuItem"; this.alwaysOnToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged);
this.resetToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged);
// //
// Options // Options
// //
@ -4033,7 +4031,6 @@
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Options_Closed); this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Options_Closed);
this.Resize += new System.EventHandler(this.Options_Resize); this.Resize += new System.EventHandler(this.Options_Resize);
((System.ComponentModel.ISupportInitialize)(this.nUDRainbow)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDRainbow)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pBRainbow)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tBBlueBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBBlueBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tBGreenBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBGreenBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tBRedBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBRedBar)).EndInit();
@ -4141,7 +4138,6 @@
//private System.Windows.Forms.TrackBar tBsixaxisGyroX; //private System.Windows.Forms.TrackBar tBsixaxisGyroX;
//private System.Windows.Forms.TrackBar tBsixaxisGyroY; //private System.Windows.Forms.TrackBar tBsixaxisGyroY;
private System.Windows.Forms.NumericUpDown nUDRainbow; private System.Windows.Forms.NumericUpDown nUDRainbow;
private System.Windows.Forms.PictureBox pBRainbow;
private System.Windows.Forms.Button lowColorChooserButton; private System.Windows.Forms.Button lowColorChooserButton;
private System.Windows.Forms.TrackBar tBBlueBar; private System.Windows.Forms.TrackBar tBBlueBar;
private System.Windows.Forms.TrackBar tBGreenBar; private System.Windows.Forms.TrackBar tBGreenBar;
@ -4357,7 +4353,6 @@
private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem shareToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem shareToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem pSToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem pSToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem resetToolStripMenuItem;
private System.Windows.Forms.Label lbShiftSwipeUp; private System.Windows.Forms.Label lbShiftSwipeUp;
private System.Windows.Forms.Label lbShiftSwipeDown; private System.Windows.Forms.Label lbShiftSwipeDown;
private System.Windows.Forms.Label lbShiftSwipeLeft; private System.Windows.Forms.Label lbShiftSwipeLeft;
@ -4481,5 +4476,7 @@
private System.Windows.Forms.Panel pnlRSTrack; private System.Windows.Forms.Panel pnlRSTrack;
private System.Windows.Forms.Panel pnlLSTrack; private System.Windows.Forms.Panel pnlLSTrack;
private System.Windows.Forms.Panel pnlSATrack; private System.Windows.Forms.Panel pnlSATrack;
private System.Windows.Forms.Button btnRainbow;
private System.Windows.Forms.ToolStripMenuItem alwaysOnToolStripMenuItem;
} }
} }

View File

@ -42,8 +42,8 @@ namespace DS4Windows
rBTPControls.Text = rBSAControls.Text; rBTPControls.Text = rBSAControls.Text;
rBTPMouse.Text = rBSAMouse.Text; rBTPMouse.Text = rBSAMouse.Text;
Visible = false; Visible = false;
colored = pBRainbow.Image; colored = btnRainbow.Image;
greyscale = GreyscaleImage((Bitmap)pBRainbow.Image); greyscale = GreyscaleImage((Bitmap)btnRainbow.Image);
fLPSettings.FlowDirection = FlowDirection.TopDown; fLPSettings.FlowDirection = FlowDirection.TopDown;
foreach (Control control in tPControls.Controls) foreach (Control control in tPControls.Controls)
if (control is Button && !((Button)control).Name.Contains("btn")) if (control is Button && !((Button)control).Name.Contains("btn"))
@ -138,12 +138,12 @@ namespace DS4Windows
if (Rainbow[device] == 0) if (Rainbow[device] == 0)
{ {
pBRainbow.Image = greyscale; btnRainbow.Image = greyscale;
ToggleRainbow(false); ToggleRainbow(false);
} }
else else
{ {
pBRainbow.Image = colored; btnRainbow.Image = colored;
ToggleRainbow(true); ToggleRainbow(true);
} }
DS4Color color = MainColor[device]; DS4Color color = MainColor[device];
@ -251,9 +251,24 @@ namespace DS4Windows
{ {
int tr; int tr;
if (int.TryParse(satriggers[i], out tr)) if (int.TryParse(satriggers[i], out tr))
{
if (tr < cMGyroTriggers.Items.Count && tr > -1)
{ {
((ToolStripMenuItem)cMGyroTriggers.Items[tr]).Checked = true; ((ToolStripMenuItem)cMGyroTriggers.Items[tr]).Checked = true;
s.Add(cMGyroTriggers.Items[int.Parse(satriggers[i])].Text); s.Add(cMGyroTriggers.Items[tr].Text);
}
else
{
((ToolStripMenuItem)cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1]).Checked = true;
s.Add(cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1].Text);
break;
}
}
else
{
((ToolStripMenuItem)cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1]).Checked = true;
s.Add(cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1].Text);
break;
} }
} }
nUDGyroSensitivity.Value = GyroSensitivity[device]; nUDGyroSensitivity.Value = GyroSensitivity[device];
@ -262,8 +277,6 @@ namespace DS4Windows
cBGyroInvertY.Checked = invert == 1 || invert == 3; cBGyroInvertY.Checked = invert == 1 || invert == 3;
if (s.Count > 0) if (s.Count > 0)
btnGyroTriggers.Text = string.Join(", ", s); btnGyroTriggers.Text = string.Join(", ", s);
else
btnGyroTriggers.Text = Properties.Resources.NoneText;
} }
else else
{ {
@ -338,13 +351,10 @@ namespace DS4Windows
nUDLSCurve.Value = 0; nUDLSCurve.Value = 0;
nUDRSCurve.Value = 0; nUDRSCurve.Value = 0;
cBControllerInput.Checked = DS4Mapping; cBControllerInput.Checked = DS4Mapping;
((ToolStripMenuItem)cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1]).Checked = true;
for (int i = 0; i < cMGyroTriggers.Items.Count; i++)
((ToolStripMenuItem)cMGyroTriggers.Items[i]).Checked = false;
nUDGyroSensitivity.Value = 100; nUDGyroSensitivity.Value = 100;
cBGyroInvertX.Checked = false; cBGyroInvertX.Checked = false;
cBGyroInvertY.Checked = false; cBGyroInvertY.Checked = false;
btnGyroTriggers.Text = Properties.Resources.NoneText;
Set(); Set();
} }
@ -436,9 +446,9 @@ namespace DS4Windows
SetDynamicTrackBarValue(tBsixaxisGyroX, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].GyroX + tBsixaxisGyroX.Value * 2) / 3); SetDynamicTrackBarValue(tBsixaxisGyroX, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].GyroX + tBsixaxisGyroX.Value * 2) / 3);
SetDynamicTrackBarValue(tBsixaxisGyroY, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].GyroY + tBsixaxisGyroY.Value * 2) / 3); SetDynamicTrackBarValue(tBsixaxisGyroY, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].GyroY + tBsixaxisGyroY.Value * 2) / 3);
SetDynamicTrackBarValue(tBsixaxisGyroZ, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].GyroZ + tBsixaxisGyroZ.Value * 2) / 3); SetDynamicTrackBarValue(tBsixaxisGyroZ, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].GyroZ + tBsixaxisGyroZ.Value * 2) / 3);
SetDynamicTrackBarValue(tBsixaxisAccelX, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].AccelX + tBsixaxisAccelX.Value * 2) / 3); SetDynamicTrackBarValue(tBsixaxisAccelX, (int)(Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].AccelX + tBsixaxisAccelX.Value * 2) / 3);
SetDynamicTrackBarValue(tBsixaxisAccelY, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].AccelY + tBsixaxisAccelY.Value * 2) / 3); SetDynamicTrackBarValue(tBsixaxisAccelY, (int)(Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].AccelY + tBsixaxisAccelY.Value * 2) / 3);
SetDynamicTrackBarValue(tBsixaxisAccelZ, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].AccelZ + tBsixaxisAccelZ.Value * 2) / 3); SetDynamicTrackBarValue(tBsixaxisAccelZ, (int)(Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].AccelZ + tBsixaxisAccelZ.Value * 2) / 3);
int x = Program.rootHub.getDS4State((int)nUDSixaxis.Value - 1).LX; int x = Program.rootHub.getDS4State((int)nUDSixaxis.Value - 1).LX;
int y = Program.rootHub.getDS4State((int)nUDSixaxis.Value - 1).LY; int y = Program.rootHub.getDS4State((int)nUDSixaxis.Value - 1).LY;
@ -1040,13 +1050,14 @@ namespace DS4Windows
GyroInvert[device] = invert; GyroInvert[device] = invert;
List<int> ints = new List<int>(); List<int> ints = new List<int>();
for (int i = 0; i < cMGyroTriggers.Items.Count; i++) for (int i = 0; i < cMGyroTriggers.Items.Count - 1; i++)
if (((ToolStripMenuItem)cMGyroTriggers.Items[i]).Checked) if (((ToolStripMenuItem)cMGyroTriggers.Items[i]).Checked)
ints.Add(i); ints.Add(i);
if (ints.Count == 0)
ints.Add(-1);
SATriggers[device] = string.Join(",", ints); SATriggers[device] = string.Join(",", ints);
if (nUDRainbow.Value == 0) btnRainbow.Image = greyscale;
if (nUDRainbow.Value == 0) pBRainbow.Image = greyscale; else btnRainbow.Image = colored;
else pBRainbow.Image = colored;
} }
KBM360 kbm360 = null; KBM360 kbm360 = null;
@ -1713,23 +1724,23 @@ namespace DS4Windows
Rainbow[device]= (double)nUDRainbow.Value; Rainbow[device]= (double)nUDRainbow.Value;
if ((double)nUDRainbow.Value <= 0.5) if ((double)nUDRainbow.Value <= 0.5)
{ {
pBRainbow.Image = greyscale; btnRainbow.Image = greyscale;
ToggleRainbow(false); ToggleRainbow(false);
nUDRainbow.Value = 0; nUDRainbow.Value = 0;
} }
} }
private void pbRainbow_Click(object sender, EventArgs e) private void btnRainbow_Click(object sender, EventArgs e)
{ {
if (pBRainbow.Image == greyscale) if (btnRainbow.Image == greyscale)
{ {
pBRainbow.Image = colored; btnRainbow.Image = colored;
ToggleRainbow(true); ToggleRainbow(true);
nUDRainbow.Value = 5; nUDRainbow.Value = 5;
} }
else else
{ {
pBRainbow.Image = greyscale; btnRainbow.Image = greyscale;
ToggleRainbow(false); ToggleRainbow(false);
nUDRainbow.Value = 0; nUDRainbow.Value = 0;
} }
@ -1740,14 +1751,12 @@ namespace DS4Windows
nUDRainbow.Enabled = on; nUDRainbow.Enabled = on;
if (on) if (on)
{ {
//pBRainbow.Location = new Point(216 - 78, pBRainbow.Location.Y);
pBLightbar.Image = RecolorImage((Bitmap)pBLightbar.Image, main); pBLightbar.Image = RecolorImage((Bitmap)pBLightbar.Image, main);
cBLightbyBattery.Text = Properties.Resources.DimByBattery.Replace("*nl*", "\n"); cBLightbyBattery.Text = Properties.Resources.DimByBattery.Replace("*nl*", "\n");
} }
else else
{ {
pnlLowBattery.Enabled = cBLightbyBattery.Checked; pnlLowBattery.Enabled = cBLightbyBattery.Checked;
//pBRainbow.Location = new Point(216, pBRainbow.Location.Y);
pBLightbar.Image = RecolorImage((Bitmap)pBLightbar.Image, main); pBLightbar.Image = RecolorImage((Bitmap)pBLightbar.Image, main);
cBLightbyBattery.Text = Properties.Resources.ColorByBattery.Replace("*nl*", "\n"); cBLightbyBattery.Text = Properties.Resources.ColorByBattery.Replace("*nl*", "\n");
} }
@ -2068,7 +2077,7 @@ namespace DS4Windows
private void Items_MouseHover(object sender, EventArgs e) private void Items_MouseHover(object sender, EventArgs e)
{ {
string name = ((Control)sender).Name; string name = ((Control)sender).Name;
if (name.Contains("btn") && !name.Contains("Flash") && !name.Contains("Stick")) if (name.Contains("btn") && !name.Contains("Flash") && !name.Contains("Stick") && !name.Contains("Rainbow"))
name = name.Remove(1, 1); name = name.Remove(1, 1);
switch (name) switch (name)
{ {
@ -2076,7 +2085,7 @@ namespace DS4Windows
case "cBDoubleTap": root.lbLastMessage.Text = Properties.Resources.TapAndHold; break; case "cBDoubleTap": root.lbLastMessage.Text = Properties.Resources.TapAndHold; break;
case "lbControlTip": root.lbLastMessage.Text = Properties.Resources.UseControllerForMapping; break; case "lbControlTip": root.lbLastMessage.Text = Properties.Resources.UseControllerForMapping; break;
case "cBTouchpadJitterCompensation": root.lbLastMessage.Text = Properties.Resources.Jitter; break; case "cBTouchpadJitterCompensation": root.lbLastMessage.Text = Properties.Resources.Jitter; break;
case "pBRainbow": root.lbLastMessage.Text = Properties.Resources.AlwaysRainbow; break; case "btnRainbow": root.lbLastMessage.Text = Properties.Resources.AlwaysRainbow; break;
case "cBFlushHIDQueue": root.lbLastMessage.Text = Properties.Resources.FlushHIDTip; break; case "cBFlushHIDQueue": root.lbLastMessage.Text = Properties.Resources.FlushHIDTip; break;
case "cBLightbyBattery": root.lbLastMessage.Text = Properties.Resources.LightByBatteryTip; break; case "cBLightbyBattery": root.lbLastMessage.Text = Properties.Resources.LightByBatteryTip; break;
case "lbGryo": root.lbLastMessage.Text = Properties.Resources.GyroReadout; break; case "lbGryo": root.lbLastMessage.Text = Properties.Resources.GyroReadout; break;
@ -2584,22 +2593,28 @@ namespace DS4Windows
private void SATrigger_CheckedChanged(object sender, EventArgs e) private void SATrigger_CheckedChanged(object sender, EventArgs e)
{ {
if (((ToolStripMenuItem)cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1]).Checked) //reset if (sender != cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1] && ((ToolStripMenuItem)sender).Checked)
for (int i = 0; i < cMGyroTriggers.Items.Count; i++) ((ToolStripMenuItem)cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1]).Checked = false;
if (((ToolStripMenuItem)cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1]).Checked) //always on
for (int i = 0; i < cMGyroTriggers.Items.Count - 1; i++)
((ToolStripMenuItem)cMGyroTriggers.Items[i]).Checked = false; ((ToolStripMenuItem)cMGyroTriggers.Items[i]).Checked = false;
List<int> ints = new List<int>();
List <int> ints = new List<int>();
List<string> s = new List<string>(); List<string> s = new List<string>();
for (int i = 0; i < cMGyroTriggers.Items.Count; i++) for (int i = 0; i < cMGyroTriggers.Items.Count - 1; i++)
if (((ToolStripMenuItem)cMGyroTriggers.Items[i]).Checked) if (((ToolStripMenuItem)cMGyroTriggers.Items[i]).Checked)
{ {
ints.Add(i); ints.Add(i);
s.Add(cMGyroTriggers.Items[i].Text); s.Add(cMGyroTriggers.Items[i].Text);
} }
if (ints.Count == 0)
{
ints.Add(-1);
s.Add(cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1].Text);
}
SATriggers[device] = string.Join(",", ints); SATriggers[device] = string.Join(",", ints);
if (s.Count > 0) if (s.Count > 0)
btnGyroTriggers.Text = string.Join(", ", s); btnGyroTriggers.Text = string.Join(", ", s);
else
btnGyroTriggers.Text = Properties.Resources.NoneText;
} }
private void cBGyroInvert_CheckChanged(object sender, EventArgs e) private void cBGyroInvert_CheckChanged(object sender, EventArgs e)

View File

@ -481,4 +481,8 @@
<data name="cMGyroTriggers.Size" type="System.Drawing.Size, System.Drawing"> <data name="cMGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>229, 524</value> <value>229, 524</value>
</data> </data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="$this.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>Inherit</value>
</data>
</root> </root>

View File

@ -278,7 +278,7 @@
<value>152, 26</value> <value>152, 26</value>
</data> </data>
<data name="tSMIRSInverted.Text" xml:space="preserve"> <data name="tSMIRSInverted.Text" xml:space="preserve">
<value>invertito</value> <value>Invertito</value>
</data> </data>
<data name="tSMIRSInvertedX.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSMIRSInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>152, 26</value> <value>152, 26</value>
@ -305,7 +305,7 @@
<value>228, 26</value> <value>228, 26</value>
</data> </data>
<data name="wScanCodeWASDToolStripMenuItem.Text" xml:space="preserve"> <data name="wScanCodeWASDToolStripMenuItem.Text" xml:space="preserve">
<value>con Scansiona Codice</value> <value>con Scansione del Codice</value>
</data> </data>
<data name="ArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="ArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>144, 26</value> <value>144, 26</value>
@ -317,7 +317,7 @@
<value>228, 26</value> <value>228, 26</value>
</data> </data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Text" xml:space="preserve"> <data name="wScanCodeArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>con Scansiona Codice</value> <value>con Scansione del Codice</value>
</data> </data>
<data name="MouseToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="MouseToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>144, 26</value> <value>144, 26</value>
@ -509,4 +509,94 @@ con profilo</value>
<data name="tPDeadzone.Text" xml:space="preserve"> <data name="tPDeadzone.Text" xml:space="preserve">
<value>Zona Morta</value> <value>Zona Morta</value>
</data> </data>
<data name="cBFlushHIDQueue.Text" xml:space="preserve">
<value>Flush HID</value>
</data>
<data name="cBShiftControl.Items26" xml:space="preserve">
<value>Touchpad (non cliccato dentro)</value>
</data>
<data name="cBTap.Text" xml:space="preserve">
<value>Tap</value>
</data>
<data name="cHTrigger.Text" xml:space="preserve">
<value>Trigger</value>
</data>
<data name="defaultToolStripMenuItem.Text" xml:space="preserve">
<value>Default</value>
</data>
<data name="DpadToolStripMenuItem.Text" xml:space="preserve">
<value>Dpad</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>Dito sul Touchpad</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>2 Dita sul Touchpad</value>
</data>
<data name="gBSensitivity,Text" xml:space="preserve">
<value>Sensibilità</value>
</data>
<data name="gBTouchpad.Text" xml:space="preserve">
<value>Touchpad</value>
</data>
<data name="lb6Accel.Text" xml:space="preserve">
<value>Accel</value>
</data>
<data name="lb6Gryo.Text" xml:space="preserve">
<value>Gyro</value>
</data>
<data name="lbBlue.Text" xml:space="preserve">
<value>B</value>
</data>
<data name="lbGreen.Text" xml:space="preserve">
<value>G</value>
</data>
<data name="lbGyroInvert.Text" xml:space="preserve">
<value>Inverti:</value>
</data>
<data name="lbGyroSens.Text" xml:space="preserve">
<value>Sensibilità Giroscopio:</value>
</data>
<data name="lbGyroTriggers.Text" xml:space="preserve">
<value>Grilletti (LT/RT):</value>
</data>
<data name="lbLowBlue.Text" xml:space="preserve">
<value>B</value>
</data>
<data name="lbLowGreen.Text" xml:space="preserve">
<value>G</value>
</data>
<data name="lbLowRed.Text" xml:space="preserve">
<value>R</value>
</data>
<data name="lbRed.Text" xml:space="preserve">
<value>R</value>
</data>
<data name="lbShift.Text" xml:space="preserve">
<value>Shift:</value>
</data>
<data name="lbShiftBlue.Text" xml:space="preserve">
<value>B</value>
</data>
<data name="lbShiftGreen.Text" xml:space="preserve">
<value>G</value>
</data>
<data name="lbShiftRed.Text" xml:space="preserve">
<value>R</value>
</data>
<data name="MouseToolStripMenuItem.Text" xml:space="preserve">
<value>Mouse</value>
</data>
<data name="rBSAControls.Text" xml:space="preserve">
<value>Usa per i Controlli</value>
</data>
<data name="rBSAMouse.Text" xml:space="preserve">
<value>Usa come Mouse</value>
</data>
<data name="resetToolStripMenuItem.Text" xml:space="preserve">
<value>Reset</value>
</data>
<data name="tPCurve.Text" xml:space="preserve">
<value>Piega</value>
</data>
</root> </root>

File diff suppressed because it is too large Load Diff

View File

@ -232,30 +232,24 @@
<data name="lbEmpty.Text" xml:space="preserve"> <data name="lbEmpty.Text" xml:space="preserve">
<value>空:</value> <value>空:</value>
</data> </data>
<data name="gBTouchpad.Text" xml:space="preserve"> <data name="cbStartTouchpadOff.Size" type="System.Drawing.Size, System.Drawing">
<value>触摸板</value> <value>136, 21</value>
</data> </data>
<data name="cMSPresets.Size" type="System.Drawing.Size, System.Drawing"> <data name="cbStartTouchpadOff.Text" xml:space="preserve">
<value>150, 244</value> <value>開啟時滑動/捲動關閉</value>
</data> </data>
<data name="controlToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="controlToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value> <value>133, 26</value>
</data> </data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>146, 6</value> <value>130, 6</value>
</data> </data>
<data name="defaultToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="defaultToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value> <value>133, 26</value>
</data> </data>
<data name="defaultToolStripMenuItem.Text" xml:space="preserve"> <data name="defaultToolStripMenuItem.Text" xml:space="preserve">
<value>默认</value> <value>默认</value>
</data> </data>
<data name="DpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="DpadToolStripMenuItem.Text" xml:space="preserve">
<value>十字键</value>
</data>
<data name="tSMIDPadInverted.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSMIDPadInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>141, 26</value> <value>141, 26</value>
</data> </data>
@ -274,11 +268,11 @@
<data name="tSMIDPadInvertedY.Text" xml:space="preserve"> <data name="tSMIDPadInvertedY.Text" xml:space="preserve">
<value>反转Y轴</value> <value>反转Y轴</value>
</data> </data>
<data name="LSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="DpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value> <value>133, 26</value>
</data> </data>
<data name="LSToolStripMenuItem.Text" xml:space="preserve"> <data name="DpadToolStripMenuItem.Text" xml:space="preserve">
<value>左摇杆</value> <value>十字键</value>
</data> </data>
<data name="tSMILSInverted.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSMILSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>141, 26</value> <value>141, 26</value>
@ -298,11 +292,11 @@
<data name="tSMILSInvertedY.Text" xml:space="preserve"> <data name="tSMILSInvertedY.Text" xml:space="preserve">
<value>反转Y轴</value> <value>反转Y轴</value>
</data> </data>
<data name="RSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="LSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value> <value>133, 26</value>
</data> </data>
<data name="RSToolStripMenuItem.Text" xml:space="preserve"> <data name="LSToolStripMenuItem.Text" xml:space="preserve">
<value>摇杆</value> <value>摇杆</value>
</data> </data>
<data name="tSMIRSInverted.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSMIRSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>141, 26</value> <value>141, 26</value>
@ -322,14 +316,17 @@
<data name="tSMIRSInvertedY.Text" xml:space="preserve"> <data name="tSMIRSInvertedY.Text" xml:space="preserve">
<value>反转Y轴</value> <value>反转Y轴</value>
</data> </data>
<data name="RSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>133, 26</value>
</data>
<data name="RSToolStripMenuItem.Text" xml:space="preserve">
<value>右摇杆</value>
</data>
<data name="ABXYToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="ABXYToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value> <value>133, 26</value>
</data> </data>
<data name="ABXYToolStripMenuItem.Text" xml:space="preserve"> <data name="ABXYToolStripMenuItem.Text" xml:space="preserve">
<value>右側四個按鈕</value> <value>右侧动作键</value>
</data>
<data name="WASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data> </data>
<data name="wScanCodeWASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="wScanCodeWASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>164, 26</value> <value>164, 26</value>
@ -337,11 +334,8 @@
<data name="wScanCodeWASDToolStripMenuItem.Text" xml:space="preserve"> <data name="wScanCodeWASDToolStripMenuItem.Text" xml:space="preserve">
<value>用掃描代碼</value> <value>用掃描代碼</value>
</data> </data>
<data name="ArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="WASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value> <value>133, 26</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>箭头键</value>
</data> </data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="wScanCodeArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>164, 26</value> <value>164, 26</value>
@ -349,11 +343,11 @@
<data name="wScanCodeArrowKeysToolStripMenuItem.Text" xml:space="preserve"> <data name="wScanCodeArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>用掃描代碼</value> <value>用掃描代碼</value>
</data> </data>
<data name="MouseToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="ArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value> <value>133, 26</value>
</data> </data>
<data name="MouseToolStripMenuItem.Text" xml:space="preserve"> <data name="ArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>鼠标</value> <value>方向键</value>
</data> </data>
<data name="tSMIMouseInverted.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSMIMouseInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>141, 26</value> <value>141, 26</value>
@ -373,14 +367,17 @@
<data name="tSMIMouseInvertedY.Text" xml:space="preserve"> <data name="tSMIMouseInvertedY.Text" xml:space="preserve">
<value>反转Y轴</value> <value>反转Y轴</value>
</data> </data>
<data name="cbStartTouchpadOff.Size" type="System.Drawing.Size, System.Drawing"> <data name="MouseToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>136, 21</value> <value>133, 26</value>
</data> </data>
<data name="cbStartTouchpadOff.Text" xml:space="preserve"> <data name="MouseToolStripMenuItem.Text" xml:space="preserve">
<value>開啟時滑動/捲動關閉</value> <value>鼠标</value>
</data> </data>
<data name="gBOther.Text" xml:space="preserve"> <data name="cMSPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>其他</value> <value>134, 244</value>
</data>
<data name="gBTouchpad.Text" xml:space="preserve">
<value>触摸板</value>
</data> </data>
<data name="cBDinput.Size" type="System.Drawing.Size, System.Drawing"> <data name="cBDinput.Size" type="System.Drawing.Size, System.Drawing">
<value>108, 21</value> <value>108, 21</value>
@ -388,8 +385,11 @@
<data name="cBDinput.Text" xml:space="preserve"> <data name="cBDinput.Text" xml:space="preserve">
<value>只使用 Dinput</value> <value>只使用 Dinput</value>
</data> </data>
<data name="pBProgram.Location" type="System.Drawing.Point, System.Drawing">
<value>236, 133</value>
</data>
<data name="cBLaunchProgram.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBLaunchProgram.Location" type="System.Drawing.Point, System.Drawing">
<value>11, 163</value> <value>9, 140</value>
</data> </data>
<data name="cBLaunchProgram.Size" type="System.Drawing.Size, System.Drawing"> <data name="cBLaunchProgram.Size" type="System.Drawing.Size, System.Drawing">
<value>129, 21</value> <value>129, 21</value>
@ -397,6 +397,9 @@
<data name="cBLaunchProgram.Text" xml:space="preserve"> <data name="cBLaunchProgram.Text" xml:space="preserve">
<value>运行程式与配置文件</value> <value>运行程式与配置文件</value>
</data> </data>
<data name="btnBrowse.Location" type="System.Drawing.Point, System.Drawing">
<value>146, 135</value>
</data>
<data name="btnBrowse.Text" xml:space="preserve"> <data name="btnBrowse.Text" xml:space="preserve">
<value>浏览...</value> <value>浏览...</value>
</data> </data>
@ -427,32 +430,8 @@
<data name="cBIdleDisconnect.Text" xml:space="preserve"> <data name="cBIdleDisconnect.Text" xml:space="preserve">
<value>空闲时断开连接</value> <value>空闲时断开连接</value>
</data> </data>
<data name="gBLightbar.Text" xml:space="preserve"> <data name="gBOther.Text" xml:space="preserve">
<value>灯条</value> <value>其他</value>
</data>
<data name="cBShiftLight.Size" type="System.Drawing.Size, System.Drawing">
<value>176, 21</value>
</data>
<data name="cBShiftLight.Text" xml:space="preserve">
<value>shift mode 時用另一種顏色</value>
</data>
<data name="lbShiftRed.Size" type="System.Drawing.Size, System.Drawing">
<value>22, 17</value>
</data>
<data name="lbShiftRed.Text" xml:space="preserve">
<value>红</value>
</data>
<data name="lbShiftGreen.Size" type="System.Drawing.Size, System.Drawing">
<value>22, 17</value>
</data>
<data name="lbShiftGreen.Text" xml:space="preserve">
<value>绿</value>
</data>
<data name="lbShiftBlue.Size" type="System.Drawing.Size, System.Drawing">
<value>22, 17</value>
</data>
<data name="lbShiftBlue.Text" xml:space="preserve">
<value>蓝</value>
</data> </data>
<data name="cBFlashType.Items" xml:space="preserve"> <data name="cBFlashType.Items" xml:space="preserve">
<value>闪砾</value> <value>闪砾</value>
@ -478,14 +457,38 @@
<data name="lbWhileCharging.Text" xml:space="preserve"> <data name="lbWhileCharging.Text" xml:space="preserve">
<value>充电时:</value> <value>充电时:</value>
</data> </data>
<data name="gBRumble.Text" xml:space="preserve"> <data name="cBShiftLight.Size" type="System.Drawing.Size, System.Drawing">
<value>转盘</value> <value>176, 21</value>
</data>
<data name="cBShiftLight.Text" xml:space="preserve">
<value>shift mode 時用另一種顏色</value>
</data>
<data name="lbShiftRed.Size" type="System.Drawing.Size, System.Drawing">
<value>22, 17</value>
</data>
<data name="lbShiftRed.Text" xml:space="preserve">
<value>红</value>
</data>
<data name="lbShiftGreen.Size" type="System.Drawing.Size, System.Drawing">
<value>22, 17</value>
</data>
<data name="lbShiftGreen.Text" xml:space="preserve">
<value>绿</value>
</data>
<data name="lbShiftBlue.Size" type="System.Drawing.Size, System.Drawing">
<value>22, 17</value>
</data>
<data name="lbShiftBlue.Text" xml:space="preserve">
<value>蓝</value>
</data>
<data name="gBLightbar.Text" xml:space="preserve">
<value>灯条</value>
</data> </data>
<data name="btnRumbleLightTest.Text" xml:space="preserve"> <data name="btnRumbleLightTest.Text" xml:space="preserve">
<value>测试轻震</value> <value>测试轻震</value>
</data> </data>
<data name="tPController.Text" xml:space="preserve"> <data name="gBRumble.Text" xml:space="preserve">
<value>控制器讀數</value> <value>转盘</value>
</data> </data>
<data name="lbRSTip.Text" xml:space="preserve"> <data name="lbRSTip.Text" xml:space="preserve">
<value>右摇杆</value> <value>右摇杆</value>
@ -514,9 +517,6 @@
<data name="lb6Gryo.Text" xml:space="preserve"> <data name="lb6Gryo.Text" xml:space="preserve">
<value>陀螺仪</value> <value>陀螺仪</value>
</data> </data>
<data name="cBShiftControl.Items" xml:space="preserve">
<value>(無)/shift 關閉</value>
</data>
<data name="lbHold.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbHold.Size" type="System.Drawing.Size, System.Drawing">
<value>30, 17</value> <value>30, 17</value>
</data> </data>
@ -529,14 +529,14 @@
<data name="lbtoUse.Text" xml:space="preserve"> <data name="lbtoUse.Text" xml:space="preserve">
<value>來使用這些控制</value> <value>來使用這些控制</value>
</data> </data>
<data name="tPControls.Text" xml:space="preserve"> <data name="cBShiftControl.Items" xml:space="preserve">
<value>控制器</value> <value>(無)/shift 關閉</value>
</data> </data>
<data name="lbControlTip.Text" xml:space="preserve"> <data name="lbControlTip.Text" xml:space="preserve">
<value>點擊光調來開啟顏色選擇器</value> <value>點擊光調來開啟顏色選擇器</value>
</data> </data>
<data name="tPSpecial.Text" xml:space="preserve"> <data name="tPControls.Text" xml:space="preserve">
<value>特殊动作</value> <value>控制器</value>
</data> </data>
<data name="cHName.Text" xml:space="preserve"> <data name="cHName.Text" xml:space="preserve">
<value>名字</value> <value>名字</value>
@ -559,6 +559,9 @@
<data name="lbActionsTip.Text" xml:space="preserve"> <data name="lbActionsTip.Text" xml:space="preserve">
<value>...最多50个动作。</value> <value>...最多50个动作。</value>
</data> </data>
<data name="tPSpecial.Text" xml:space="preserve">
<value>特殊动作</value>
</data>
<data name="tPDeadzone.Text" xml:space="preserve"> <data name="tPDeadzone.Text" xml:space="preserve">
<value>死区</value> <value>死区</value>
</data> </data>

View File

@ -702,4 +702,13 @@
<data name="$this.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="$this.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>Inherit</value> <value>Inherit</value>
</data> </data>
<data name="gBSensitivity,Text" xml:space="preserve">
<value>靈敏度</value>
</data>
<data name="tPController.Text" xml:space="preserve">
<value>控制器讀數</value>
</data>
<data name="tPShiftMod.Text" xml:space="preserve">
<value>Shift Modifier</value>
</data>
</root> </root>

View File

@ -244,4 +244,7 @@
<data name="cMSLoadPresets.Size" type="System.Drawing.Size, System.Drawing"> <data name="cMSLoadPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>139, 48</value> <value>139, 48</value>
</data> </data>
<data name="btnRumble.Text" xml:space="preserve">
<value>Aggiungi Vibrazione</value>
</data>
</root> </root>

View File

@ -142,7 +142,7 @@
</data> </data>
<data name="cHMacro.Text" xml:space="preserve"> <data name="cHMacro.Text" xml:space="preserve">
<value>Macro Order</value> <value>Macro Order</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btnRumble.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnRumble.ZOrder" xml:space="preserve">
<value>3</value> <value>3</value>
</data> </data>
@ -181,7 +181,7 @@
</data> </data>
<data name="savePresets.Filter" xml:space="preserve"> <data name="savePresets.Filter" xml:space="preserve">
<value>Text Document (*.txt)|*.txt</value> <value>Text Document (*.txt)|*.txt</value>
</data> <comment>@Invariant</comment></data>
<data name="&gt;&gt;btn4th.Name" xml:space="preserve"> <data name="&gt;&gt;btn4th.Name" xml:space="preserve">
<value>btn4th</value> <value>btn4th</value>
</data> </data>
@ -218,7 +218,7 @@
</data> </data>
<data name="$this.Text" xml:space="preserve"> <data name="$this.Text" xml:space="preserve">
<value>Record a Macro</value> <value>Record a Macro</value>
</data> <comment>@Invariant</comment></data>
<data name="pBLtouch.TabIndex" type="System.Int32, mscorlib"> <data name="pBLtouch.TabIndex" type="System.Int32, mscorlib">
<value>3</value> <value>3</value>
</data> </data>
@ -599,7 +599,7 @@
</data> </data>
<data name="openPresets.Filter" xml:space="preserve"> <data name="openPresets.Filter" xml:space="preserve">
<value>Text Document (*.txt)|*.txt</value> <value>Text Document (*.txt)|*.txt</value>
</data> <comment>@Invariant</comment></data>
<data name="btnSave.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> <data name="btnSave.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value> <value>Top, Right</value>
</data> </data>

View File

@ -118,10 +118,10 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<data name="label4.Text" xml:space="preserve"> <data name="label4.Text" xml:space="preserve">
<value>Per quelli che preferiscono un'installazione regolare Impostazioni salvate in %appdata%/ds4tool</value> <value>Per quelli che preferiscono un'installazione regolare, le Impostazioni sono salvate in %appdata%/ds4tool</value>
</data> </data>
<data name="label3.Text" xml:space="preserve"> <data name="label3.Text" xml:space="preserve">
<value>Per quelli che preferiscono un programma portatile Nota: questa opzione non funziona se in una cartella admin senza UAC</value> <value>Per quelli che preferiscono un programma portatile Nota: questa opzione non funziona se si trova in una cartella admin senza UAC</value>
</data> </data>
<data name="bnPrgmFolder.Text" xml:space="preserve"> <data name="bnPrgmFolder.Text" xml:space="preserve">
<value>Cartella Programma</value> <value>Cartella Programma</value>

View File

@ -1499,7 +1499,7 @@
<value>TopCenter</value> <value>TopCenter</value>
</data> </data>
<data name="lbHoldFor.Text" xml:space="preserve"> <data name="lbHoldFor.Text" xml:space="preserve">
<value>Premuto per</value> <value>Tieni Premuto per</value>
</data> </data>
<data name="lbSecs.Text" xml:space="preserve"> <data name="lbSecs.Text" xml:space="preserve">
<value>secondi</value> <value>secondi</value>
@ -1540,4 +1540,13 @@
<data name="lbArg.Text" xml:space="preserve"> <data name="lbArg.Text" xml:space="preserve">
<value>Argomento</value> <value>Argomento</value>
</data> </data>
<data name="lbDTapDVR.Text" xml:space="preserve">
<value>Doppio Tap sul Grilletto (LT/RT)</value>
</data>
<data name="lbHoldDVR.Text" xml:space="preserve">
<value>Tieni Premuto Grilletto</value>
</data>
<data name="lbTapDVR.Text" xml:space="preserve">
<value>Tap sul Grilletto</value>
</data>
</root> </root>

View File

@ -60,16 +60,16 @@ namespace DS4Windows
}*/ }*/
/* byte touchID1 = (byte)(data[0 + TOUCHPAD_DATA_OFFSET + touchPacketOffset] & 0x7F); /* byte touchID1 = (byte)(data[0 + TOUCHPAD_DATA_OFFSET + touchPacketOffset] & 0x7F);
byte touchID2 = (byte)(data[4 + TOUCHPAD_DATA_OFFSET + touchPacketOffset] & 0x7F);*/ byte touchID2 = (byte)(data[4 + TOUCHPAD_DATA_OFFSET + touchPacketOffset] & 0x7F);*/
int currentX = (Int16)((UInt16)(gyro[0] << 8) | gyro[1]) / 256; int currentX = (short)((ushort)(gyro[0] << 8) | gyro[1]) / 64;
int currentY = (Int16)((UInt16)(gyro[2] << 8) | gyro[3]) / 256; int currentY = (short)((ushort)(gyro[2] << 8) | gyro[3]) / 64;
int currentZ = (Int16)((UInt16)(gyro[4] << 8) | gyro[5]) / 256; int currentZ = (short)((ushort)(gyro[4] << 8) | gyro[5]) / 64;
int AccelX = (Int16)((UInt16)(accel[2] << 8) | accel[3]) / 256; int AccelX = (short)((ushort)(accel[2] << 8) | accel[3]) / 256;
int AccelY = (Int16)((UInt16)(accel[0] << 8) | accel[1]) / 256; int AccelY = (short)((ushort)(accel[0] << 8) | accel[1]) / 256;
int AccelZ = (Int16)((UInt16)(accel[4] << 8) | accel[5]) / 256; int AccelZ = (short)((ushort)(accel[4] << 8) | accel[5]) / 256;
SixAxisEventArgs args; SixAxisEventArgs args;
//if (sensors.Touch1 || sensors.Touch2) //if (sensors.Touch1 || sensors.Touch2)
{ {
if (SixAxisMoved != null) /* if (SixAxisMoved != null)
{ {
SixAxis sPrev, now; SixAxis sPrev, now;
sPrev = new SixAxis(lastGyroX, lastGyroY, lastGyroZ, lastAX,lastAY,lastAZ); sPrev = new SixAxis(lastGyroX, lastGyroY, lastGyroZ, lastAX,lastAY,lastAZ);
@ -83,7 +83,7 @@ namespace DS4Windows
lastGyroZ = currentZ; lastGyroZ = currentZ;
lastAX = AccelX; lastAX = AccelX;
lastAY = AccelY; lastAY = AccelY;
lastAZ = AccelZ; lastAZ = AccelZ;*/
} }
if (AccelX != 0 || AccelY != 0 || AccelZ != 0) if (AccelX != 0 || AccelY != 0 || AccelZ != 0)
{ {

View File

@ -53,21 +53,21 @@ namespace DS4Windows
/// <summary> Yaw leftward/counter-clockwise/turn to port or larboard side </summary> /// <summary> Yaw leftward/counter-clockwise/turn to port or larboard side </summary>
/// <remarks> Add double the previous result to this delta and divide by three.</remarks> /// <remarks> Add double the previous result to this delta and divide by three.</remarks>
public int AccelX { get { return (Int16)((UInt16)(accel[2] << 8) | accel[3]) / 256; } } public int AccelX { get { return (short)((ushort)(accel[2] << 8) | accel[3]) / 256; } }
/// <summary> Pitch upward/backward </summary> /// <summary> Pitch upward/backward </summary>
/// <remarks> Add double the previous result to this delta and divide by three.</remarks> /// <remarks> Add double the previous result to this delta and divide by three.</remarks>
public int AccelY { get { return (Int16)((UInt16)(accel[0] << 8) | accel[1]) / 256; } } public int AccelY { get { return (short)((ushort)(accel[0] << 8) | accel[1] ) / 256; } }
/// <summary> roll left/L side of controller down/starboard raising up </summary> /// <summary> roll left/L side of controller down/starboard raising up </summary>
/// <remarks> Add double the previous result to this delta and divide by three.</remarks> /// <remarks> Add double the previous result to this delta and divide by three.</remarks>
public int AccelZ { get { return (Int16)((UInt16)(accel[4] << 8) | accel[5]) / 256; } } public int AccelZ { get { return (short)((ushort)(accel[4] << 8) | accel[5]) / 256; } }
/// <summary> R side of controller upward </summary> /// <summary> R side of controller upward </summary>
/// <remarks> Add double the previous result to this delta and divide by three.</remarks> /// <remarks> Add double the previous result to this delta and divide by three.</remarks>
public int GyroX { get { return (Int16)((UInt16)(gyro[0] << 8) | gyro[1]) / 64; } } public int GyroX { get { return (short)((ushort)(gyro[0] << 8) | gyro[1]) / 64; } }
/// <summary> touchpad and button face side of controller upward </summary> /// <summary> touchpad and button face side of controller upward </summary>
/// <remarks> Add double the previous result to this delta and divide by three.</remarks> /// <remarks> Add double the previous result to this delta and divide by three.</remarks>
public int GyroY { get { return (Int16)((UInt16)(gyro[2] << 8) | gyro[3]) / 64; } } public int GyroY { get { return (short)((ushort)(gyro[2] << 8) | gyro[3]) / 64; } }
/// <summary> Audio/expansion ports upward and light bar/shoulders/bumpers/USB port downward </summary> /// <summary> Audio/expansion ports upward and light bar/shoulders/bumpers/USB port downward </summary>
/// <remarks> Add double the previous result to this delta and divide by three.</remarks> /// <remarks> Add double the previous result to this delta and divide by three.</remarks>
public int GyroZ { get { return (Int16)((UInt16)(gyro[4] << 8) | gyro[5]) / 64; } } public int GyroZ { get { return (short)((ushort)(gyro[4] << 8) | gyro[5]) / 64; } }
} }
} }

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.4.32")] [assembly: AssemblyVersion("1.4.321")]
[assembly: AssemblyFileVersion("1.4.32")] [assembly: AssemblyFileVersion("1.4.321")]

View File

@ -343,7 +343,7 @@
<value>Per favore Aprire ScpDriver.exe</value> <value>Per favore Aprire ScpDriver.exe</value>
</data> </data>
<data name="OtherFileLocation" xml:space="preserve"> <data name="OtherFileLocation" xml:space="preserve">
<value>, file su altre locazioni verranno cancellati</value> <value>, i file nelle altre cartelle verranno cancellati</value>
</data> </data>
<data name="PleaseDownloadUpdater" xml:space="preserve"> <data name="PleaseDownloadUpdater" xml:space="preserve">
<value>Per favore Scarica l'Uploader ora, e posizionalo nella cartella del programma, poi controlla per aggiornamenti nuovamente</value> <value>Per favore Scarica l'Uploader ora, e posizionalo nella cartella del programma, poi controlla per aggiornamenti nuovamente</value>
@ -415,100 +415,100 @@
<value>Arresto Leggero</value> <value>Arresto Leggero</value>
</data> </data>
<data name="StoppedDS4Windows" xml:space="preserve"> <data name="StoppedDS4Windows" xml:space="preserve">
<value>Controller DS4 in arresto</value> <value>DS4Windows Arrestato</value>
</data> </data>
<data name="StoppingDS4" xml:space="preserve"> <data name="StoppingDS4" xml:space="preserve">
<value>X360 Controller in arresto</value> <value>Controller DS4 in arresto</value>
</data> </data>
<data name="StoppingX360" xml:space="preserve"> <data name="StoppingX360" xml:space="preserve">
<value>Arresta</value> <value>X360 Controller in arresto</value>
</data> </data>
<data name="StopText" xml:space="preserve"> <data name="StopText" xml:space="preserve">
<value>Swipe Giù</value> <value>Arresta</value>
</data> </data>
<data name="SwipeDown" xml:space="preserve"> <data name="SwipeDown" xml:space="preserve">
<value>Swipe Sinistra</value> <value>Swipe Giù</value>
</data> </data>
<data name="SwipeLeft" xml:space="preserve"> <data name="SwipeLeft" xml:space="preserve">
<value>Swipe Destra</value> <value>Swipe Sinistra</value>
</data> </data>
<data name="SwipeRight" xml:space="preserve"> <data name="SwipeRight" xml:space="preserve">
<value>Effettuare Swipe sul Touchpad per cambiare profili</value> <value>Swipe Destra</value>
</data> </data>
<data name="SwipeTouchpad" xml:space="preserve"> <data name="SwipeTouchpad" xml:space="preserve">
<value>Swipe Su</value> <value>Effettuare Swipe sul Touchpad per cambiare profili</value>
</data> </data>
<data name="SwipeUp" xml:space="preserve"> <data name="SwipeUp" xml:space="preserve">
<value>Tap e mantenere per trascinare, piccolo ritardo con tap singoli</value> <value>Swipe Su</value>
</data> </data>
<data name="TapAndHold" xml:space="preserve"> <data name="TapAndHold" xml:space="preserve">
<value>Test Pesante</value> <value>Tap e mantenere per trascinare, piccolo ritardo con tap singoli</value>
</data> </data>
<data name="TestHText" xml:space="preserve"> <data name="TestHText" xml:space="preserve">
<value>Test Leggero</value> <value>Test Pesante</value>
</data> </data>
<data name="TestLText" xml:space="preserve"> <data name="TestLText" xml:space="preserve">
<value>Test Leggero</value> <value>Test Leggero</value>
</data> </data>
<data name="TiltDown" xml:space="preserve"> <data name="TiltDown" xml:space="preserve">
<value>Inclina a Sx</value> <value>Inclina Giù</value>
</data> </data>
<data name="TiltLeft" xml:space="preserve"> <data name="TiltLeft" xml:space="preserve">
<value>Inclina a Dx</value> <value>Inclina a Sx</value>
</data> </data>
<data name="TiltRight" xml:space="preserve"> <data name="TiltRight" xml:space="preserve">
<value>Inclina Su</value> <value>Inclina a Dx</value>
</data> </data>
<data name="TiltUp" xml:space="preserve"> <data name="TiltUp" xml:space="preserve">
<value>Movimenti Touchpad sono ora Disattivati</value> <value>Inclina Su</value>
</data> </data>
<data name="TouchpadMovementOff" xml:space="preserve"> <data name="TouchpadMovementOff" xml:space="preserve">
<value>Movimenti Touchpad sono ora Attivati</value> <value>Movimenti Touchpad sono ora Disattivati</value>
</data> </data>
<data name="TouchpadMovementOn" xml:space="preserve"> <data name="TouchpadMovementOn" xml:space="preserve">
<value>Ri-abilita premendo PS+Touchpad</value> <value>Movimenti Touchpad sono ora Attivati</value>
</data> </data>
<data name="TouchpadOffTip" xml:space="preserve"> <data name="TouchpadOffTip" xml:space="preserve">
<value>Swipe Touchpad a 2 dita a sinistra o a destra</value> <value>Ri-abilita premendo PS+Touchpad</value>
</data> </data>
<data name="TwoFingerSwipe" xml:space="preserve"> <data name="TwoFingerSwipe" xml:space="preserve">
<value>Scrivi nuovo nome qui</value> <value>Swipe Touchpad a 2 dita a sinistra o a destra</value>
</data> </data>
<data name="TypeNewName" xml:space="preserve"> <data name="TypeNewName" xml:space="preserve">
<value>Scrivi nome profilo qui</value> <value>Scrivi nuovo nome qui</value>
</data> </data>
<data name="TypeProfileName" xml:space="preserve"> <data name="TypeProfileName" xml:space="preserve">
<value>Su</value> <value>Scrivi nome profilo qui</value>
</data> </data>
<data name="UpText" xml:space="preserve"> <data name="UpText" xml:space="preserve">
<value>Sei aggiornato</value> <value>Su</value>
</data> </data>
<data name="UpToDate" xml:space="preserve"> <data name="UpToDate" xml:space="preserve">
<value>Puoi anche usare il tuo controller per cambiare i controlli</value> <value>Sei aggiornato</value>
</data> </data>
<data name="UseControllerForMapping" xml:space="preserve"> <data name="UseControllerForMapping" xml:space="preserve">
<value>Utilizzando Modalità Esclusiva</value> <value>Puoi anche usare il tuo controller per cambiare i controlli</value>
</data> </data>
<data name="UsingExclusive" xml:space="preserve"> <data name="UsingExclusive" xml:space="preserve">
<value>Il Controller *number* sta usando il Profilo "*Profile name*"</value> <value>Utilizzando Modalità Esclusiva</value>
</data> </data>
<data name="UsingProfile" xml:space="preserve"> <data name="UsingProfile" xml:space="preserve">
<value>Utilizzando Modalità Condivisa</value> <value>Il Controller *number* sta usando il Profilo "*Profile name*"</value>
</data> </data>
<data name="UsingShared" xml:space="preserve"> <data name="UsingShared" xml:space="preserve">
<value>Questo disabilita il Touchpad come mouse</value> <value>Utilizzando Modalità Condivisa</value>
</data> </data>
<data name="UsingTPSwipes" xml:space="preserve"> <data name="UsingTPSwipes" xml:space="preserve">
<value>Per favore immettere un nome valido</value> <value>Questo disabilita il Touchpad come mouse</value>
</data> </data>
<data name="ValidName" xml:space="preserve"> <data name="ValidName" xml:space="preserve">
<value>Aspetta *number**ms*</value> <value>Per favore immettere un nome valido</value>
</data> </data>
<data name="WaitMS" xml:space="preserve"> <data name="WaitMS" xml:space="preserve">
<value>Mantenere</value> <value>Aspetta *number**ms*</value>
</data> </data>
<data name="WillKeep" xml:space="preserve"> <data name="WillKeep" xml:space="preserve">
<value>Usa porte più alte se ricevi conflitti in altri programmi emulatori X360, come il tool SCP</value> <value>Mantenere</value>
</data> </data>
<data name="XinputPorts" xml:space="preserve"> <data name="XinputPorts" xml:space="preserve">
<value>Usa porte più alte se ricevi conflitti in altri programmi emulatori X360, come il tool SCP</value> <value>Usa porte più alte se ricevi conflitti in altri programmi emulatori X360, come il tool SCP</value>
@ -529,6 +529,24 @@
<value>DS4Windows Arrestato</value> <value>DS4Windows Arrestato</value>
</data> </data>
<data name="TextDocs" xml:space="preserve"> <data name="TextDocs" xml:space="preserve">
<value>Inclina Giù</value> <value>Documento di Testo (*.txt)</value>
</data>
<data name="CannotMoveFiles" xml:space="preserve">
<value>Impossibile spostare i file in un nuova cartella. Rinomina la cartella DS4Tool in "DS4Windows"</value>
</data>
<data name="ChargeController" xml:space="preserve">
<value>Carica la Batteria</value>
</data>
<data name="InstallFailed" xml:space="preserve">
<value>Installazione Fallita. Riprova</value>
</data>
<data name="TestText" xml:space="preserve">
<value>Test</value>
</data>
<data name="Unassigned" xml:space="preserve">
<value>Non Assegnato</value>
</data>
<data name="XMLFiles" xml:space="preserve">
<value>File XML (*.xml)</value>
</data> </data>
</root> </root>

View File

@ -430,99 +430,105 @@
<value>DS4Windows已停止</value> <value>DS4Windows已停止</value>
</data> </data>
<data name="StoppedDS4Windows" xml:space="preserve"> <data name="StoppedDS4Windows" xml:space="preserve">
<value>DS4手柄停止中</value> <value>DS4Windows已停止</value>
</data> </data>
<data name="StoppingDS4" xml:space="preserve"> <data name="StoppingDS4" xml:space="preserve">
<value>XBOX 360手柄停止中</value> <value>DS4手柄停止中</value>
</data> </data>
<data name="StoppingX360" xml:space="preserve"> <data name="StoppingX360" xml:space="preserve">
<value>停止</value> <value>XBOX 360手柄停止</value>
</data> </data>
<data name="StopText" xml:space="preserve"> <data name="StopText" xml:space="preserve">
<value>下滑</value> <value>停止</value>
</data> </data>
<data name="SwipeDown" xml:space="preserve"> <data name="SwipeDown" xml:space="preserve">
<value>滑</value> <value>滑</value>
</data> </data>
<data name="SwipeLeft" xml:space="preserve"> <data name="SwipeLeft" xml:space="preserve">
<value>滑</value> <value>滑</value>
</data> </data>
<data name="SwipeRight" xml:space="preserve"> <data name="SwipeRight" xml:space="preserve">
<value>滑动触摸板以更改配置文件</value> <value>滑</value>
</data> </data>
<data name="SwipeTouchpad" xml:space="preserve"> <data name="SwipeTouchpad" xml:space="preserve">
<value>滑</value> <value>滑动触摸板以更改配置文件</value>
</data> </data>
<data name="SwipeUp" xml:space="preserve"> <data name="SwipeUp" xml:space="preserve">
<value>轻触保持以拖动,单次轻触稍微延迟</value> <value>上滑</value>
</data> </data>
<data name="TapAndHold" xml:space="preserve"> <data name="TapAndHold" xml:space="preserve">
<value>测试震动</value> <value>轻触保持以拖动,单次轻触稍微延迟</value>
</data> </data>
<data name="TestHText" xml:space="preserve"> <data name="TestHText" xml:space="preserve">
<value>测试震</value> <value>测试震</value>
</data> </data>
<data name="TextDocs" xml:space="preserve"> <data name="TextDocs" xml:space="preserve">
<value>下斜</value> <value>下斜</value>
</data> </data>
<data name="TiltDown" xml:space="preserve"> <data name="TiltDown" xml:space="preserve">
<value>斜</value> <value>斜</value>
</data> </data>
<data name="TiltLeft" xml:space="preserve"> <data name="TiltLeft" xml:space="preserve">
<value>斜</value> <value>斜</value>
</data> </data>
<data name="TiltRight" xml:space="preserve"> <data name="TiltRight" xml:space="preserve">
<value>斜</value> <value>斜</value>
</data> </data>
<data name="TiltUp" xml:space="preserve"> <data name="TiltUp" xml:space="preserve">
<value>触摸板移动已经关闭</value>
</data>
<data name="TouchpadMovementOff" xml:space="preserve">
<value>触摸板移动已经打开</value>
</data>
<data name="TouchpadMovementOn" xml:space="preserve">
<value>PS键+触摸板 以重新启用</value>
</data>
<data name="TouchpadOffTip" xml:space="preserve">
<value>触摸板双指左或右滑动</value>
</data>
<data name="TwoFingerSwipe" xml:space="preserve">
<value>在此输入新命名</value>
</data>
<data name="TypeNewName" xml:space="preserve">
<value>在此输入配置文件名字</value>
</data>
<data name="TypeProfileName" xml:space="preserve">
<value>上斜</value> <value>上斜</value>
</data> </data>
<data name="TouchpadMovementOff" xml:space="preserve">
<value>触摸板移动已经关闭</value>
</data>
<data name="TouchpadMovementOn" xml:space="preserve">
<value>触摸板移动已经打开</value>
</data>
<data name="TouchpadOffTip" xml:space="preserve">
<value>PS键+触摸板 以重新启用</value>
</data>
<data name="TwoFingerSwipe" xml:space="preserve">
<value>触摸板双指左或右滑动</value>
</data>
<data name="TypeNewName" xml:space="preserve">
<value>在此输入新命名</value>
</data>
<data name="TypeProfileName" xml:space="preserve">
<value>在此输入配置文件名字</value>
</data>
<data name="UpText" xml:space="preserve"> <data name="UpText" xml:space="preserve">
<value>程序已经是最新的</value> <value>上斜</value>
</data> </data>
<data name="UpToDate" xml:space="preserve"> <data name="UpToDate" xml:space="preserve">
<value>你也可以用手柄来改变操作</value> <value>程序已经是最新的</value>
</data> </data>
<data name="UseControllerForMapping" xml:space="preserve"> <data name="UseControllerForMapping" xml:space="preserve">
<value>使用排它模式</value> <value>你也可以用手柄来改变操作</value>
</data> </data>
<data name="UsingExclusive" xml:space="preserve"> <data name="UsingExclusive" xml:space="preserve">
<value>手柄*number*正在使用配置文件*profile name*</value> <value>使用排它模式</value>
</data> </data>
<data name="UsingProfile" xml:space="preserve"> <data name="UsingProfile" xml:space="preserve">
<value>使用共享模式</value> <value>手柄*number*正在使用配置文件*profile name*</value>
</data> </data>
<data name="UsingShared" xml:space="preserve"> <data name="UsingShared" xml:space="preserve">
<value>停止触摸板作为鼠标</value> <value>使用共享模式</value>
</data> </data>
<data name="UsingTPSwipes" xml:space="preserve"> <data name="UsingTPSwipes" xml:space="preserve">
<value>请输入一个有效的名字</value> <value>停止触摸板作为鼠标</value>
</data> </data>
<data name="ValidName" xml:space="preserve"> <data name="ValidName" xml:space="preserve">
<value>等待*number*毫秒</value> <value>请输入一个有效的名字</value>
</data> </data>
<data name="WaitMS" xml:space="preserve"> <data name="WaitMS" xml:space="preserve">
<value>将保持</value> <value>等待*number*毫秒</value>
</data> </data>
<data name="WillKeep" xml:space="preserve"> <data name="WillKeep" xml:space="preserve">
<value>将保持</value>
</data>
<data name="TestLText" xml:space="preserve">
<value>测试微震</value>
</data>
<data name="XinputPorts" xml:space="preserve">
<value>如果你在其他XBOX 360模拟程序中有冲突使用更高端口.例如SCP's工具</value> <value>如果你在其他XBOX 360模拟程序中有冲突使用更高端口.例如SCP's工具</value>
</data> </data>
</root> </root>