Commit 40a3b269 authored by keyongyu's avatar keyongyu

language

parent c5dda829
...@@ -35,7 +35,7 @@ protected override void Dispose(bool disposing) ...@@ -35,7 +35,7 @@ protected override void Dispose(bool disposing)
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.mainMenu = new System.Windows.Forms.MenuStrip();
this.menuitem_file = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_file = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_open = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_open = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_save = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_save = new System.Windows.Forms.ToolStripMenuItem();
...@@ -54,21 +54,21 @@ private void InitializeComponent() ...@@ -54,21 +54,21 @@ private void InitializeComponent()
this.fctb = new FastColoredTextBoxNS.FastColoredTextBoxEx(); this.fctb = new FastColoredTextBoxNS.FastColoredTextBoxEx();
this.documentMap1 = new FastColoredTextBoxNS.DocumentMap(); this.documentMap1 = new FastColoredTextBoxNS.DocumentMap();
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker(); this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
this.menuStrip1.SuspendLayout(); this.mainMenu.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.fctb)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.fctb)).BeginInit();
this.SuspendLayout(); this.SuspendLayout();
// //
// menuStrip1 // mainMenu
// //
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuitem_file, this.menuitem_file,
this.menuitem_setting, this.menuitem_setting,
this.menuitem_help}); this.menuitem_help});
this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.mainMenu.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1"; this.mainMenu.Name = "mainMenu";
this.menuStrip1.Size = new System.Drawing.Size(695, 25); this.mainMenu.Size = new System.Drawing.Size(695, 25);
this.menuStrip1.TabIndex = 0; this.mainMenu.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1"; this.mainMenu.Text = "mainMenu";
// //
// menuitem_file // menuitem_file
// //
...@@ -208,7 +208,7 @@ private void InitializeComponent() ...@@ -208,7 +208,7 @@ private void InitializeComponent()
'\''}; '\''};
this.fctb.AutoIndent = false; this.fctb.AutoIndent = false;
this.fctb.AutoIndentChars = false; this.fctb.AutoIndentChars = false;
this.fctb.AutoIndentCharsPatterns = "\n^\\s*[\\w\\.]+(\\s\\w+)?\\s*(?<range>=)\\s*(?<range>.+)\n"; this.fctb.AutoIndentCharsPatterns = "^\\s*[\\w\\.]+(\\s\\w+)?\\s*(?<range>=)\\s*(?<range>.+)";
this.fctb.AutoIndentExistingLines = false; this.fctb.AutoIndentExistingLines = false;
this.fctb.AutoScrollMinSize = new System.Drawing.Size(0, 22); this.fctb.AutoScrollMinSize = new System.Drawing.Size(0, 22);
this.fctb.BackBrush = null; this.fctb.BackBrush = null;
...@@ -269,17 +269,17 @@ private void InitializeComponent() ...@@ -269,17 +269,17 @@ private void InitializeComponent()
this.Controls.Add(this.fctb); this.Controls.Add(this.fctb);
this.Controls.Add(this.tb_input); this.Controls.Add(this.tb_input);
this.Controls.Add(this.documentMap1); this.Controls.Add(this.documentMap1);
this.Controls.Add(this.menuStrip1); this.Controls.Add(this.mainMenu);
this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.MainMenuStrip = this.menuStrip1; this.MainMenuStrip = this.mainMenu;
this.Name = "CodeEditForm"; this.Name = "CodeEditForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "CodeEditor"; this.Text = "CodeEditor";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CodeEditFormFormClosing); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CodeEditFormFormClosing);
this.Load += new System.EventHandler(this.CodeEditFormLoad); this.Load += new System.EventHandler(this.CodeEditFormLoad);
this.Enter += new System.EventHandler(this.CodeEditFormEnter); this.Enter += new System.EventHandler(this.CodeEditFormEnter);
this.menuStrip1.ResumeLayout(false); this.mainMenu.ResumeLayout(false);
this.menuStrip1.PerformLayout(); this.mainMenu.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.fctb)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.fctb)).EndInit();
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout(); this.PerformLayout();
...@@ -302,7 +302,7 @@ private void InitializeComponent() ...@@ -302,7 +302,7 @@ private void InitializeComponent()
private System.Windows.Forms.ToolStripMenuItem menuitem_save; private System.Windows.Forms.ToolStripMenuItem menuitem_save;
private System.Windows.Forms.ToolStripMenuItem menuitem_open; private System.Windows.Forms.ToolStripMenuItem menuitem_open;
private System.Windows.Forms.ToolStripMenuItem menuitem_file; private System.Windows.Forms.ToolStripMenuItem menuitem_file;
private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.MenuStrip mainMenu;
private System.ComponentModel.BackgroundWorker backgroundWorker1; private System.ComponentModel.BackgroundWorker backgroundWorker1;
......
...@@ -142,7 +142,7 @@ void HideMenu() ...@@ -142,7 +142,7 @@ void HideMenu()
{ {
if(this.MdiParent ==null) if(this.MdiParent ==null)
return; return;
menuStrip1.Visible=false; mainMenu.Visible=false;
menuitem_file.Visible=false; menuitem_file.Visible=false;
menuitem_file.Enabled=false; menuitem_file.Enabled=false;
} }
......
...@@ -117,7 +117,7 @@ ...@@ -117,7 +117,7 @@
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<metadata name="menuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="mainMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value> <value>17, 17</value>
</metadata> </metadata>
<metadata name="backgroundWorker1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="backgroundWorker1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
......
This diff is collapsed.
...@@ -151,7 +151,7 @@ void HideMenu() ...@@ -151,7 +151,7 @@ void HideMenu()
{ {
if (this.MdiParent == null) if (this.MdiParent == null)
return; return;
menuStrip1.Visible = false; mainMenu.Visible = false;
menuitem_file.Visible = false; menuitem_file.Visible = false;
menuitem_file.Enabled = false; menuitem_file.Enabled = false;
//this.SuspendLayout(); //this.SuspendLayout();
......
...@@ -117,7 +117,7 @@ ...@@ -117,7 +117,7 @@
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<metadata name="menuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="mainMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>124, 17</value> <value>124, 17</value>
</metadata> </metadata>
<metadata name="bgWorker1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="bgWorker1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
......
...@@ -19,7 +19,7 @@ namespace DataEditorX.Language ...@@ -19,7 +19,7 @@ namespace DataEditorX.Language
/// </summary> /// </summary>
public static class LANG public static class LANG
{ {
static SortedList<string, string> mWordslist = new SortedList<string, string>(); static Dictionary<string, string> mWordslist = new Dictionary<string, string>();
static SortedList<LMSG, string> msglist = new SortedList<LMSG, string>(); static SortedList<LMSG, string> msglist = new SortedList<LMSG, string>();
static string SEP_CONTROL = "."; static string SEP_CONTROL = ".";
static string SEP_LINE = " "; static string SEP_LINE = " ";
...@@ -84,7 +84,7 @@ static void SetControlLabel(Control c, string pName, string formName) ...@@ -84,7 +84,7 @@ static void SetControlLabel(Control c, string pName, string formName)
ToolStrip ms = (ToolStrip)c; ToolStrip ms = (ToolStrip)c;
foreach (ToolStripItem tsi in ms.Items) foreach (ToolStripItem tsi in ms.Items)
{ {
SetMenuItem(formName, tsi); SetMenuItem(formName + SEP_CONTROL + ms.Name, tsi);
} }
} }
else else
...@@ -105,33 +105,32 @@ static void SetControlLabel(Control c, string pName, string formName) ...@@ -105,33 +105,32 @@ static void SetControlLabel(Control c, string pName, string formName)
{ {
foreach (ToolStripItem ts in conms.Items) foreach (ToolStripItem ts in conms.Items)
{ {
SetMenuItem(formName, ts); SetMenuItem(formName + SEP_CONTROL + conms.Name, ts);
} }
} }
} }
static void SetMenuItem(string pName, ToolStripItem tsi) static void SetMenuItem(string pName, ToolStripItem tsi)
{ {
string tName = pName + SEP_CONTROL + tsi.Name;
string title; string title;
if (tsi is ToolStripMenuItem) if (tsi is ToolStripMenuItem)
{ {
ToolStripMenuItem tsmi = (ToolStripMenuItem)tsi; ToolStripMenuItem tsmi = (ToolStripMenuItem)tsi;
if (GetLabel(tName, out title)) if (GetLabel(pName +SEP_CONTROL + tsmi.Name, out title))
tsmi.Text = title; tsmi.Text = title;
if (tsmi.HasDropDownItems) if (tsmi.HasDropDownItems)
{ {
foreach (ToolStripItem subtsi in tsmi.DropDownItems) foreach (ToolStripItem subtsi in tsmi.DropDownItems)
{ {
SetMenuItem(tName, subtsi); SetMenuItem(pName, subtsi);
} }
} }
} }
else if (tsi is ToolStripLabel) else if (tsi is ToolStripLabel)
{ {
ToolStripLabel tlbl = (ToolStripLabel)tsi; ToolStripLabel tlbl = (ToolStripLabel)tsi;
if (GetLabel(tName, out title)) if (GetLabel(pName + SEP_CONTROL + tlbl.Name, out title))
tlbl.Text = title; tlbl.Text = title;
} }
} }
...@@ -179,7 +178,7 @@ static void AddLabel(string key, string title) ...@@ -179,7 +178,7 @@ static void AddLabel(string key, string title)
ToolStrip ms = (ToolStrip)c; ToolStrip ms = (ToolStrip)c;
foreach (ToolStripItem tsi in ms.Items) foreach (ToolStripItem tsi in ms.Items)
{ {
GetMenuItem(formName, tsi); GetMenuItem(formName + SEP_CONTROL + ms.Name, tsi);
} }
} }
else else
...@@ -199,32 +198,31 @@ static void AddLabel(string key, string title) ...@@ -199,32 +198,31 @@ static void AddLabel(string key, string title)
{ {
foreach (ToolStripItem ts in conms.Items) foreach (ToolStripItem ts in conms.Items)
{ {
GetMenuItem(formName, ts); GetMenuItem(formName + SEP_CONTROL + conms.Text, ts);
} }
} }
} }
static void GetMenuItem(string pName, ToolStripItem tsi) static void GetMenuItem(string pName, ToolStripItem tsi)
{ {
string tName = pName + SEP_CONTROL + tsi.Name;
if (string.IsNullOrEmpty(tsi.Name)) if (string.IsNullOrEmpty(tsi.Name))
return; return;
if (tsi is ToolStripMenuItem) if (tsi is ToolStripMenuItem)
{ {
ToolStripMenuItem tsmi = (ToolStripMenuItem)tsi; ToolStripMenuItem tsmi = (ToolStripMenuItem)tsi;
AddLabel(tName, tsmi.Text); AddLabel(pName + SEP_CONTROL + tsmi.Name, tsmi.Text);
if (tsmi.HasDropDownItems) if (tsmi.HasDropDownItems)
{ {
foreach (ToolStripItem subtsi in tsmi.DropDownItems) foreach (ToolStripItem subtsi in tsmi.DropDownItems)
{ {
GetMenuItem(tName, subtsi); GetMenuItem(pName, subtsi);
} }
} }
} }
else if (tsi is ToolStripLabel) else if (tsi is ToolStripLabel)
{ {
ToolStripLabel tlbl = (ToolStripLabel)tsi; ToolStripLabel tlbl = (ToolStripLabel)tsi;
AddLabel(tName, tlbl.Text); AddLabel(pName + SEP_CONTROL + tlbl.Name, tlbl.Text);
} }
} }
......
...@@ -52,7 +52,7 @@ private void InitializeComponent() ...@@ -52,7 +52,7 @@ private void InitializeComponent()
WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.dockPanel1 = new WeifenLuo.WinFormsUI.Docking.DockPanel(); this.dockPanel1 = new WeifenLuo.WinFormsUI.Docking.DockPanel();
this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.mainMenu = new System.Windows.Forms.MenuStrip();
this.menuitem_file = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_file = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_open = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_open = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_new = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_new = new System.Windows.Forms.ToolStripMenuItem();
...@@ -78,7 +78,7 @@ private void InitializeComponent() ...@@ -78,7 +78,7 @@ private void InitializeComponent()
this.menuitem_closeother = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_closeother = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_closeall = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_closeall = new System.Windows.Forms.ToolStripMenuItem();
this.bgWorker1 = new System.ComponentModel.BackgroundWorker(); this.bgWorker1 = new System.ComponentModel.BackgroundWorker();
this.menuStrip1.SuspendLayout(); this.mainMenu.SuspendLayout();
this.SuspendLayout(); this.SuspendLayout();
// //
// dockPanel1 // dockPanel1
...@@ -136,17 +136,17 @@ private void InitializeComponent() ...@@ -136,17 +136,17 @@ private void InitializeComponent()
this.dockPanel1.Skin = dockPanelSkin1; this.dockPanel1.Skin = dockPanelSkin1;
this.dockPanel1.TabIndex = 0; this.dockPanel1.TabIndex = 0;
// //
// menuStrip1 // mainMenu
// //
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuitem_file, this.menuitem_file,
this.menuitem_windows}); this.menuitem_windows});
this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.mainMenu.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.MdiWindowListItem = this.menuitem_windows; this.mainMenu.MdiWindowListItem = this.menuitem_windows;
this.menuStrip1.Name = "menuStrip1"; this.mainMenu.Name = "mainMenu";
this.menuStrip1.Size = new System.Drawing.Size(868, 25); this.mainMenu.Size = new System.Drawing.Size(868, 25);
this.menuStrip1.TabIndex = 3; this.mainMenu.TabIndex = 3;
this.menuStrip1.Text = "menuStrip1"; this.mainMenu.Text = "mainMenu";
// //
// menuitem_file // menuitem_file
// //
...@@ -345,17 +345,17 @@ private void InitializeComponent() ...@@ -345,17 +345,17 @@ private void InitializeComponent()
this.BackColor = System.Drawing.SystemColors.Control; this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(868, 597); this.ClientSize = new System.Drawing.Size(868, 597);
this.Controls.Add(this.dockPanel1); this.Controls.Add(this.dockPanel1);
this.Controls.Add(this.menuStrip1); this.Controls.Add(this.mainMenu);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.IsMdiContainer = true; this.IsMdiContainer = true;
this.MainMenuStrip = this.menuStrip1; this.MainMenuStrip = this.mainMenu;
this.Name = "MainForm"; this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "MainForm"; this.Text = "MainForm";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFormFormClosing); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFormFormClosing);
this.Load += new System.EventHandler(this.MainFormLoad); this.Load += new System.EventHandler(this.MainFormLoad);
this.menuStrip1.ResumeLayout(false); this.mainMenu.ResumeLayout(false);
this.menuStrip1.PerformLayout(); this.mainMenu.PerformLayout();
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout(); this.PerformLayout();
...@@ -383,7 +383,7 @@ private void InitializeComponent() ...@@ -383,7 +383,7 @@ private void InitializeComponent()
private System.Windows.Forms.ToolStripMenuItem menuitem_dataeditor; private System.Windows.Forms.ToolStripMenuItem menuitem_dataeditor;
private System.Windows.Forms.ToolStripMenuItem menuitem_windows; private System.Windows.Forms.ToolStripMenuItem menuitem_windows;
private System.Windows.Forms.ToolStripMenuItem menuitem_file; private System.Windows.Forms.ToolStripMenuItem menuitem_file;
private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.MenuStrip mainMenu;
private WeifenLuo.WinFormsUI.Docking.DockPanel dockPanel1; private WeifenLuo.WinFormsUI.Docking.DockPanel dockPanel1;
private System.Windows.Forms.ToolStripMenuItem menuitem_shistory; private System.Windows.Forms.ToolStripMenuItem menuitem_shistory;
private System.ComponentModel.BackgroundWorker bgWorker1; private System.ComponentModel.BackgroundWorker bgWorker1;
......
...@@ -117,7 +117,7 @@ ...@@ -117,7 +117,7 @@
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<metadata name="menuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="mainMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>135, 17</value> <value>135, 17</value>
</metadata> </metadata>
<metadata name="bgWorker1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="bgWorker1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
......
CodeEditForm 脚本编辑 CodeEditForm 脚本编辑
CodeEditForm.CodeEditForm 脚本编辑器
CodeEditForm.documentMap1 预览图
CodeEditForm.fctb CodeEditForm.fctb
CodeEditForm.menuitem_about 关于
CodeEditForm.menuitem_file 文件(&F)
CodeEditForm.menuitem_file.menuitem_open 打开
CodeEditForm.menuitem_file.menuitem_quit 退出
CodeEditForm.menuitem_file.menuitem_save 保存
CodeEditForm.menuitem_file.menuitem_saveas 另存为
CodeEditForm.menuitem_find 查找
CodeEditForm.menuitem_help 帮助(&H)
CodeEditForm.menuitem_help.menuitem_about 关于(&A)
CodeEditForm.menuitem_open 打开
CodeEditForm.menuitem_quit 退出
CodeEditForm.menuitem_replace 替换
CodeEditForm.menuitem_save 保存
CodeEditForm.menuitem_saveas 另存为
CodeEditForm.menuitem_setcard 设置卡片库
CodeEditForm.menuitem_setting 设置(&S)
CodeEditForm.menuitem_setting.menuitem_find 查找
CodeEditForm.menuitem_setting.menuitem_replace 替换
CodeEditForm.menuitem_setting.menuitem_setcard 设置卡片库
CodeEditForm.menuitem_setting.menuitem_showinput 显示输入框
CodeEditForm.menuitem_setting.menuitem_showmap 显示预览图
CodeEditForm.menuitem_showinput 显示文本框
CodeEditForm.menuitem_showmap 显示缩略图
CodeEditForm.tb_input CodeEditForm.tb_input
CodeEditForm.documentMap1 documentMap1
CodeEditForm.mainMenu.menuitem_file File(&F)
CodeEditForm.mainMenu.menuitem_open Open
CodeEditForm.mainMenu.menuitem_save Save
CodeEditForm.mainMenu.menuitem_saveas Save As
CodeEditForm.mainMenu.menuitem_quit Quit
CodeEditForm.mainMenu.menuitem_setting Tools(&S)
CodeEditForm.mainMenu.menuitem_showmap Show Map
CodeEditForm.mainMenu.menuitem_showinput Show InputBox
CodeEditForm.mainMenu.menuitem_find Find
CodeEditForm.mainMenu.menuitem_replace Replace
CodeEditForm.mainMenu.menuitem_setcard Set Cards
CodeEditForm.mainMenu.menuitem_help Help(&H)
CodeEditForm.mainMenu.menuitem_about About
#
DataEditForm 数据编辑 DataEditForm 数据编辑
DataEditForm.btn_add 添加(&A) DataEditForm.tb_setcode4 0
DataEditForm.btn_del 删除(&D) DataEditForm.tb_setcode3 0
DataEditForm.btn_img 导入卡图(&I) DataEditForm.tb_setcode2 0
DataEditForm.btn_lua 脚本(&L) DataEditForm.tb_setcode1 0
DataEditForm.btn_mod 修改(&M) DataEditForm.btn_img &Image
DataEditForm.btn_PageDown 下一页 DataEditForm.lb_types Card Types
DataEditForm.btn_PageUp 上一页 DataEditForm.lb_tiptexts Tips Texts
DataEditForm.btn_reset 重置(&R) DataEditForm.lb_categorys Card Categorys
DataEditForm.btn_serach 搜索(&S) DataEditForm.tb_edittext
DataEditForm.btn_undo 撤销(&U) DataEditForm.tb_pagenum 1
DataEditForm.lb_atkdef ATK/DEF DataEditForm.tb_def 0
DataEditForm.lb_cardalias 同名卡 DataEditForm.tb_pright 0
DataEditForm.lb_cardcode 卡片密码 DataEditForm.tb_page 1
DataEditForm.lb_categorys 效果种类 DataEditForm.tb_cardalias 0
DataEditForm.lb_pleft_right 灵摆刻度 DataEditForm.tb_cardcode 0
DataEditForm.lb_scripttext DataEditForm.tb_atk 0
DataEditForm.lb_tiptexts 提示文字
DataEditForm.lb_types 卡片种类
DataEditForm.lb2 /
DataEditForm.lb4 / DataEditForm.lb4 /
DataEditForm.lb_cardcode Card Code
DataEditForm.lb_cardalias Alias Card
DataEditForm.tb_pleft 0
DataEditForm.lb5 / DataEditForm.lb5 /
DataEditForm.lv_cardlist.0 密码 DataEditForm.lb_atkdef ATK/DEF
DataEditForm.lv_cardlist.1 卡片名称 DataEditForm.lb2 /
DataEditForm.lv_cardlist0 密码 DataEditForm.lb_pleft_right PScale
DataEditForm.lv_cardlist1 卡片名称 DataEditForm.lb_scripttext
DataEditForm.menuitem_file 文件(&F) DataEditForm.btn_reset &Reset
DataEditForm.menuitem_help 帮助(&H) DataEditForm.btn_lua &Lua Script
DataEditForm.menuitem_new 新建(&N) DataEditForm.btn_serach &Search
DataEditForm.menuitem_open 打开(&O) DataEditForm.btn_del &Delete
DataEditForm.menuitem_openLastDataBase 最后打开的数据库 DataEditForm.btn_undo &Undo
DataEditForm.menuitem_quit 退出(&Q) DataEditForm.btn_mod &Modify
DataEditForm.menu_tools 功能(&T) DataEditForm.btn_add &Add
DataEditForm.menu_tools.menuitem_cancelTask 取消当前任务 DataEditForm.btn_PageDown > >
DataEditForm.menu_tools.menuitem_compdb 压缩数据库 DataEditForm.btn_PageUp < <
DataEditForm.menu_tools.menuitem_convertimage 批量导入卡图 DataEditForm.tb_cardtext
DataEditForm.menu_tools.menuitem_cutimages 裁剪卡图 DataEditForm.tb_cardname
DataEditForm.menu_tools.menuitem_exportdata 导出所有卡片数据为zip DataEditForm.lv_cardlist.0 Card Code
DataEditForm.menu_tools.menuitem_importmseimg 设置为MSE图片库 DataEditForm.lv_cardlist.1 Card Name
DataEditForm.menu_tools.menuitem_readimages 从图片读取卡片(&I) DataEditForm.mainMenu.menuitem_file File(&F)
DataEditForm.menu_tools.menuitem_readydk 从卡组读取卡片(&Y) DataEditForm.mainMenu.menuitem_open Open Database(&O)
DataEditForm.menu_tools.menuitem_saveasmse 保存当前所有卡片到MSE存档 DataEditForm.mainMenu.menuitem_new New Database(&N)
DataEditForm.menu_tools.menuitem_saveasmse_select 保存选中卡片到MSE存档 DataEditForm.mainMenu.menuitem_copyselectto Select Copy To...
DataEditForm.menuitem_help.menuitem_about 关于 DataEditForm.mainMenu.menuitem_copyto All Now Copy To...
DataEditForm.menuitem_help.menuitem_checkupdate 检查更新 DataEditForm.mainMenu.menuitem_openLastDataBase Open Last DataBase
DataEditForm.menuitem_help.menuitem_github 软件源码 DataEditForm.mainMenu.menuitem_quit Quit
MainForm.menuitem_close 关闭当前 DataEditForm.mainMenu.menu_tools Tools(&T)
MainForm.menuitem_closeall 关闭所有 DataEditForm.mainMenu.menuitem_readydk Cards Form ydk file(&Y)
MainForm.menuitem_closeother 关闭其他 DataEditForm.mainMenu.menuitem_readimages Cards From Images(&I)
MainForm.menuitem_codeeditor CodeEditor DataEditForm.mainMenu.menuitem_compdb Compression DataBase
MainForm.menuitem_comp1 对比-卡片数据 1 DataEditForm.mainMenu.menuitem_exportdata Export Data
MainForm.menuitem_comp2 对比-卡片数据 2 DataEditForm.mainMenu.menuitem_saveasmse_select Select Save As MSE
MainForm.menuitem_copyall 复制当前结果的所有卡片 DataEditForm.mainMenu.menuitem_saveasmse All Now Save As MSE
MainForm.menuitem_copyselect 复制所选卡片 DataEditForm.mainMenu.menuitem_cutimages Cut Images
MainForm.menuitem_dataeditor DataEditor DataEditForm.mainMenu.menuitem_convertimage Import Images
MainForm.menuitem_file 文件(&F) DataEditForm.mainMenu.menuitem_importmseimg Drop Image to MSE
MainForm.menuitem_file.menuitem_comp1 设为对比的数据库1 DataEditForm.mainMenu.menuitem_cancelTask Cancel Task
MainForm.menuitem_file.menuitem_comp2 设为对比的数据库2 DataEditForm.mainMenu.menuitem_help Help(&H)
MainForm.menuitem_file.menuitem_copyall 复制所有结果卡片 DataEditForm.mainMenu.menuitem_about About
MainForm.menuitem_file.menuitem_copyselect 复制选中卡片 DataEditForm.mainMenu.menuitem_checkupdate Check Update
MainForm.menuitem_file.menuitem_copyselectto 复制选中卡片到... DataEditForm.mainMenu.menuitem_github Source Code
MainForm.menuitem_file.menuitem_copyto 复制所有结果卡片到... #
MainForm.menuitem_file.menuitem_findluafunc 查找函数 MainForm DataEditorX
MainForm.menuitem_file.menuitem_history 历史(&H) MainForm.dockPanel1
MainForm.menuitem_file.menuitem_new 新建 MainForm.mainMenu.menuitem_file File(&F)
MainForm.menuitem_file.menuitem_open 打开 MainForm.mainMenu.menuitem_open Open
MainForm.menuitem_file.menuitem_openLastDataBase 打开最后数据卡 MainForm.mainMenu.menuitem_new New
MainForm.menuitem_file.menuitem_pastecards 粘贴卡片 MainForm.mainMenu.menuitem_save Save
MainForm.menuitem_file.menuitem_quit 退出 MainForm.mainMenu.menuitem_findluafunc Find LuaFunctons
MainForm.menuitem_file.menuitem_save 保存 MainForm.mainMenu.menuitem_copyselect Copy Select Cards
MainForm.menuitem_file.menuitem_shistory 脚本历史 MainForm.mainMenu.menuitem_copyall Copy All Cards
MainForm.menuitem_windows 窗口(&W) MainForm.mainMenu.menuitem_pastecards Paste Cards
MainForm.menuitem_windows.menuitem_close 关闭当前 MainForm.mainMenu.menuitem_comp1 Compare DB 1
MainForm.menuitem_windows.menuitem_closeall 关闭所有 MainForm.mainMenu.menuitem_comp2 Compare DB 2
MainForm.menuitem_windows.menuitem_closeother 关闭其他 MainForm.mainMenu.menuitem_history History(&H)
MainForm.menuitem_windows.menuitem_codeeditor 代码编辑 MainForm.mainMenu.menuitem_shistory Script History
MainForm.menuitem_windows.menuitem_dataeditor 数据编辑 MainForm.mainMenu.menuitem_quit Quit
MainForm.mainMenu.menuitem_windows Windows(&W)
MainForm.mainMenu.menuitem_dataeditor DataEditor
MainForm.mainMenu.menuitem_codeeditor CodeEditor
MainForm.mainMenu.menuitem_close Close
MainForm.mainMenu.menuitem_closeother Close Other
MainForm.mainMenu.menuitem_closeall Close All
\ No newline at end of file
No preview for this file type
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment