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">
......
...@@ -35,941 +35,942 @@ protected override void Dispose(bool disposing) ...@@ -35,941 +35,942 @@ 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_new = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_new = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.menuitem_copyselectto = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_copyselectto = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_copyto = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_copyto = new System.Windows.Forms.ToolStripMenuItem();
this.tsep4 = new System.Windows.Forms.ToolStripSeparator(); this.tsep4 = new System.Windows.Forms.ToolStripSeparator();
this.menuitem_openLastDataBase = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_openLastDataBase = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.menuitem_quit = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_quit = new System.Windows.Forms.ToolStripMenuItem();
this.menu_tools = new System.Windows.Forms.ToolStripMenuItem(); this.menu_tools = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_readydk = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_readydk = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_readimages = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_readimages = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_compdb = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_compdb = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_exportdata = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_exportdata = new System.Windows.Forms.ToolStripMenuItem();
this.tsep5 = new System.Windows.Forms.ToolStripSeparator(); this.tsep5 = new System.Windows.Forms.ToolStripSeparator();
this.menuitem_saveasmse_select = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_saveasmse_select = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_saveasmse = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_saveasmse = new System.Windows.Forms.ToolStripMenuItem();
this.tsep3 = new System.Windows.Forms.ToolStripSeparator(); this.tsep3 = new System.Windows.Forms.ToolStripSeparator();
this.menuitem_cutimages = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_cutimages = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_convertimage = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_convertimage = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_importmseimg = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_importmseimg = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.menuitem_cancelTask = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_cancelTask = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_help = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_help = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_about = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_about = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_checkupdate = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_checkupdate = new System.Windows.Forms.ToolStripMenuItem();
this.menuitem_github = new System.Windows.Forms.ToolStripMenuItem(); this.menuitem_github = new System.Windows.Forms.ToolStripMenuItem();
this.lv_cardlist = new System.Windows.Forms.DListView(); this.lv_cardlist = new System.Windows.Forms.DListView();
this.ch_cardcode = new System.Windows.Forms.ColumnHeader(); this.ch_cardcode = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.ch_cardname = new System.Windows.Forms.ColumnHeader(); this.ch_cardname = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.cb_cardattribute = new System.Windows.Forms.ComboBox(); this.cb_cardattribute = new System.Windows.Forms.ComboBox();
this.tb_cardname = new System.Windows.Forms.TextBox(); this.tb_cardname = new System.Windows.Forms.TextBox();
this.cb_cardrule = new System.Windows.Forms.ComboBox(); this.cb_cardrule = new System.Windows.Forms.ComboBox();
this.cb_cardlevel = new System.Windows.Forms.ComboBox(); this.cb_cardlevel = new System.Windows.Forms.ComboBox();
this.cb_cardrace = new System.Windows.Forms.ComboBox(); this.cb_cardrace = new System.Windows.Forms.ComboBox();
this.cb_setname2 = new System.Windows.Forms.ComboBox(); this.cb_setname2 = new System.Windows.Forms.ComboBox();
this.cb_setname1 = new System.Windows.Forms.ComboBox(); this.cb_setname1 = new System.Windows.Forms.ComboBox();
this.cb_setname4 = new System.Windows.Forms.ComboBox(); this.cb_setname4 = new System.Windows.Forms.ComboBox();
this.cb_setname3 = new System.Windows.Forms.ComboBox(); this.cb_setname3 = new System.Windows.Forms.ComboBox();
this.tb_cardtext = new System.Windows.Forms.TextBox(); this.tb_cardtext = new System.Windows.Forms.TextBox();
this.lb_scripttext = new System.Windows.Forms.DListBox(); this.lb_scripttext = new System.Windows.Forms.DListBox();
this.tb_edittext = new System.Windows.Forms.TextBox(); this.tb_edittext = new System.Windows.Forms.TextBox();
this.lb_pleft_right = new System.Windows.Forms.Label(); this.lb_pleft_right = new System.Windows.Forms.Label();
this.tb_pleft = new System.Windows.Forms.TextBox(); this.tb_pleft = new System.Windows.Forms.TextBox();
this.tb_pright = new System.Windows.Forms.TextBox(); this.tb_pright = new System.Windows.Forms.TextBox();
this.lb_atkdef = new System.Windows.Forms.Label(); this.lb_atkdef = new System.Windows.Forms.Label();
this.lb4 = new System.Windows.Forms.Label(); this.lb4 = new System.Windows.Forms.Label();
this.tb_page = new System.Windows.Forms.TextBox(); this.tb_page = new System.Windows.Forms.TextBox();
this.tb_pagenum = new System.Windows.Forms.TextBox(); this.tb_pagenum = new System.Windows.Forms.TextBox();
this.btn_PageUp = new System.Windows.Forms.Button(); this.btn_PageUp = new System.Windows.Forms.Button();
this.btn_PageDown = new System.Windows.Forms.Button(); this.btn_PageDown = new System.Windows.Forms.Button();
this.btn_add = new System.Windows.Forms.Button(); this.btn_add = new System.Windows.Forms.Button();
this.lb5 = new System.Windows.Forms.Label(); this.lb5 = new System.Windows.Forms.Label();
this.tb_atk = new System.Windows.Forms.TextBox(); this.tb_atk = new System.Windows.Forms.TextBox();
this.tb_def = new System.Windows.Forms.TextBox(); this.tb_def = new System.Windows.Forms.TextBox();
this.tb_cardcode = new System.Windows.Forms.TextBox(); this.tb_cardcode = new System.Windows.Forms.TextBox();
this.lb_cardalias = new System.Windows.Forms.Label(); this.lb_cardalias = new System.Windows.Forms.Label();
this.tb_cardalias = new System.Windows.Forms.TextBox(); this.tb_cardalias = new System.Windows.Forms.TextBox();
this.btn_mod = new System.Windows.Forms.Button(); this.btn_mod = new System.Windows.Forms.Button();
this.btn_del = new System.Windows.Forms.Button(); this.btn_del = new System.Windows.Forms.Button();
this.btn_lua = new System.Windows.Forms.Button(); this.btn_lua = new System.Windows.Forms.Button();
this.btn_reset = new System.Windows.Forms.Button(); this.btn_reset = new System.Windows.Forms.Button();
this.btn_serach = new System.Windows.Forms.Button(); this.btn_serach = new System.Windows.Forms.Button();
this.lb_categorys = new System.Windows.Forms.Label(); this.lb_categorys = new System.Windows.Forms.Label();
this.lb2 = new System.Windows.Forms.Label(); this.lb2 = new System.Windows.Forms.Label();
this.pl_cardtype = new System.Windows.Forms.DFlowLayoutPanel(); this.pl_cardtype = new System.Windows.Forms.DFlowLayoutPanel();
this.pl_category = new System.Windows.Forms.DFlowLayoutPanel(); this.pl_category = new System.Windows.Forms.DFlowLayoutPanel();
this.pl_image = new System.Windows.Forms.Panel(); this.pl_image = new System.Windows.Forms.Panel();
this.lb_types = new System.Windows.Forms.Label(); this.lb_types = new System.Windows.Forms.Label();
this.lb_tiptexts = new System.Windows.Forms.Label(); this.lb_tiptexts = new System.Windows.Forms.Label();
this.bgWorker1 = new System.ComponentModel.BackgroundWorker(); this.bgWorker1 = new System.ComponentModel.BackgroundWorker();
this.btn_undo = new System.Windows.Forms.Button(); this.btn_undo = new System.Windows.Forms.Button();
this.btn_img = new System.Windows.Forms.Button(); this.btn_img = new System.Windows.Forms.Button();
this.tb_setcode1 = new System.Windows.Forms.TextBox(); this.tb_setcode1 = new System.Windows.Forms.TextBox();
this.tb_setcode2 = new System.Windows.Forms.TextBox(); this.tb_setcode2 = new System.Windows.Forms.TextBox();
this.tb_setcode3 = new System.Windows.Forms.TextBox(); this.tb_setcode3 = new System.Windows.Forms.TextBox();
this.tb_setcode4 = new System.Windows.Forms.TextBox(); this.tb_setcode4 = new System.Windows.Forms.TextBox();
this.lb_cardcode = new System.Windows.Forms.Label(); this.lb_cardcode = new System.Windows.Forms.Label();
this.menuStrip1.SuspendLayout(); this.mainMenu.SuspendLayout();
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.menu_tools, this.menu_tools,
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(860, 25); this.mainMenu.Size = new System.Drawing.Size(860, 25);
this.menuStrip1.TabIndex = 0; this.mainMenu.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1"; this.mainMenu.Text = "mainMenu";
// //
// menuitem_file // menuitem_file
// //
this.menuitem_file.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuitem_file.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuitem_open, this.menuitem_open,
this.menuitem_new, this.menuitem_new,
this.toolStripSeparator3, this.toolStripSeparator3,
this.menuitem_copyselectto, this.menuitem_copyselectto,
this.menuitem_copyto, this.menuitem_copyto,
this.tsep4, this.tsep4,
this.menuitem_openLastDataBase, this.menuitem_openLastDataBase,
this.toolStripSeparator2, this.toolStripSeparator2,
this.menuitem_quit}); this.menuitem_quit});
this.menuitem_file.Name = "menuitem_file"; this.menuitem_file.Name = "menuitem_file";
this.menuitem_file.Size = new System.Drawing.Size(53, 21); this.menuitem_file.Size = new System.Drawing.Size(53, 21);
this.menuitem_file.Text = "File(&F)"; this.menuitem_file.Text = "File(&F)";
// //
// menuitem_open // menuitem_open
// //
this.menuitem_open.Name = "menuitem_open"; this.menuitem_open.Name = "menuitem_open";
this.menuitem_open.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); this.menuitem_open.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.menuitem_open.Size = new System.Drawing.Size(232, 22); this.menuitem_open.Size = new System.Drawing.Size(232, 22);
this.menuitem_open.Text = "Open Database(&O)"; this.menuitem_open.Text = "Open Database(&O)";
// //
// menuitem_new // menuitem_new
// //
this.menuitem_new.Name = "menuitem_new"; this.menuitem_new.Name = "menuitem_new";
this.menuitem_new.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); this.menuitem_new.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.menuitem_new.Size = new System.Drawing.Size(232, 22); this.menuitem_new.Size = new System.Drawing.Size(232, 22);
this.menuitem_new.Text = "New Database(&N)"; this.menuitem_new.Text = "New Database(&N)";
// //
// toolStripSeparator3 // toolStripSeparator3
// //
this.toolStripSeparator3.Name = "toolStripSeparator3"; this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(229, 6); this.toolStripSeparator3.Size = new System.Drawing.Size(229, 6);
// //
// menuitem_copyselectto // menuitem_copyselectto
// //
this.menuitem_copyselectto.Name = "menuitem_copyselectto"; this.menuitem_copyselectto.Name = "menuitem_copyselectto";
this.menuitem_copyselectto.Size = new System.Drawing.Size(232, 22); this.menuitem_copyselectto.Size = new System.Drawing.Size(232, 22);
this.menuitem_copyselectto.Text = "Select Copy To..."; this.menuitem_copyselectto.Text = "Select Copy To...";
// //
// menuitem_copyto // menuitem_copyto
// //
this.menuitem_copyto.Name = "menuitem_copyto"; this.menuitem_copyto.Name = "menuitem_copyto";
this.menuitem_copyto.Size = new System.Drawing.Size(232, 22); this.menuitem_copyto.Size = new System.Drawing.Size(232, 22);
this.menuitem_copyto.Text = "All Now Copy To..."; this.menuitem_copyto.Text = "All Now Copy To...";
// //
// tsep4 // tsep4
// //
this.tsep4.Name = "tsep4"; this.tsep4.Name = "tsep4";
this.tsep4.Size = new System.Drawing.Size(229, 6); this.tsep4.Size = new System.Drawing.Size(229, 6);
// //
// menuitem_openLastDataBase // menuitem_openLastDataBase
// //
this.menuitem_openLastDataBase.Name = "menuitem_openLastDataBase"; this.menuitem_openLastDataBase.Name = "menuitem_openLastDataBase";
this.menuitem_openLastDataBase.Size = new System.Drawing.Size(232, 22); this.menuitem_openLastDataBase.Size = new System.Drawing.Size(232, 22);
this.menuitem_openLastDataBase.Text = "Open Last DataBase"; this.menuitem_openLastDataBase.Text = "Open Last DataBase";
// //
// toolStripSeparator2 // toolStripSeparator2
// //
this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(229, 6); this.toolStripSeparator2.Size = new System.Drawing.Size(229, 6);
// //
// menuitem_quit // menuitem_quit
// //
this.menuitem_quit.Name = "menuitem_quit"; this.menuitem_quit.Name = "menuitem_quit";
this.menuitem_quit.Size = new System.Drawing.Size(232, 22); this.menuitem_quit.Size = new System.Drawing.Size(232, 22);
this.menuitem_quit.Text = "Quit"; this.menuitem_quit.Text = "Quit";
// //
// menu_tools // menu_tools
// //
this.menu_tools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menu_tools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuitem_readydk, this.menuitem_readydk,
this.menuitem_readimages, this.menuitem_readimages,
this.menuitem_compdb, this.menuitem_compdb,
this.menuitem_exportdata, this.menuitem_exportdata,
this.tsep5, this.tsep5,
this.menuitem_saveasmse_select, this.menuitem_saveasmse_select,
this.menuitem_saveasmse, this.menuitem_saveasmse,
this.tsep3, this.tsep3,
this.menuitem_cutimages, this.menuitem_cutimages,
this.menuitem_convertimage, this.menuitem_convertimage,
this.menuitem_importmseimg, this.menuitem_importmseimg,
this.toolStripSeparator1, this.toolStripSeparator1,
this.menuitem_cancelTask}); this.menuitem_cancelTask});
this.menu_tools.Name = "menu_tools"; this.menu_tools.Name = "menu_tools";
this.menu_tools.Size = new System.Drawing.Size(67, 21); this.menu_tools.Size = new System.Drawing.Size(67, 21);
this.menu_tools.Text = "Tools(&T)"; this.menu_tools.Text = "Tools(&T)";
// //
// menuitem_readydk // menuitem_readydk
// //
this.menuitem_readydk.Name = "menuitem_readydk"; this.menuitem_readydk.Name = "menuitem_readydk";
this.menuitem_readydk.Size = new System.Drawing.Size(212, 22); this.menuitem_readydk.Size = new System.Drawing.Size(212, 22);
this.menuitem_readydk.Text = "Cards Form ydk file(&Y)"; this.menuitem_readydk.Text = "Cards Form ydk file(&Y)";
this.menuitem_readydk.Click += new System.EventHandler(this.Menuitem_readydkClick); this.menuitem_readydk.Click += new System.EventHandler(this.Menuitem_readydkClick);
// //
// menuitem_readimages // menuitem_readimages
// //
this.menuitem_readimages.Name = "menuitem_readimages"; this.menuitem_readimages.Name = "menuitem_readimages";
this.menuitem_readimages.Size = new System.Drawing.Size(212, 22); this.menuitem_readimages.Size = new System.Drawing.Size(212, 22);
this.menuitem_readimages.Text = "Cards From Images(&I)"; this.menuitem_readimages.Text = "Cards From Images(&I)";
this.menuitem_readimages.Click += new System.EventHandler(this.Menuitem_readimagesClick); this.menuitem_readimages.Click += new System.EventHandler(this.Menuitem_readimagesClick);
// //
// menuitem_compdb // menuitem_compdb
// //
this.menuitem_compdb.Name = "menuitem_compdb"; this.menuitem_compdb.Name = "menuitem_compdb";
this.menuitem_compdb.Size = new System.Drawing.Size(212, 22); this.menuitem_compdb.Size = new System.Drawing.Size(212, 22);
this.menuitem_compdb.Text = "Compression DataBase"; this.menuitem_compdb.Text = "Compression DataBase";
this.menuitem_compdb.Click += new System.EventHandler(this.Menuitem_compdbClick); this.menuitem_compdb.Click += new System.EventHandler(this.Menuitem_compdbClick);
// //
// menuitem_exportdata // menuitem_exportdata
// //
this.menuitem_exportdata.Name = "menuitem_exportdata"; this.menuitem_exportdata.Name = "menuitem_exportdata";
this.menuitem_exportdata.Size = new System.Drawing.Size(212, 22); this.menuitem_exportdata.Size = new System.Drawing.Size(212, 22);
this.menuitem_exportdata.Text = "Export Data"; this.menuitem_exportdata.Text = "Export Data";
this.menuitem_exportdata.Click += new System.EventHandler(this.Menuitem_exportdataClick); this.menuitem_exportdata.Click += new System.EventHandler(this.Menuitem_exportdataClick);
// //
// tsep5 // tsep5
// //
this.tsep5.Name = "tsep5"; this.tsep5.Name = "tsep5";
this.tsep5.Size = new System.Drawing.Size(209, 6); this.tsep5.Size = new System.Drawing.Size(209, 6);
// //
// menuitem_saveasmse_select // menuitem_saveasmse_select
// //
this.menuitem_saveasmse_select.Name = "menuitem_saveasmse_select"; this.menuitem_saveasmse_select.Name = "menuitem_saveasmse_select";
this.menuitem_saveasmse_select.Size = new System.Drawing.Size(212, 22); this.menuitem_saveasmse_select.Size = new System.Drawing.Size(212, 22);
this.menuitem_saveasmse_select.Text = "Select Save As MSE"; this.menuitem_saveasmse_select.Text = "Select Save As MSE";
this.menuitem_saveasmse_select.Click += new System.EventHandler(this.Menuitem_saveasmse_selectClick); this.menuitem_saveasmse_select.Click += new System.EventHandler(this.Menuitem_saveasmse_selectClick);
// //
// menuitem_saveasmse // menuitem_saveasmse
// //
this.menuitem_saveasmse.Name = "menuitem_saveasmse"; this.menuitem_saveasmse.Name = "menuitem_saveasmse";
this.menuitem_saveasmse.Size = new System.Drawing.Size(212, 22); this.menuitem_saveasmse.Size = new System.Drawing.Size(212, 22);
this.menuitem_saveasmse.Text = "All Now Save As MSE"; this.menuitem_saveasmse.Text = "All Now Save As MSE";
this.menuitem_saveasmse.Click += new System.EventHandler(this.Menuitem_saveasmseClick); this.menuitem_saveasmse.Click += new System.EventHandler(this.Menuitem_saveasmseClick);
// //
// tsep3 // tsep3
// //
this.tsep3.Name = "tsep3"; this.tsep3.Name = "tsep3";
this.tsep3.Size = new System.Drawing.Size(209, 6); this.tsep3.Size = new System.Drawing.Size(209, 6);
// //
// menuitem_cutimages // menuitem_cutimages
// //
this.menuitem_cutimages.Name = "menuitem_cutimages"; this.menuitem_cutimages.Name = "menuitem_cutimages";
this.menuitem_cutimages.Size = new System.Drawing.Size(212, 22); this.menuitem_cutimages.Size = new System.Drawing.Size(212, 22);
this.menuitem_cutimages.Text = "Cut Images"; this.menuitem_cutimages.Text = "Cut Images";
this.menuitem_cutimages.Click += new System.EventHandler(this.Menuitem_cutimagesClick); this.menuitem_cutimages.Click += new System.EventHandler(this.Menuitem_cutimagesClick);
// //
// menuitem_convertimage // menuitem_convertimage
// //
this.menuitem_convertimage.Name = "menuitem_convertimage"; this.menuitem_convertimage.Name = "menuitem_convertimage";
this.menuitem_convertimage.Size = new System.Drawing.Size(212, 22); this.menuitem_convertimage.Size = new System.Drawing.Size(212, 22);
this.menuitem_convertimage.Text = "Import Images"; this.menuitem_convertimage.Text = "Import Images";
this.menuitem_convertimage.Click += new System.EventHandler(this.Menuitem_convertimageClick); this.menuitem_convertimage.Click += new System.EventHandler(this.Menuitem_convertimageClick);
// //
// menuitem_importmseimg // menuitem_importmseimg
// //
this.menuitem_importmseimg.Name = "menuitem_importmseimg"; this.menuitem_importmseimg.Name = "menuitem_importmseimg";
this.menuitem_importmseimg.Size = new System.Drawing.Size(212, 22); this.menuitem_importmseimg.Size = new System.Drawing.Size(212, 22);
this.menuitem_importmseimg.Text = "Drop Image to MSE"; this.menuitem_importmseimg.Text = "Drop Image to MSE";
this.menuitem_importmseimg.Click += new System.EventHandler(this.Menuitem_importmseimgClick); this.menuitem_importmseimg.Click += new System.EventHandler(this.Menuitem_importmseimgClick);
// //
// toolStripSeparator1 // toolStripSeparator1
// //
this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(209, 6); this.toolStripSeparator1.Size = new System.Drawing.Size(209, 6);
// //
// menuitem_cancelTask // menuitem_cancelTask
// //
this.menuitem_cancelTask.Name = "menuitem_cancelTask"; this.menuitem_cancelTask.Name = "menuitem_cancelTask";
this.menuitem_cancelTask.Size = new System.Drawing.Size(212, 22); this.menuitem_cancelTask.Size = new System.Drawing.Size(212, 22);
this.menuitem_cancelTask.Text = "Cancel Task"; this.menuitem_cancelTask.Text = "Cancel Task";
this.menuitem_cancelTask.Click += new System.EventHandler(this.Menuitem_cancelTaskClick); this.menuitem_cancelTask.Click += new System.EventHandler(this.Menuitem_cancelTaskClick);
// //
// menuitem_help // menuitem_help
// //
this.menuitem_help.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuitem_help.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuitem_about, this.menuitem_about,
this.menuitem_checkupdate, this.menuitem_checkupdate,
this.menuitem_github}); this.menuitem_github});
this.menuitem_help.Name = "menuitem_help"; this.menuitem_help.Name = "menuitem_help";
this.menuitem_help.Size = new System.Drawing.Size(64, 21); this.menuitem_help.Size = new System.Drawing.Size(64, 21);
this.menuitem_help.Text = "Help(&H)"; this.menuitem_help.Text = "Help(&H)";
// //
// menuitem_about // menuitem_about
// //
this.menuitem_about.Name = "menuitem_about"; this.menuitem_about.Name = "menuitem_about";
this.menuitem_about.ShortcutKeys = System.Windows.Forms.Keys.F1; this.menuitem_about.ShortcutKeys = System.Windows.Forms.Keys.F1;
this.menuitem_about.Size = new System.Drawing.Size(158, 22); this.menuitem_about.Size = new System.Drawing.Size(158, 22);
this.menuitem_about.Text = "About"; this.menuitem_about.Text = "About";
this.menuitem_about.Click += new System.EventHandler(this.Menuitem_aboutClick); this.menuitem_about.Click += new System.EventHandler(this.Menuitem_aboutClick);
// //
// menuitem_checkupdate // menuitem_checkupdate
// //
this.menuitem_checkupdate.Name = "menuitem_checkupdate"; this.menuitem_checkupdate.Name = "menuitem_checkupdate";
this.menuitem_checkupdate.Size = new System.Drawing.Size(158, 22); this.menuitem_checkupdate.Size = new System.Drawing.Size(158, 22);
this.menuitem_checkupdate.Text = "Check Update"; this.menuitem_checkupdate.Text = "Check Update";
this.menuitem_checkupdate.Click += new System.EventHandler(this.Menuitem_checkupdateClick); this.menuitem_checkupdate.Click += new System.EventHandler(this.Menuitem_checkupdateClick);
// //
// menuitem_github // menuitem_github
// //
this.menuitem_github.Name = "menuitem_github"; this.menuitem_github.Name = "menuitem_github";
this.menuitem_github.Size = new System.Drawing.Size(158, 22); this.menuitem_github.Size = new System.Drawing.Size(158, 22);
this.menuitem_github.Text = "Source Code"; this.menuitem_github.Text = "Source Code";
this.menuitem_github.Click += new System.EventHandler(this.Menuitem_githubClick); this.menuitem_github.Click += new System.EventHandler(this.Menuitem_githubClick);
// //
// lv_cardlist // lv_cardlist
// //
this.lv_cardlist.Anchor = System.Windows.Forms.AnchorStyles.Top; this.lv_cardlist.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.lv_cardlist.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.lv_cardlist.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.lv_cardlist.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.lv_cardlist.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.ch_cardcode, this.ch_cardcode,
this.ch_cardname}); this.ch_cardname});
this.lv_cardlist.FullRowSelect = true; this.lv_cardlist.FullRowSelect = true;
this.lv_cardlist.GridLines = true; this.lv_cardlist.GridLines = true;
this.lv_cardlist.HideSelection = false; this.lv_cardlist.HideSelection = false;
this.lv_cardlist.LabelWrap = false; this.lv_cardlist.LabelWrap = false;
this.lv_cardlist.Location = new System.Drawing.Point(0, 27); this.lv_cardlist.Location = new System.Drawing.Point(0, 27);
this.lv_cardlist.Name = "lv_cardlist"; this.lv_cardlist.Name = "lv_cardlist";
this.lv_cardlist.Scrollable = false; this.lv_cardlist.Scrollable = false;
this.lv_cardlist.ShowItemToolTips = true; this.lv_cardlist.ShowItemToolTips = true;
this.lv_cardlist.Size = new System.Drawing.Size(216, 510); this.lv_cardlist.Size = new System.Drawing.Size(216, 510);
this.lv_cardlist.TabIndex = 1; this.lv_cardlist.TabIndex = 1;
this.lv_cardlist.UseCompatibleStateImageBehavior = false; this.lv_cardlist.UseCompatibleStateImageBehavior = false;
this.lv_cardlist.View = System.Windows.Forms.View.Details; this.lv_cardlist.View = System.Windows.Forms.View.Details;
this.lv_cardlist.SelectedIndexChanged += new System.EventHandler(this.Lv_cardlistSelectedIndexChanged); this.lv_cardlist.SelectedIndexChanged += new System.EventHandler(this.Lv_cardlistSelectedIndexChanged);
this.lv_cardlist.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Lv_cardlistKeyDown); this.lv_cardlist.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Lv_cardlistKeyDown);
// //
// ch_cardcode // ch_cardcode
// //
this.ch_cardcode.Text = "Card Code"; this.ch_cardcode.Text = "Card Code";
this.ch_cardcode.Width = 70; this.ch_cardcode.Width = 70;
// //
// ch_cardname // ch_cardname
// //
this.ch_cardname.Text = "Card Name"; this.ch_cardname.Text = "Card Name";
this.ch_cardname.Width = 140; this.ch_cardname.Width = 140;
// //
// cb_cardattribute // cb_cardattribute
// //
this.cb_cardattribute.Anchor = System.Windows.Forms.AnchorStyles.Top; this.cb_cardattribute.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.cb_cardattribute.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cb_cardattribute.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_cardattribute.FormattingEnabled = true; this.cb_cardattribute.FormattingEnabled = true;
this.cb_cardattribute.Location = new System.Drawing.Point(402, 80); this.cb_cardattribute.Location = new System.Drawing.Point(402, 80);
this.cb_cardattribute.Name = "cb_cardattribute"; this.cb_cardattribute.Name = "cb_cardattribute";
this.cb_cardattribute.Size = new System.Drawing.Size(140, 20); this.cb_cardattribute.Size = new System.Drawing.Size(140, 20);
this.cb_cardattribute.TabIndex = 2; this.cb_cardattribute.TabIndex = 2;
// //
// tb_cardname // tb_cardname
// //
this.tb_cardname.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_cardname.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_cardname.Location = new System.Drawing.Point(217, 29); this.tb_cardname.Location = new System.Drawing.Point(217, 29);
this.tb_cardname.Name = "tb_cardname"; this.tb_cardname.Name = "tb_cardname";
this.tb_cardname.Size = new System.Drawing.Size(325, 21); this.tb_cardname.Size = new System.Drawing.Size(325, 21);
this.tb_cardname.TabIndex = 4; this.tb_cardname.TabIndex = 4;
this.tb_cardname.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.tb_cardname.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.tb_cardname.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Tb_cardnameKeyDown); this.tb_cardname.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Tb_cardnameKeyDown);
// //
// cb_cardrule // cb_cardrule
// //
this.cb_cardrule.Anchor = System.Windows.Forms.AnchorStyles.Top; this.cb_cardrule.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.cb_cardrule.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cb_cardrule.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_cardrule.FormattingEnabled = true; this.cb_cardrule.FormattingEnabled = true;
this.cb_cardrule.Location = new System.Drawing.Point(402, 54); this.cb_cardrule.Location = new System.Drawing.Point(402, 54);
this.cb_cardrule.Name = "cb_cardrule"; this.cb_cardrule.Name = "cb_cardrule";
this.cb_cardrule.Size = new System.Drawing.Size(140, 20); this.cb_cardrule.Size = new System.Drawing.Size(140, 20);
this.cb_cardrule.TabIndex = 2; this.cb_cardrule.TabIndex = 2;
// //
// cb_cardlevel // cb_cardlevel
// //
this.cb_cardlevel.Anchor = System.Windows.Forms.AnchorStyles.Top; this.cb_cardlevel.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.cb_cardlevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cb_cardlevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_cardlevel.FormattingEnabled = true; this.cb_cardlevel.FormattingEnabled = true;
this.cb_cardlevel.Location = new System.Drawing.Point(402, 132); this.cb_cardlevel.Location = new System.Drawing.Point(402, 132);
this.cb_cardlevel.Name = "cb_cardlevel"; this.cb_cardlevel.Name = "cb_cardlevel";
this.cb_cardlevel.Size = new System.Drawing.Size(140, 20); this.cb_cardlevel.Size = new System.Drawing.Size(140, 20);
this.cb_cardlevel.TabIndex = 2; this.cb_cardlevel.TabIndex = 2;
// //
// cb_cardrace // cb_cardrace
// //
this.cb_cardrace.Anchor = System.Windows.Forms.AnchorStyles.Top; this.cb_cardrace.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.cb_cardrace.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cb_cardrace.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_cardrace.FormattingEnabled = true; this.cb_cardrace.FormattingEnabled = true;
this.cb_cardrace.Location = new System.Drawing.Point(402, 106); this.cb_cardrace.Location = new System.Drawing.Point(402, 106);
this.cb_cardrace.Name = "cb_cardrace"; this.cb_cardrace.Name = "cb_cardrace";
this.cb_cardrace.Size = new System.Drawing.Size(140, 20); this.cb_cardrace.Size = new System.Drawing.Size(140, 20);
this.cb_cardrace.TabIndex = 2; this.cb_cardrace.TabIndex = 2;
// //
// cb_setname2 // cb_setname2
// //
this.cb_setname2.Anchor = System.Windows.Forms.AnchorStyles.Top; this.cb_setname2.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.cb_setname2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cb_setname2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_setname2.FormattingEnabled = true; this.cb_setname2.FormattingEnabled = true;
this.cb_setname2.Location = new System.Drawing.Point(402, 183); this.cb_setname2.Location = new System.Drawing.Point(402, 183);
this.cb_setname2.Name = "cb_setname2"; this.cb_setname2.Name = "cb_setname2";
this.cb_setname2.Size = new System.Drawing.Size(106, 20); this.cb_setname2.Size = new System.Drawing.Size(106, 20);
this.cb_setname2.TabIndex = 2; this.cb_setname2.TabIndex = 2;
this.cb_setname2.SelectedIndexChanged += new System.EventHandler(this.Cb_setname2SelectedIndexChanged); this.cb_setname2.SelectedIndexChanged += new System.EventHandler(this.Cb_setname2SelectedIndexChanged);
// //
// cb_setname1 // cb_setname1
// //
this.cb_setname1.Anchor = System.Windows.Forms.AnchorStyles.Top; this.cb_setname1.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.cb_setname1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cb_setname1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_setname1.FormattingEnabled = true; this.cb_setname1.FormattingEnabled = true;
this.cb_setname1.Location = new System.Drawing.Point(402, 158); this.cb_setname1.Location = new System.Drawing.Point(402, 158);
this.cb_setname1.Name = "cb_setname1"; this.cb_setname1.Name = "cb_setname1";
this.cb_setname1.Size = new System.Drawing.Size(106, 20); this.cb_setname1.Size = new System.Drawing.Size(106, 20);
this.cb_setname1.TabIndex = 2; this.cb_setname1.TabIndex = 2;
this.cb_setname1.SelectedIndexChanged += new System.EventHandler(this.Cb_setname1SelectedIndexChanged); this.cb_setname1.SelectedIndexChanged += new System.EventHandler(this.Cb_setname1SelectedIndexChanged);
// //
// cb_setname4 // cb_setname4
// //
this.cb_setname4.Anchor = System.Windows.Forms.AnchorStyles.Top; this.cb_setname4.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.cb_setname4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cb_setname4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_setname4.FormattingEnabled = true; this.cb_setname4.FormattingEnabled = true;
this.cb_setname4.Location = new System.Drawing.Point(402, 233); this.cb_setname4.Location = new System.Drawing.Point(402, 233);
this.cb_setname4.Name = "cb_setname4"; this.cb_setname4.Name = "cb_setname4";
this.cb_setname4.Size = new System.Drawing.Size(106, 20); this.cb_setname4.Size = new System.Drawing.Size(106, 20);
this.cb_setname4.TabIndex = 2; this.cb_setname4.TabIndex = 2;
this.cb_setname4.SelectedIndexChanged += new System.EventHandler(this.Cb_setname4SelectedIndexChanged); this.cb_setname4.SelectedIndexChanged += new System.EventHandler(this.Cb_setname4SelectedIndexChanged);
// //
// cb_setname3 // cb_setname3
// //
this.cb_setname3.Anchor = System.Windows.Forms.AnchorStyles.Top; this.cb_setname3.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.cb_setname3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cb_setname3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_setname3.FormattingEnabled = true; this.cb_setname3.FormattingEnabled = true;
this.cb_setname3.Location = new System.Drawing.Point(402, 208); this.cb_setname3.Location = new System.Drawing.Point(402, 208);
this.cb_setname3.Name = "cb_setname3"; this.cb_setname3.Name = "cb_setname3";
this.cb_setname3.Size = new System.Drawing.Size(106, 20); this.cb_setname3.Size = new System.Drawing.Size(106, 20);
this.cb_setname3.TabIndex = 2; this.cb_setname3.TabIndex = 2;
this.cb_setname3.SelectedIndexChanged += new System.EventHandler(this.Cb_setname3SelectedIndexChanged); this.cb_setname3.SelectedIndexChanged += new System.EventHandler(this.Cb_setname3SelectedIndexChanged);
// //
// tb_cardtext // tb_cardtext
// //
this.tb_cardtext.AcceptsReturn = true; this.tb_cardtext.AcceptsReturn = true;
this.tb_cardtext.AcceptsTab = true; this.tb_cardtext.AcceptsTab = true;
this.tb_cardtext.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_cardtext.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_cardtext.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.tb_cardtext.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.tb_cardtext.Location = new System.Drawing.Point(220, 337); this.tb_cardtext.Location = new System.Drawing.Point(220, 337);
this.tb_cardtext.Multiline = true; this.tb_cardtext.Multiline = true;
this.tb_cardtext.Name = "tb_cardtext"; this.tb_cardtext.Name = "tb_cardtext";
this.tb_cardtext.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.tb_cardtext.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.tb_cardtext.Size = new System.Drawing.Size(326, 200); this.tb_cardtext.Size = new System.Drawing.Size(326, 200);
this.tb_cardtext.TabIndex = 4; this.tb_cardtext.TabIndex = 4;
// //
// lb_scripttext // lb_scripttext
// //
this.lb_scripttext.Anchor = System.Windows.Forms.AnchorStyles.Top; this.lb_scripttext.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.lb_scripttext.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lb_scripttext.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.lb_scripttext.FormattingEnabled = true; this.lb_scripttext.FormattingEnabled = true;
this.lb_scripttext.IntegralHeight = false; this.lb_scripttext.IntegralHeight = false;
this.lb_scripttext.ItemHeight = 12; this.lb_scripttext.ItemHeight = 12;
this.lb_scripttext.Location = new System.Drawing.Point(548, 384); this.lb_scripttext.Location = new System.Drawing.Point(548, 384);
this.lb_scripttext.Name = "lb_scripttext"; this.lb_scripttext.Name = "lb_scripttext";
this.lb_scripttext.ScrollAlwaysVisible = true; this.lb_scripttext.ScrollAlwaysVisible = true;
this.lb_scripttext.Size = new System.Drawing.Size(310, 126); this.lb_scripttext.Size = new System.Drawing.Size(310, 126);
this.lb_scripttext.TabIndex = 6; this.lb_scripttext.TabIndex = 6;
this.lb_scripttext.SelectedIndexChanged += new System.EventHandler(this.Lb_scripttextSelectedIndexChanged); this.lb_scripttext.SelectedIndexChanged += new System.EventHandler(this.Lb_scripttextSelectedIndexChanged);
// //
// tb_edittext // tb_edittext
// //
this.tb_edittext.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_edittext.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_edittext.HideSelection = false; this.tb_edittext.HideSelection = false;
this.tb_edittext.Location = new System.Drawing.Point(548, 515); this.tb_edittext.Location = new System.Drawing.Point(548, 515);
this.tb_edittext.MaxLength = 2000; this.tb_edittext.MaxLength = 2000;
this.tb_edittext.Name = "tb_edittext"; this.tb_edittext.Name = "tb_edittext";
this.tb_edittext.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.tb_edittext.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.tb_edittext.Size = new System.Drawing.Size(310, 21); this.tb_edittext.Size = new System.Drawing.Size(310, 21);
this.tb_edittext.TabIndex = 4; this.tb_edittext.TabIndex = 4;
this.tb_edittext.TextChanged += new System.EventHandler(this.Tb_edittextTextChanged); this.tb_edittext.TextChanged += new System.EventHandler(this.Tb_edittextTextChanged);
// //
// lb_pleft_right // lb_pleft_right
// //
this.lb_pleft_right.Anchor = System.Windows.Forms.AnchorStyles.Top; this.lb_pleft_right.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.lb_pleft_right.AutoSize = true; this.lb_pleft_right.AutoSize = true;
this.lb_pleft_right.BackColor = System.Drawing.SystemColors.Control; this.lb_pleft_right.BackColor = System.Drawing.SystemColors.Control;
this.lb_pleft_right.Location = new System.Drawing.Point(222, 317); this.lb_pleft_right.Location = new System.Drawing.Point(222, 317);
this.lb_pleft_right.Name = "lb_pleft_right"; this.lb_pleft_right.Name = "lb_pleft_right";
this.lb_pleft_right.Size = new System.Drawing.Size(41, 12); this.lb_pleft_right.Size = new System.Drawing.Size(41, 12);
this.lb_pleft_right.TabIndex = 7; this.lb_pleft_right.TabIndex = 7;
this.lb_pleft_right.Text = "PScale"; this.lb_pleft_right.Text = "PScale";
// //
// tb_pleft // tb_pleft
// //
this.tb_pleft.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_pleft.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_pleft.Location = new System.Drawing.Point(297, 312); this.tb_pleft.Location = new System.Drawing.Point(297, 312);
this.tb_pleft.MaxLength = 12; this.tb_pleft.MaxLength = 12;
this.tb_pleft.Name = "tb_pleft"; this.tb_pleft.Name = "tb_pleft";
this.tb_pleft.Size = new System.Drawing.Size(38, 21); this.tb_pleft.Size = new System.Drawing.Size(38, 21);
this.tb_pleft.TabIndex = 8; this.tb_pleft.TabIndex = 8;
this.tb_pleft.Text = "0"; this.tb_pleft.Text = "0";
this.tb_pleft.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.tb_pleft.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
// //
// tb_pright // tb_pright
// //
this.tb_pright.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_pright.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_pright.Location = new System.Drawing.Point(353, 313); this.tb_pright.Location = new System.Drawing.Point(353, 313);
this.tb_pright.MaxLength = 12; this.tb_pright.MaxLength = 12;
this.tb_pright.Name = "tb_pright"; this.tb_pright.Name = "tb_pright";
this.tb_pright.Size = new System.Drawing.Size(38, 21); this.tb_pright.Size = new System.Drawing.Size(38, 21);
this.tb_pright.TabIndex = 8; this.tb_pright.TabIndex = 8;
this.tb_pright.Text = "0"; this.tb_pright.Text = "0";
this.tb_pright.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.tb_pright.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
// //
// lb_atkdef // lb_atkdef
// //
this.lb_atkdef.Anchor = System.Windows.Forms.AnchorStyles.Top; this.lb_atkdef.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.lb_atkdef.AutoSize = true; this.lb_atkdef.AutoSize = true;
this.lb_atkdef.Location = new System.Drawing.Point(399, 316); this.lb_atkdef.Location = new System.Drawing.Point(399, 316);
this.lb_atkdef.Name = "lb_atkdef"; this.lb_atkdef.Name = "lb_atkdef";
this.lb_atkdef.Size = new System.Drawing.Size(47, 12); this.lb_atkdef.Size = new System.Drawing.Size(47, 12);
this.lb_atkdef.TabIndex = 7; this.lb_atkdef.TabIndex = 7;
this.lb_atkdef.Text = "ATK/DEF"; this.lb_atkdef.Text = "ATK/DEF";
// //
// lb4 // lb4
// //
this.lb4.Anchor = System.Windows.Forms.AnchorStyles.Top; this.lb4.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.lb4.AutoSize = true; this.lb4.AutoSize = true;
this.lb4.Location = new System.Drawing.Point(102, 548); this.lb4.Location = new System.Drawing.Point(102, 548);
this.lb4.Name = "lb4"; this.lb4.Name = "lb4";
this.lb4.Size = new System.Drawing.Size(11, 12); this.lb4.Size = new System.Drawing.Size(11, 12);
this.lb4.TabIndex = 7; this.lb4.TabIndex = 7;
this.lb4.Text = "/"; this.lb4.Text = "/";
// //
// tb_page // tb_page
// //
this.tb_page.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_page.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_page.Location = new System.Drawing.Point(66, 544); this.tb_page.Location = new System.Drawing.Point(66, 544);
this.tb_page.MaxLength = 12; this.tb_page.MaxLength = 12;
this.tb_page.Name = "tb_page"; this.tb_page.Name = "tb_page";
this.tb_page.Size = new System.Drawing.Size(34, 21); this.tb_page.Size = new System.Drawing.Size(34, 21);
this.tb_page.TabIndex = 8; this.tb_page.TabIndex = 8;
this.tb_page.Text = "1"; this.tb_page.Text = "1";
this.tb_page.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.tb_page.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.tb_page.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Tb_pageKeyPress); this.tb_page.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Tb_pageKeyPress);
// //
// tb_pagenum // tb_pagenum
// //
this.tb_pagenum.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_pagenum.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_pagenum.Location = new System.Drawing.Point(117, 544); this.tb_pagenum.Location = new System.Drawing.Point(117, 544);
this.tb_pagenum.MaxLength = 12; this.tb_pagenum.MaxLength = 12;
this.tb_pagenum.Name = "tb_pagenum"; this.tb_pagenum.Name = "tb_pagenum";
this.tb_pagenum.ReadOnly = true; this.tb_pagenum.ReadOnly = true;
this.tb_pagenum.Size = new System.Drawing.Size(34, 21); this.tb_pagenum.Size = new System.Drawing.Size(34, 21);
this.tb_pagenum.TabIndex = 8; this.tb_pagenum.TabIndex = 8;
this.tb_pagenum.Text = "1"; this.tb_pagenum.Text = "1";
this.tb_pagenum.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.tb_pagenum.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
// //
// btn_PageUp // btn_PageUp
// //
this.btn_PageUp.Anchor = System.Windows.Forms.AnchorStyles.Top; this.btn_PageUp.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_PageUp.Location = new System.Drawing.Point(0, 540); this.btn_PageUp.Location = new System.Drawing.Point(0, 540);
this.btn_PageUp.Name = "btn_PageUp"; this.btn_PageUp.Name = "btn_PageUp";
this.btn_PageUp.Size = new System.Drawing.Size(64, 27); this.btn_PageUp.Size = new System.Drawing.Size(64, 27);
this.btn_PageUp.TabIndex = 5; this.btn_PageUp.TabIndex = 5;
this.btn_PageUp.Text = "< <"; this.btn_PageUp.Text = "< <";
this.btn_PageUp.UseVisualStyleBackColor = true; this.btn_PageUp.UseVisualStyleBackColor = true;
this.btn_PageUp.Click += new System.EventHandler(this.Btn_PageUpClick); this.btn_PageUp.Click += new System.EventHandler(this.Btn_PageUpClick);
// //
// btn_PageDown // btn_PageDown
// //
this.btn_PageDown.Anchor = System.Windows.Forms.AnchorStyles.Top; this.btn_PageDown.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_PageDown.Location = new System.Drawing.Point(153, 540); this.btn_PageDown.Location = new System.Drawing.Point(153, 540);
this.btn_PageDown.Name = "btn_PageDown"; this.btn_PageDown.Name = "btn_PageDown";
this.btn_PageDown.Size = new System.Drawing.Size(64, 27); this.btn_PageDown.Size = new System.Drawing.Size(64, 27);
this.btn_PageDown.TabIndex = 5; this.btn_PageDown.TabIndex = 5;
this.btn_PageDown.Text = "> >"; this.btn_PageDown.Text = "> >";
this.btn_PageDown.UseVisualStyleBackColor = true; this.btn_PageDown.UseVisualStyleBackColor = true;
this.btn_PageDown.Click += new System.EventHandler(this.Btn_PageDownClick); this.btn_PageDown.Click += new System.EventHandler(this.Btn_PageDownClick);
// //
// btn_add // btn_add
// //
this.btn_add.Anchor = System.Windows.Forms.AnchorStyles.Top; this.btn_add.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_add.Location = new System.Drawing.Point(548, 539); this.btn_add.Location = new System.Drawing.Point(548, 539);
this.btn_add.Name = "btn_add"; this.btn_add.Name = "btn_add";
this.btn_add.Size = new System.Drawing.Size(75, 28); this.btn_add.Size = new System.Drawing.Size(75, 28);
this.btn_add.TabIndex = 5; this.btn_add.TabIndex = 5;
this.btn_add.Text = "&Add"; this.btn_add.Text = "&Add";
this.btn_add.UseVisualStyleBackColor = true; this.btn_add.UseVisualStyleBackColor = true;
this.btn_add.Click += new System.EventHandler(this.Btn_addClick); this.btn_add.Click += new System.EventHandler(this.Btn_addClick);
// //
// lb5 // lb5
// //
this.lb5.Anchor = System.Windows.Forms.AnchorStyles.Top; this.lb5.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.lb5.AutoSize = true; this.lb5.AutoSize = true;
this.lb5.Location = new System.Drawing.Point(491, 315); this.lb5.Location = new System.Drawing.Point(491, 315);
this.lb5.Name = "lb5"; this.lb5.Name = "lb5";
this.lb5.Size = new System.Drawing.Size(11, 12); this.lb5.Size = new System.Drawing.Size(11, 12);
this.lb5.TabIndex = 7; this.lb5.TabIndex = 7;
this.lb5.Text = "/"; this.lb5.Text = "/";
// //
// tb_atk // tb_atk
// //
this.tb_atk.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_atk.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_atk.Location = new System.Drawing.Point(450, 311); this.tb_atk.Location = new System.Drawing.Point(450, 311);
this.tb_atk.MaxLength = 12; this.tb_atk.MaxLength = 12;
this.tb_atk.Name = "tb_atk"; this.tb_atk.Name = "tb_atk";
this.tb_atk.Size = new System.Drawing.Size(38, 21); this.tb_atk.Size = new System.Drawing.Size(38, 21);
this.tb_atk.TabIndex = 8; this.tb_atk.TabIndex = 8;
this.tb_atk.Text = "0"; this.tb_atk.Text = "0";
this.tb_atk.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.tb_atk.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
// //
// tb_def // tb_def
// //
this.tb_def.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_def.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_def.Location = new System.Drawing.Point(504, 311); this.tb_def.Location = new System.Drawing.Point(504, 311);
this.tb_def.MaxLength = 12; this.tb_def.MaxLength = 12;
this.tb_def.Name = "tb_def"; this.tb_def.Name = "tb_def";
this.tb_def.Size = new System.Drawing.Size(38, 21); this.tb_def.Size = new System.Drawing.Size(38, 21);
this.tb_def.TabIndex = 8; this.tb_def.TabIndex = 8;
this.tb_def.Text = "0"; this.tb_def.Text = "0";
this.tb_def.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.tb_def.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
// //
// tb_cardcode // tb_cardcode
// //
this.tb_cardcode.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_cardcode.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_cardcode.Location = new System.Drawing.Point(474, 283); this.tb_cardcode.Location = new System.Drawing.Point(474, 283);
this.tb_cardcode.MaxLength = 12; this.tb_cardcode.MaxLength = 12;
this.tb_cardcode.Name = "tb_cardcode"; this.tb_cardcode.Name = "tb_cardcode";
this.tb_cardcode.Size = new System.Drawing.Size(68, 21); this.tb_cardcode.Size = new System.Drawing.Size(68, 21);
this.tb_cardcode.TabIndex = 8; this.tb_cardcode.TabIndex = 8;
this.tb_cardcode.Text = "0"; this.tb_cardcode.Text = "0";
this.tb_cardcode.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.tb_cardcode.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.tb_cardcode.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Tb_cardcodeKeyPress); this.tb_cardcode.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Tb_cardcodeKeyPress);
// //
// lb_cardalias // lb_cardalias
// //
this.lb_cardalias.Anchor = System.Windows.Forms.AnchorStyles.Top; this.lb_cardalias.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.lb_cardalias.AutoSize = true; this.lb_cardalias.AutoSize = true;
this.lb_cardalias.Location = new System.Drawing.Point(405, 264); this.lb_cardalias.Location = new System.Drawing.Point(405, 264);
this.lb_cardalias.Name = "lb_cardalias"; this.lb_cardalias.Name = "lb_cardalias";
this.lb_cardalias.Size = new System.Drawing.Size(65, 12); this.lb_cardalias.Size = new System.Drawing.Size(65, 12);
this.lb_cardalias.TabIndex = 7; this.lb_cardalias.TabIndex = 7;
this.lb_cardalias.Text = "Alias Card"; this.lb_cardalias.Text = "Alias Card";
// //
// tb_cardalias // tb_cardalias
// //
this.tb_cardalias.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_cardalias.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_cardalias.Location = new System.Drawing.Point(475, 259); this.tb_cardalias.Location = new System.Drawing.Point(475, 259);
this.tb_cardalias.MaxLength = 12; this.tb_cardalias.MaxLength = 12;
this.tb_cardalias.Name = "tb_cardalias"; this.tb_cardalias.Name = "tb_cardalias";
this.tb_cardalias.Size = new System.Drawing.Size(67, 21); this.tb_cardalias.Size = new System.Drawing.Size(67, 21);
this.tb_cardalias.TabIndex = 8; this.tb_cardalias.TabIndex = 8;
this.tb_cardalias.Text = "0"; this.tb_cardalias.Text = "0";
this.tb_cardalias.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.tb_cardalias.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
// //
// btn_mod // btn_mod
// //
this.btn_mod.Anchor = System.Windows.Forms.AnchorStyles.Top; this.btn_mod.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_mod.Location = new System.Drawing.Point(627, 539); this.btn_mod.Location = new System.Drawing.Point(627, 539);
this.btn_mod.Name = "btn_mod"; this.btn_mod.Name = "btn_mod";
this.btn_mod.Size = new System.Drawing.Size(75, 28); this.btn_mod.Size = new System.Drawing.Size(75, 28);
this.btn_mod.TabIndex = 5; this.btn_mod.TabIndex = 5;
this.btn_mod.Text = "&Modify"; this.btn_mod.Text = "&Modify";
this.btn_mod.UseVisualStyleBackColor = true; this.btn_mod.UseVisualStyleBackColor = true;
this.btn_mod.Click += new System.EventHandler(this.Btn_modClick); this.btn_mod.Click += new System.EventHandler(this.Btn_modClick);
// //
// btn_del // btn_del
// //
this.btn_del.Anchor = System.Windows.Forms.AnchorStyles.Top; this.btn_del.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_del.ForeColor = System.Drawing.Color.DarkRed; this.btn_del.ForeColor = System.Drawing.Color.DarkRed;
this.btn_del.Location = new System.Drawing.Point(783, 539); this.btn_del.Location = new System.Drawing.Point(783, 539);
this.btn_del.Name = "btn_del"; this.btn_del.Name = "btn_del";
this.btn_del.Size = new System.Drawing.Size(75, 28); this.btn_del.Size = new System.Drawing.Size(75, 28);
this.btn_del.TabIndex = 5; this.btn_del.TabIndex = 5;
this.btn_del.Text = "&Delete"; this.btn_del.Text = "&Delete";
this.btn_del.UseVisualStyleBackColor = true; this.btn_del.UseVisualStyleBackColor = true;
this.btn_del.Click += new System.EventHandler(this.Btn_delClick); this.btn_del.Click += new System.EventHandler(this.Btn_delClick);
// //
// btn_lua // btn_lua
// //
this.btn_lua.Anchor = System.Windows.Forms.AnchorStyles.Top; this.btn_lua.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_lua.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0))))); this.btn_lua.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
this.btn_lua.Location = new System.Drawing.Point(465, 539); this.btn_lua.Location = new System.Drawing.Point(465, 539);
this.btn_lua.Name = "btn_lua"; this.btn_lua.Name = "btn_lua";
this.btn_lua.Size = new System.Drawing.Size(80, 28); this.btn_lua.Size = new System.Drawing.Size(80, 28);
this.btn_lua.TabIndex = 5; this.btn_lua.TabIndex = 5;
this.btn_lua.Text = "&Lua Script"; this.btn_lua.Text = "&Lua Script";
this.btn_lua.UseVisualStyleBackColor = true; this.btn_lua.UseVisualStyleBackColor = true;
this.btn_lua.Click += new System.EventHandler(this.Btn_luaClick); this.btn_lua.Click += new System.EventHandler(this.Btn_luaClick);
// //
// btn_reset // btn_reset
// //
this.btn_reset.Anchor = System.Windows.Forms.AnchorStyles.Top; this.btn_reset.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_reset.Location = new System.Drawing.Point(301, 539); this.btn_reset.Location = new System.Drawing.Point(301, 539);
this.btn_reset.Name = "btn_reset"; this.btn_reset.Name = "btn_reset";
this.btn_reset.Size = new System.Drawing.Size(80, 28); this.btn_reset.Size = new System.Drawing.Size(80, 28);
this.btn_reset.TabIndex = 5; this.btn_reset.TabIndex = 5;
this.btn_reset.Text = "&Reset"; this.btn_reset.Text = "&Reset";
this.btn_reset.UseVisualStyleBackColor = true; this.btn_reset.UseVisualStyleBackColor = true;
this.btn_reset.Click += new System.EventHandler(this.Btn_resetClick); this.btn_reset.Click += new System.EventHandler(this.Btn_resetClick);
// //
// btn_serach // btn_serach
// //
this.btn_serach.Anchor = System.Windows.Forms.AnchorStyles.Top; this.btn_serach.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_serach.Location = new System.Drawing.Point(219, 539); this.btn_serach.Location = new System.Drawing.Point(219, 539);
this.btn_serach.Name = "btn_serach"; this.btn_serach.Name = "btn_serach";
this.btn_serach.Size = new System.Drawing.Size(80, 28); this.btn_serach.Size = new System.Drawing.Size(80, 28);
this.btn_serach.TabIndex = 0; this.btn_serach.TabIndex = 0;
this.btn_serach.Text = "&Search"; this.btn_serach.Text = "&Search";
this.btn_serach.UseVisualStyleBackColor = true; this.btn_serach.UseVisualStyleBackColor = true;
this.btn_serach.Click += new System.EventHandler(this.Btn_serachClick); this.btn_serach.Click += new System.EventHandler(this.Btn_serachClick);
// //
// lb_categorys // lb_categorys
// //
this.lb_categorys.Anchor = System.Windows.Forms.AnchorStyles.Top; this.lb_categorys.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.lb_categorys.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255))))); this.lb_categorys.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
this.lb_categorys.Location = new System.Drawing.Point(548, 171); this.lb_categorys.Location = new System.Drawing.Point(548, 171);
this.lb_categorys.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0); this.lb_categorys.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
this.lb_categorys.Name = "lb_categorys"; this.lb_categorys.Name = "lb_categorys";
this.lb_categorys.Size = new System.Drawing.Size(310, 16); this.lb_categorys.Size = new System.Drawing.Size(310, 16);
this.lb_categorys.TabIndex = 11; this.lb_categorys.TabIndex = 11;
this.lb_categorys.Text = "Card Categorys"; this.lb_categorys.Text = "Card Categorys";
this.lb_categorys.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.lb_categorys.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
// //
// lb2 // lb2
// //
this.lb2.Anchor = System.Windows.Forms.AnchorStyles.Top; this.lb2.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.lb2.AutoSize = true; this.lb2.AutoSize = true;
this.lb2.Location = new System.Drawing.Point(339, 316); this.lb2.Location = new System.Drawing.Point(339, 316);
this.lb2.Name = "lb2"; this.lb2.Name = "lb2";
this.lb2.Size = new System.Drawing.Size(11, 12); this.lb2.Size = new System.Drawing.Size(11, 12);
this.lb2.TabIndex = 7; this.lb2.TabIndex = 7;
this.lb2.Text = "/"; this.lb2.Text = "/";
// //
// pl_cardtype // pl_cardtype
// //
this.pl_cardtype.Anchor = System.Windows.Forms.AnchorStyles.Top; this.pl_cardtype.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.pl_cardtype.AutoScroll = true; this.pl_cardtype.AutoScroll = true;
this.pl_cardtype.Location = new System.Drawing.Point(548, 46); this.pl_cardtype.Location = new System.Drawing.Point(548, 46);
this.pl_cardtype.Margin = new System.Windows.Forms.Padding(1); this.pl_cardtype.Margin = new System.Windows.Forms.Padding(1);
this.pl_cardtype.Name = "pl_cardtype"; this.pl_cardtype.Name = "pl_cardtype";
this.pl_cardtype.Padding = new System.Windows.Forms.Padding(2); this.pl_cardtype.Padding = new System.Windows.Forms.Padding(2);
this.pl_cardtype.Size = new System.Drawing.Size(310, 123); this.pl_cardtype.Size = new System.Drawing.Size(310, 123);
this.pl_cardtype.TabIndex = 12; this.pl_cardtype.TabIndex = 12;
// //
// pl_category // pl_category
// //
this.pl_category.Anchor = System.Windows.Forms.AnchorStyles.Top; this.pl_category.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.pl_category.AutoScroll = true; this.pl_category.AutoScroll = true;
this.pl_category.Location = new System.Drawing.Point(548, 189); this.pl_category.Location = new System.Drawing.Point(548, 189);
this.pl_category.Margin = new System.Windows.Forms.Padding(1); this.pl_category.Margin = new System.Windows.Forms.Padding(1);
this.pl_category.Name = "pl_category"; this.pl_category.Name = "pl_category";
this.pl_category.Padding = new System.Windows.Forms.Padding(2); this.pl_category.Padding = new System.Windows.Forms.Padding(2);
this.pl_category.Size = new System.Drawing.Size(310, 174); this.pl_category.Size = new System.Drawing.Size(310, 174);
this.pl_category.TabIndex = 13; this.pl_category.TabIndex = 13;
// //
// pl_image // pl_image
// //
this.pl_image.AllowDrop = true; this.pl_image.AllowDrop = true;
this.pl_image.Anchor = System.Windows.Forms.AnchorStyles.Top; this.pl_image.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.pl_image.BackColor = System.Drawing.SystemColors.ButtonHighlight; this.pl_image.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.pl_image.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.pl_image.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.pl_image.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pl_image.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pl_image.Location = new System.Drawing.Point(218, 52); this.pl_image.Location = new System.Drawing.Point(218, 52);
this.pl_image.Name = "pl_image"; this.pl_image.Name = "pl_image";
this.pl_image.Size = new System.Drawing.Size(179, 256); this.pl_image.Size = new System.Drawing.Size(179, 256);
this.pl_image.TabIndex = 14; this.pl_image.TabIndex = 14;
this.pl_image.DragDrop += new System.Windows.Forms.DragEventHandler(this.Pl_imageDragDrop); this.pl_image.DragDrop += new System.Windows.Forms.DragEventHandler(this.Pl_imageDragDrop);
this.pl_image.DragEnter += new System.Windows.Forms.DragEventHandler(this.Pl_imageDragEnter); this.pl_image.DragEnter += new System.Windows.Forms.DragEventHandler(this.Pl_imageDragEnter);
// //
// lb_types // lb_types
// //
this.lb_types.Anchor = System.Windows.Forms.AnchorStyles.Top; this.lb_types.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.lb_types.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255))))); this.lb_types.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
this.lb_types.Location = new System.Drawing.Point(548, 28); this.lb_types.Location = new System.Drawing.Point(548, 28);
this.lb_types.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0); this.lb_types.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
this.lb_types.Name = "lb_types"; this.lb_types.Name = "lb_types";
this.lb_types.Size = new System.Drawing.Size(310, 16); this.lb_types.Size = new System.Drawing.Size(310, 16);
this.lb_types.TabIndex = 11; this.lb_types.TabIndex = 11;
this.lb_types.Text = "Card Types"; this.lb_types.Text = "Card Types";
this.lb_types.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.lb_types.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
// //
// lb_tiptexts // lb_tiptexts
// //
this.lb_tiptexts.Anchor = System.Windows.Forms.AnchorStyles.Top; this.lb_tiptexts.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.lb_tiptexts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255))))); this.lb_tiptexts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
this.lb_tiptexts.Location = new System.Drawing.Point(548, 365); this.lb_tiptexts.Location = new System.Drawing.Point(548, 365);
this.lb_tiptexts.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0); this.lb_tiptexts.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
this.lb_tiptexts.Name = "lb_tiptexts"; this.lb_tiptexts.Name = "lb_tiptexts";
this.lb_tiptexts.Size = new System.Drawing.Size(310, 16); this.lb_tiptexts.Size = new System.Drawing.Size(310, 16);
this.lb_tiptexts.TabIndex = 11; this.lb_tiptexts.TabIndex = 11;
this.lb_tiptexts.Text = "Tips Texts"; this.lb_tiptexts.Text = "Tips Texts";
this.lb_tiptexts.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.lb_tiptexts.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
// //
// bgWorker1 // bgWorker1
// //
this.bgWorker1.WorkerReportsProgress = true; this.bgWorker1.WorkerReportsProgress = true;
this.bgWorker1.WorkerSupportsCancellation = true; this.bgWorker1.WorkerSupportsCancellation = true;
this.bgWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.BgWorker1DoWork); this.bgWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.BgWorker1DoWork);
this.bgWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.BgWorker1ProgressChanged); this.bgWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.BgWorker1ProgressChanged);
this.bgWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.BgWorker1RunWorkerCompleted); this.bgWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.BgWorker1RunWorkerCompleted);
// //
// btn_undo // btn_undo
// //
this.btn_undo.Anchor = System.Windows.Forms.AnchorStyles.Top; this.btn_undo.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_undo.Location = new System.Drawing.Point(705, 539); this.btn_undo.Location = new System.Drawing.Point(705, 539);
this.btn_undo.Name = "btn_undo"; this.btn_undo.Name = "btn_undo";
this.btn_undo.Size = new System.Drawing.Size(75, 28); this.btn_undo.Size = new System.Drawing.Size(75, 28);
this.btn_undo.TabIndex = 5; this.btn_undo.TabIndex = 5;
this.btn_undo.Text = "&Undo"; this.btn_undo.Text = "&Undo";
this.btn_undo.UseVisualStyleBackColor = true; this.btn_undo.UseVisualStyleBackColor = true;
this.btn_undo.Click += new System.EventHandler(this.Btn_undoClick); this.btn_undo.Click += new System.EventHandler(this.Btn_undoClick);
// //
// btn_img // btn_img
// //
this.btn_img.Anchor = System.Windows.Forms.AnchorStyles.Top; this.btn_img.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_img.Location = new System.Drawing.Point(383, 539); this.btn_img.Location = new System.Drawing.Point(383, 539);
this.btn_img.Name = "btn_img"; this.btn_img.Name = "btn_img";
this.btn_img.Size = new System.Drawing.Size(80, 28); this.btn_img.Size = new System.Drawing.Size(80, 28);
this.btn_img.TabIndex = 17; this.btn_img.TabIndex = 17;
this.btn_img.Text = "&Image"; this.btn_img.Text = "&Image";
this.btn_img.UseVisualStyleBackColor = true; this.btn_img.UseVisualStyleBackColor = true;
this.btn_img.Click += new System.EventHandler(this.Btn_imgClick); this.btn_img.Click += new System.EventHandler(this.Btn_imgClick);
// //
// tb_setcode1 // tb_setcode1
// //
this.tb_setcode1.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_setcode1.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_setcode1.Location = new System.Drawing.Point(512, 158); this.tb_setcode1.Location = new System.Drawing.Point(512, 158);
this.tb_setcode1.MaxLength = 4; this.tb_setcode1.MaxLength = 4;
this.tb_setcode1.Name = "tb_setcode1"; this.tb_setcode1.Name = "tb_setcode1";
this.tb_setcode1.Size = new System.Drawing.Size(30, 21); this.tb_setcode1.Size = new System.Drawing.Size(30, 21);
this.tb_setcode1.TabIndex = 18; this.tb_setcode1.TabIndex = 18;
this.tb_setcode1.Text = "0"; this.tb_setcode1.Text = "0";
this.tb_setcode1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.tb_setcode1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.tb_setcode1.TextChanged += new System.EventHandler(this.Tb_setcode1TextChanged); this.tb_setcode1.TextChanged += new System.EventHandler(this.Tb_setcode1TextChanged);
// //
// tb_setcode2 // tb_setcode2
// //
this.tb_setcode2.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_setcode2.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_setcode2.Location = new System.Drawing.Point(512, 182); this.tb_setcode2.Location = new System.Drawing.Point(512, 182);
this.tb_setcode2.MaxLength = 4; this.tb_setcode2.MaxLength = 4;
this.tb_setcode2.Name = "tb_setcode2"; this.tb_setcode2.Name = "tb_setcode2";
this.tb_setcode2.Size = new System.Drawing.Size(30, 21); this.tb_setcode2.Size = new System.Drawing.Size(30, 21);
this.tb_setcode2.TabIndex = 18; this.tb_setcode2.TabIndex = 18;
this.tb_setcode2.Text = "0"; this.tb_setcode2.Text = "0";
this.tb_setcode2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.tb_setcode2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.tb_setcode2.TextChanged += new System.EventHandler(this.Tb_setcode2TextChanged); this.tb_setcode2.TextChanged += new System.EventHandler(this.Tb_setcode2TextChanged);
// //
// tb_setcode3 // tb_setcode3
// //
this.tb_setcode3.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_setcode3.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_setcode3.Location = new System.Drawing.Point(512, 207); this.tb_setcode3.Location = new System.Drawing.Point(512, 207);
this.tb_setcode3.MaxLength = 4; this.tb_setcode3.MaxLength = 4;
this.tb_setcode3.Name = "tb_setcode3"; this.tb_setcode3.Name = "tb_setcode3";
this.tb_setcode3.Size = new System.Drawing.Size(30, 21); this.tb_setcode3.Size = new System.Drawing.Size(30, 21);
this.tb_setcode3.TabIndex = 18; this.tb_setcode3.TabIndex = 18;
this.tb_setcode3.Text = "0"; this.tb_setcode3.Text = "0";
this.tb_setcode3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.tb_setcode3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.tb_setcode3.TextChanged += new System.EventHandler(this.Tb_setcode3TextChanged); this.tb_setcode3.TextChanged += new System.EventHandler(this.Tb_setcode3TextChanged);
// //
// tb_setcode4 // tb_setcode4
// //
this.tb_setcode4.Anchor = System.Windows.Forms.AnchorStyles.Top; this.tb_setcode4.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.tb_setcode4.Location = new System.Drawing.Point(512, 232); this.tb_setcode4.Location = new System.Drawing.Point(512, 232);
this.tb_setcode4.MaxLength = 4; this.tb_setcode4.MaxLength = 4;
this.tb_setcode4.Name = "tb_setcode4"; this.tb_setcode4.Name = "tb_setcode4";
this.tb_setcode4.Size = new System.Drawing.Size(30, 21); this.tb_setcode4.Size = new System.Drawing.Size(30, 21);
this.tb_setcode4.TabIndex = 18; this.tb_setcode4.TabIndex = 18;
this.tb_setcode4.Text = "0"; this.tb_setcode4.Text = "0";
this.tb_setcode4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.tb_setcode4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.tb_setcode4.TextChanged += new System.EventHandler(this.Tb_setcode4TextChanged); this.tb_setcode4.TextChanged += new System.EventHandler(this.Tb_setcode4TextChanged);
// //
// lb_cardcode // lb_cardcode
// //
this.lb_cardcode.Anchor = System.Windows.Forms.AnchorStyles.Top; this.lb_cardcode.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.lb_cardcode.AutoSize = true; this.lb_cardcode.AutoSize = true;
this.lb_cardcode.Location = new System.Drawing.Point(405, 288); this.lb_cardcode.Location = new System.Drawing.Point(405, 288);
this.lb_cardcode.Name = "lb_cardcode"; this.lb_cardcode.Name = "lb_cardcode";
this.lb_cardcode.Size = new System.Drawing.Size(59, 12); this.lb_cardcode.Size = new System.Drawing.Size(59, 12);
this.lb_cardcode.TabIndex = 7; this.lb_cardcode.TabIndex = 7;
this.lb_cardcode.Text = "Card Code"; this.lb_cardcode.Text = "Card Code";
// //
// DataEditForm // DataEditForm
// //
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.ClientSize = new System.Drawing.Size(860, 568); this.ClientSize = new System.Drawing.Size(860, 568);
this.Controls.Add(this.tb_setcode4); this.Controls.Add(this.tb_setcode4);
this.Controls.Add(this.tb_setcode3); this.Controls.Add(this.tb_setcode3);
this.Controls.Add(this.tb_setcode2); this.Controls.Add(this.tb_setcode2);
this.Controls.Add(this.tb_setcode1); this.Controls.Add(this.tb_setcode1);
this.Controls.Add(this.btn_img); this.Controls.Add(this.btn_img);
this.Controls.Add(this.pl_image); this.Controls.Add(this.pl_image);
this.Controls.Add(this.pl_category); this.Controls.Add(this.pl_category);
this.Controls.Add(this.pl_cardtype); this.Controls.Add(this.pl_cardtype);
this.Controls.Add(this.lb_types); this.Controls.Add(this.lb_types);
this.Controls.Add(this.lb_tiptexts); this.Controls.Add(this.lb_tiptexts);
this.Controls.Add(this.lb_categorys); this.Controls.Add(this.lb_categorys);
this.Controls.Add(this.tb_edittext); this.Controls.Add(this.tb_edittext);
this.Controls.Add(this.tb_pagenum); this.Controls.Add(this.tb_pagenum);
this.Controls.Add(this.tb_def); this.Controls.Add(this.tb_def);
this.Controls.Add(this.tb_pright); this.Controls.Add(this.tb_pright);
this.Controls.Add(this.tb_page); this.Controls.Add(this.tb_page);
this.Controls.Add(this.tb_cardalias); this.Controls.Add(this.tb_cardalias);
this.Controls.Add(this.tb_cardcode); this.Controls.Add(this.tb_cardcode);
this.Controls.Add(this.tb_atk); this.Controls.Add(this.tb_atk);
this.Controls.Add(this.lb4); this.Controls.Add(this.lb4);
this.Controls.Add(this.lb_cardcode); this.Controls.Add(this.lb_cardcode);
this.Controls.Add(this.lb_cardalias); this.Controls.Add(this.lb_cardalias);
this.Controls.Add(this.tb_pleft); this.Controls.Add(this.tb_pleft);
this.Controls.Add(this.lb5); this.Controls.Add(this.lb5);
this.Controls.Add(this.lb_atkdef); this.Controls.Add(this.lb_atkdef);
this.Controls.Add(this.lb2); this.Controls.Add(this.lb2);
this.Controls.Add(this.lb_pleft_right); this.Controls.Add(this.lb_pleft_right);
this.Controls.Add(this.lb_scripttext); this.Controls.Add(this.lb_scripttext);
this.Controls.Add(this.btn_reset); this.Controls.Add(this.btn_reset);
this.Controls.Add(this.btn_lua); this.Controls.Add(this.btn_lua);
this.Controls.Add(this.btn_serach); this.Controls.Add(this.btn_serach);
this.Controls.Add(this.btn_del); this.Controls.Add(this.btn_del);
this.Controls.Add(this.btn_undo); this.Controls.Add(this.btn_undo);
this.Controls.Add(this.btn_mod); this.Controls.Add(this.btn_mod);
this.Controls.Add(this.btn_add); this.Controls.Add(this.btn_add);
this.Controls.Add(this.btn_PageDown); this.Controls.Add(this.btn_PageDown);
this.Controls.Add(this.btn_PageUp); this.Controls.Add(this.btn_PageUp);
this.Controls.Add(this.tb_cardtext); this.Controls.Add(this.tb_cardtext);
this.Controls.Add(this.tb_cardname); this.Controls.Add(this.tb_cardname);
this.Controls.Add(this.cb_setname3); this.Controls.Add(this.cb_setname3);
this.Controls.Add(this.cb_setname1); this.Controls.Add(this.cb_setname1);
this.Controls.Add(this.cb_cardrace); this.Controls.Add(this.cb_cardrace);
this.Controls.Add(this.cb_cardrule); this.Controls.Add(this.cb_cardrule);
this.Controls.Add(this.cb_setname4); this.Controls.Add(this.cb_setname4);
this.Controls.Add(this.cb_setname2); this.Controls.Add(this.cb_setname2);
this.Controls.Add(this.cb_cardlevel); this.Controls.Add(this.cb_cardlevel);
this.Controls.Add(this.cb_cardattribute); this.Controls.Add(this.cb_cardattribute);
this.Controls.Add(this.lv_cardlist); this.Controls.Add(this.lv_cardlist);
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.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MainMenuStrip = this.menuStrip1; this.MainMenuStrip = this.mainMenu;
this.MaximizeBox = false; this.MaximizeBox = false;
this.Name = "DataEditForm"; this.Name = "DataEditForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "DataEditorX"; this.Text = "DataEditorX";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DataEditFormFormClosing); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DataEditFormFormClosing);
this.Load += new System.EventHandler(this.DataEditFormLoad); this.Load += new System.EventHandler(this.DataEditFormLoad);
this.Enter += new System.EventHandler(this.DataEditFormEnter); this.Enter += new System.EventHandler(this.DataEditFormEnter);
this.menuStrip1.ResumeLayout(false); this.mainMenu.ResumeLayout(false);
this.menuStrip1.PerformLayout(); this.mainMenu.PerformLayout();
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout(); this.PerformLayout();
} }
private System.Windows.Forms.ToolStripMenuItem menuitem_importmseimg; private System.Windows.Forms.ToolStripMenuItem menuitem_importmseimg;
private System.Windows.Forms.ToolStripMenuItem menuitem_exportdata; private System.Windows.Forms.ToolStripMenuItem menuitem_exportdata;
...@@ -1050,6 +1051,6 @@ private void InitializeComponent() ...@@ -1050,6 +1051,6 @@ private void InitializeComponent()
private System.Windows.Forms.ToolStripMenuItem menuitem_readimages; private System.Windows.Forms.ToolStripMenuItem menuitem_readimages;
private System.Windows.Forms.ToolStripMenuItem menuitem_readydk; private System.Windows.Forms.ToolStripMenuItem menuitem_readydk;
private System.Windows.Forms.ToolStripMenuItem menuitem_copyto; private System.Windows.Forms.ToolStripMenuItem menuitem_copyto;
private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.MenuStrip mainMenu;
} }
} }
...@@ -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