亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? formmain.cs

?? 一個C#開發的簡繁體內碼轉換系統。對做內碼轉換的朋友會有一定幫助。
?? CS
?? 第 1 頁 / 共 2 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace Unicode_Gb2312
{
	/// <summary>
	/// Summary description for Form1.
	/// </summary>
	public class FormMain : System.Windows.Forms.Form
	{
		private System.Windows.Forms.Button button_Select;
		private System.Windows.Forms.FolderBrowserDialog pathBrowser;
		private System.Windows.Forms.TextBox tBFilePath;
		private System.Windows.Forms.CheckedListBox cLB_FilesList;
		private System.Windows.Forms.CheckBox cbSelectAll;
		private System.Windows.Forms.Button btGBtoUTF8;
		private System.Windows.Forms.Button btUTF8toGB;
		private System.Windows.Forms.ProgressBar pBTranStatus;
		private System.Windows.Forms.Label lbCurFile;
		private System.Windows.Forms.TextBox tbTargetPath;
		private System.Windows.Forms.Button btTargetPate;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.FolderBrowserDialog fbdTargetPath;
		private System.Windows.Forms.CheckBox cbReplaceCodePage;
		private System.Windows.Forms.Button btBig5ToGb2312;
		private System.Windows.Forms.Button btGb2312ToBig5;
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.Container components = null;

		public FormMain()
		{
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();

			//
			// TODO: Add any constructor code after InitializeComponent call
			//
		}

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if (components != null) 
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows Form Designer generated code
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FormMain));
			this.cLB_FilesList = new System.Windows.Forms.CheckedListBox();
			this.pathBrowser = new System.Windows.Forms.FolderBrowserDialog();
			this.button_Select = new System.Windows.Forms.Button();
			this.tBFilePath = new System.Windows.Forms.TextBox();
			this.cbSelectAll = new System.Windows.Forms.CheckBox();
			this.btGBtoUTF8 = new System.Windows.Forms.Button();
			this.btUTF8toGB = new System.Windows.Forms.Button();
			this.pBTranStatus = new System.Windows.Forms.ProgressBar();
			this.lbCurFile = new System.Windows.Forms.Label();
			this.tbTargetPath = new System.Windows.Forms.TextBox();
			this.btTargetPate = new System.Windows.Forms.Button();
			this.label1 = new System.Windows.Forms.Label();
			this.fbdTargetPath = new System.Windows.Forms.FolderBrowserDialog();
			this.cbReplaceCodePage = new System.Windows.Forms.CheckBox();
			this.btBig5ToGb2312 = new System.Windows.Forms.Button();
			this.btGb2312ToBig5 = new System.Windows.Forms.Button();
			this.SuspendLayout();
			// 
			// cLB_FilesList
			// 
			this.cLB_FilesList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.cLB_FilesList.CheckOnClick = true;
			this.cLB_FilesList.HorizontalScrollbar = true;
			this.cLB_FilesList.Location = new System.Drawing.Point(8, 32);
			this.cLB_FilesList.Name = "cLB_FilesList";
			this.cLB_FilesList.Size = new System.Drawing.Size(307, 210);
			this.cLB_FilesList.TabIndex = 0;
			// 
			// pathBrowser
			// 
			this.pathBrowser.Description = "This is Translation Source Path. Pleas Select...";
			this.pathBrowser.ShowNewFolderButton = false;
			// 
			// button_Select
			// 
			this.button_Select.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.button_Select.Location = new System.Drawing.Point(240, 8);
			this.button_Select.Name = "button_Select";
			this.button_Select.Size = new System.Drawing.Size(75, 21);
			this.button_Select.TabIndex = 3;
			this.button_Select.Text = "Path...";
			this.button_Select.Click += new System.EventHandler(this.button1_Click);
			// 
			// tBFilePath
			// 
			this.tBFilePath.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.tBFilePath.Location = new System.Drawing.Point(8, 8);
			this.tBFilePath.Name = "tBFilePath";
			this.tBFilePath.Size = new System.Drawing.Size(233, 21);
			this.tBFilePath.TabIndex = 2;
			this.tBFilePath.Text = "";
			this.tBFilePath.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tBFilePath_KeyDown);
			// 
			// cbSelectAll
			// 
			this.cbSelectAll.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
			this.cbSelectAll.Location = new System.Drawing.Point(8, 248);
			this.cbSelectAll.Name = "cbSelectAll";
			this.cbSelectAll.Size = new System.Drawing.Size(96, 16);
			this.cbSelectAll.TabIndex = 4;
			this.cbSelectAll.Text = "Selected All";
			this.cbSelectAll.CheckedChanged += new System.EventHandler(this.cbSelectAll_CheckedChanged);
			// 
			// btGBtoUTF8
			// 
			this.btGBtoUTF8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btGBtoUTF8.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.btGBtoUTF8.Location = new System.Drawing.Point(320, 56);
			this.btGBtoUTF8.Name = "btGBtoUTF8";
			this.btGBtoUTF8.Size = new System.Drawing.Size(148, 32);
			this.btGBtoUTF8.TabIndex = 5;
			this.btGBtoUTF8.Text = "GB2312 To UTF8";
			this.btGBtoUTF8.Click += new System.EventHandler(this.btGBtoUTF8_Click);
			// 
			// btUTF8toGB
			// 
			this.btUTF8toGB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btUTF8toGB.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.btUTF8toGB.Location = new System.Drawing.Point(320, 96);
			this.btUTF8toGB.Name = "btUTF8toGB";
			this.btUTF8toGB.Size = new System.Drawing.Size(148, 32);
			this.btUTF8toGB.TabIndex = 6;
			this.btUTF8toGB.Text = "UTF8 To GB2312";
			this.btUTF8toGB.Click += new System.EventHandler(this.btUTF8toGB_Click);
			// 
			// pBTranStatus
			// 
			this.pBTranStatus.Location = new System.Drawing.Point(328, 240);
			this.pBTranStatus.Name = "pBTranStatus";
			this.pBTranStatus.Size = new System.Drawing.Size(136, 24);
			this.pBTranStatus.Step = 1;
			this.pBTranStatus.TabIndex = 7;
			// 
			// lbCurFile
			// 
			this.lbCurFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.lbCurFile.Location = new System.Drawing.Point(328, 224);
			this.lbCurFile.Name = "lbCurFile";
			this.lbCurFile.Size = new System.Drawing.Size(136, 16);
			this.lbCurFile.TabIndex = 8;
			this.lbCurFile.Text = "Current File...";
			// 
			// tbTargetPath
			// 
			this.tbTargetPath.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.tbTargetPath.Location = new System.Drawing.Point(320, 24);
			this.tbTargetPath.Name = "tbTargetPath";
			this.tbTargetPath.TabIndex = 9;
			this.tbTargetPath.Text = "";
			// 
			// btTargetPate
			// 
			this.btTargetPate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btTargetPate.Location = new System.Drawing.Point(419, 24);
			this.btTargetPate.Name = "btTargetPate";
			this.btTargetPate.Size = new System.Drawing.Size(48, 21);
			this.btTargetPate.TabIndex = 10;
			this.btTargetPate.Text = "Path...";
			this.btTargetPate.Click += new System.EventHandler(this.btTargetPate_Click);
			// 
			// label1
			// 
			this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.label1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
			this.label1.Location = new System.Drawing.Point(320, 8);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(88, 14);
			this.label1.TabIndex = 11;
			this.label1.Text = "Target Path:";
			// 
			// fbdTargetPath
			// 
			this.fbdTargetPath.Description = "This is Translation Target Path. Pleas Selected Or Create New..";
			// 
			// cbReplaceCodePage
			// 
			this.cbReplaceCodePage.Checked = true;
			this.cbReplaceCodePage.CheckState = System.Windows.Forms.CheckState.Checked;
			this.cbReplaceCodePage.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
			this.cbReplaceCodePage.Location = new System.Drawing.Point(112, 248);
			this.cbReplaceCodePage.Name = "cbReplaceCodePage";
			this.cbReplaceCodePage.Size = new System.Drawing.Size(120, 16);
			this.cbReplaceCodePage.TabIndex = 13;
			this.cbReplaceCodePage.Text = "Replace CodePage";
			// 
			// btBig5ToGb2312
			// 
			this.btBig5ToGb2312.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btBig5ToGb2312.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.btBig5ToGb2312.Location = new System.Drawing.Point(320, 136);
			this.btBig5ToGb2312.Name = "btBig5ToGb2312";
			this.btBig5ToGb2312.Size = new System.Drawing.Size(148, 32);
			this.btBig5ToGb2312.TabIndex = 14;
			this.btBig5ToGb2312.Text = "BIG5 To GB2312";
			this.btBig5ToGb2312.Click += new System.EventHandler(this.btBig5ToGb2312_Click);
			// 
			// btGb2312ToBig5
			// 
			this.btGb2312ToBig5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btGb2312ToBig5.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.btGb2312ToBig5.Location = new System.Drawing.Point(320, 176);
			this.btGb2312ToBig5.Name = "btGb2312ToBig5";
			this.btGb2312ToBig5.Size = new System.Drawing.Size(148, 32);
			this.btGb2312ToBig5.TabIndex = 15;
			this.btGb2312ToBig5.Text = "GB2312 To BIG5";
			this.btGb2312ToBig5.Click += new System.EventHandler(this.btGb2312ToBig5_Click);
			// 
			// FormMain
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.ClientSize = new System.Drawing.Size(480, 269);
			this.Controls.Add(this.btGb2312ToBig5);
			this.Controls.Add(this.btBig5ToGb2312);
			this.Controls.Add(this.cbReplaceCodePage);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.btTargetPate);
			this.Controls.Add(this.tbTargetPath);
			this.Controls.Add(this.lbCurFile);
			this.Controls.Add(this.pBTranStatus);
			this.Controls.Add(this.btUTF8toGB);
			this.Controls.Add(this.btGBtoUTF8);
			this.Controls.Add(this.cbSelectAll);
			this.Controls.Add(this.tBFilePath);
			this.Controls.Add(this.button_Select);
			this.Controls.Add(this.cLB_FilesList);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "FormMain";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Unicode Gb2312";
			this.ResumeLayout(false);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产精品精华液2区45| 欧美在线高清视频| 亚洲一区免费视频| 1000部国产精品成人观看| 国产偷v国产偷v亚洲高清| 精品国产免费一区二区三区香蕉| 欧美挠脚心视频网站| 在线观看视频一区| 在线免费一区三区| 91电影在线观看| 91黄色激情网站| 欧美日韩一区二区三区高清| 欧美亚洲一区二区在线观看| 欧美亚一区二区| 欧美日韩久久一区| 91麻豆精品国产91久久久久| 日韩视频免费观看高清完整版| 欧美日本一区二区| 欧美大胆人体bbbb| 国产日韩精品久久久| 国产欧美日韩在线观看| 国产精品久久午夜夜伦鲁鲁| 日韩伦理电影网| 亚洲国产成人高清精品| 五月天欧美精品| 久久成人久久爱| 国产精品一区在线观看你懂的| 国产成人在线视频免费播放| 92国产精品观看| 欧美日韩精品二区第二页| 欧美一级夜夜爽| 国产日韩欧美综合在线| 亚洲三级在线观看| 天堂成人国产精品一区| 国产精品亚洲一区二区三区在线 | 日韩欧美一级二级| 精品成人在线观看| 午夜伦欧美伦电影理论片| 免费高清视频精品| 国产成人亚洲综合色影视| 9人人澡人人爽人人精品| 欧美日韩黄色一区二区| 久久免费电影网| 亚洲一区免费视频| 国内精品免费在线观看| 91女厕偷拍女厕偷拍高清| 67194成人在线观看| 国产女人aaa级久久久级 | 一区二区三区在线免费观看| 五月综合激情日本mⅴ| 国产毛片精品视频| 欧美少妇xxx| 国产欧美精品一区二区三区四区| 亚洲一区二三区| 国产91精品一区二区麻豆亚洲| 欧美午夜电影网| 欧美国产视频在线| 日本大胆欧美人术艺术动态| 99re视频这里只有精品| 精品国产青草久久久久福利| 亚洲一卡二卡三卡四卡无卡久久| 国产麻豆午夜三级精品| 欧美日韩精品福利| 夜夜嗨av一区二区三区网页| 粉嫩蜜臀av国产精品网站| 日韩欧美精品三级| 午夜欧美在线一二页| av一区二区三区黑人| 国产亚洲综合在线| 久久激情五月激情| 91精品福利在线一区二区三区 | 国产精品福利一区| 国产黄人亚洲片| 精品免费一区二区三区| 日韩一区欧美二区| 欧美日韩一区国产| 亚洲男人电影天堂| 成人av在线影院| 欧美激情一区二区三区全黄| 色综合色狠狠综合色| 久久精品日产第一区二区三区高清版| 秋霞午夜av一区二区三区| 色婷婷久久一区二区三区麻豆| 中文字幕欧美激情一区| 成人综合婷婷国产精品久久蜜臀| 久久精品亚洲乱码伦伦中文| 国模套图日韩精品一区二区| 日韩精品中文字幕一区二区三区| 欧美a级一区二区| 日韩欧美在线1卡| 久久9热精品视频| 久久综合久久99| 国产精品1024| 国产精品免费av| 色综合色综合色综合| 亚洲最大成人综合| 欧美日韩中文另类| 美女久久久精品| 久久品道一品道久久精品| 国产suv一区二区三区88区| 欧美videossexotv100| 欧美色综合天天久久综合精品| 久久这里只有精品首页| 国产乱子轮精品视频| 中文字幕欧美日本乱码一线二线| 91免费观看视频| 亚洲午夜久久久久中文字幕久| 56国语精品自产拍在线观看| 久久99精品国产.久久久久久| 久久久久国色av免费看影院| 9久草视频在线视频精品| 亚洲综合网站在线观看| 国产精品国产三级国产普通话三级| 99在线精品视频| 视频一区视频二区中文字幕| 精品成人一区二区三区| 99久久精品国产导航| 亚洲成人综合视频| 26uuu成人网一区二区三区| 白白色亚洲国产精品| 五月激情综合网| 国产午夜精品理论片a级大结局 | 26uuu国产在线精品一区二区| 97久久精品人人爽人人爽蜜臀 | 色综合网色综合| 麻豆精品视频在线观看免费| 亚洲欧美在线观看| 日韩一区二区三区电影| 成人av免费观看| 男人的j进女人的j一区| 国产精品国产三级国产aⅴ中文 | 精品嫩草影院久久| 欧美性猛片aaaaaaa做受| 国产精品一区二区久久不卡| 亚洲成年人网站在线观看| 国产精品欧美极品| 日韩写真欧美这视频| 欧美写真视频网站| 99视频在线精品| 粉嫩av亚洲一区二区图片| 日韩成人一区二区| 亚洲精品久久久蜜桃| 国产精品免费看片| 久久久久高清精品| 日韩三级.com| 国产精品你懂的| 91麻豆精品91久久久久同性| 欧洲另类一二三四区| 国产91高潮流白浆在线麻豆| 久久精品国产亚洲一区二区三区 | 色8久久人人97超碰香蕉987| 国产成人亚洲综合色影视| 丝袜美腿亚洲一区| 亚洲视频在线一区| 久久精品水蜜桃av综合天堂| 日韩一级高清毛片| 欧美一三区三区四区免费在线看| 91成人免费网站| 91福利区一区二区三区| 色综合天天狠狠| 一本大道综合伊人精品热热| 99国产精品久久久久久久久久| 国产成人av电影在线观看| 国产一区二区三区四区五区美女| 麻豆91精品视频| 久久精品72免费观看| 奇米综合一区二区三区精品视频| 一区二区三区久久| 亚洲精品videosex极品| 亚洲久草在线视频| 一区二区三区四区蜜桃| 亚洲午夜在线视频| 五月天亚洲婷婷| 久久国产麻豆精品| 国内成人免费视频| 成人一区二区三区视频| 成人蜜臀av电影| 91久久精品日日躁夜夜躁欧美| 日本大香伊一区二区三区| www..com久久爱| 欧美午夜电影在线播放| 91精品国产乱码久久蜜臀| 久久综合久久综合久久| 国产精品水嫩水嫩| 一区二区三区视频在线看| 日日嗨av一区二区三区四区| 久久99久久久久| 成人国产在线观看| 欧美日韩在线播放| 久久精品一区八戒影视| 中文字幕一区二区不卡| 日韩精品每日更新| 国产精品99久| 国产三级精品视频| 亚洲欧美日韩中文字幕一区二区三区| 无码av免费一区二区三区试看 | 久久精品一区蜜桃臀影院| 亚洲日本成人在线观看| 石原莉奈一区二区三区在线观看 | 亚洲国产精品成人综合 |