亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
丁香一区二区三区| 亚洲精品成人在线| 美女网站一区二区| 在线观看国产一区二区| 18成人在线观看| 本田岬高潮一区二区三区| 国产亚洲制服色| 国产综合色精品一区二区三区| 91麻豆精品国产91| 日韩成人免费电影| 欧美丰满少妇xxxbbb| 视频一区中文字幕| 91精品国产全国免费观看| 中文字幕视频一区二区三区久| 国产成人综合在线播放| 国产欧美一区二区在线观看| 国产精品一卡二卡在线观看| 久久综合久久综合亚洲| 国产一区不卡精品| 亚洲精品在线电影| 成人看片黄a免费看在线| 国产精品美女一区二区| 94色蜜桃网一区二区三区| 亚洲视频中文字幕| 欧美在线free| 亚洲第一久久影院| 日韩视频免费观看高清完整版在线观看| 日日摸夜夜添夜夜添亚洲女人| 69久久夜色精品国产69蝌蚪网| 蜜臀99久久精品久久久久久软件| 欧美一区二区成人6969| 欧美a级理论片| 久久精品视频一区二区三区| av电影在线观看不卡| 亚洲制服丝袜在线| 欧美成人一区二区三区| 不卡av在线网| 亚洲大片在线观看| 欧美变态口味重另类| 丰满白嫩尤物一区二区| 一区二区三区日本| 欧美mv和日韩mv的网站| 国产成人综合亚洲网站| 亚洲欧美偷拍三级| 91精品视频网| 成人妖精视频yjsp地址| 午夜精品福利在线| 久久久亚洲精华液精华液精华液| 91色综合久久久久婷婷| 亚洲成人免费视| 国产日产欧美精品一区二区三区| 欧美主播一区二区三区| 狠狠色丁香久久婷婷综合丁香| 亚洲欧美一区二区久久| 精品免费日韩av| av不卡免费电影| 久久精品理论片| 亚洲欧美成人一区二区三区| 日韩三级视频在线观看| 色综合久久久久综合| 国产在线麻豆精品观看| 亚洲一区二区欧美| 国产蜜臀97一区二区三区| 欧美三区免费完整视频在线观看| 粉嫩av一区二区三区| 青草av.久久免费一区| 亚洲欧美色图小说| 久久久精品国产99久久精品芒果| 欧美电影一区二区| 91色视频在线| 国产美女一区二区| 日韩激情视频在线观看| 中文一区二区在线观看| 欧美va日韩va| 欧美男男青年gay1069videost| 9色porny自拍视频一区二区| 91啪九色porn原创视频在线观看| 日韩va亚洲va欧美va久久| 国产精品久久久久久久第一福利| 精品久久久网站| 6080日韩午夜伦伦午夜伦| 在线观看日韩高清av| 91日韩在线专区| 成人动漫av在线| 国产成人精品三级麻豆| 激情小说欧美图片| 日韩av在线免费观看不卡| 亚洲欧美激情一区二区| 综合欧美一区二区三区| 国产精品国产三级国产普通话蜜臀 | 视频一区视频二区在线观看| 久久久蜜桃精品| 精品伦理精品一区| 精品1区2区在线观看| 日韩精品中午字幕| 91精品视频网| 欧美浪妇xxxx高跟鞋交| 欧美日韩国产欧美日美国产精品| 在线一区二区三区四区五区| 色综合色综合色综合| 91免费国产视频网站| 91丨porny丨在线| 色8久久精品久久久久久蜜| 色先锋资源久久综合| 日本高清免费不卡视频| 欧美私模裸体表演在线观看| 色呦呦一区二区三区| 91久久精品一区二区三区| 欧美性极品少妇| 欧美日韩亚洲综合一区| 久久久久久电影| 一区二区三区中文字幕电影 | 精品人伦一区二区色婷婷| 久久久国产午夜精品 | 久久久久久久久久看片| 久久超碰97中文字幕| 国产精品一二三在| 9i看片成人免费高清| 777色狠狠一区二区三区| 久久久99精品久久| 亚洲一区视频在线| 国产精一区二区三区| 欧美色图免费看| 国产丝袜在线精品| 亚洲h动漫在线| 国产91精品久久久久久久网曝门| 欧美日韩久久不卡| 国产精品欧美精品| 青青草国产精品亚洲专区无| 99精品在线观看视频| 欧美一区二区三区小说| 亚洲欧美色综合| 国产一区二区在线影院| 欧美日韩精品欧美日韩精品| 欧美国产一区二区在线观看| 日韩av电影免费观看高清完整版在线观看 | 欧美精品一区二区在线播放| 亚洲美女少妇撒尿| 国产伦理精品不卡| 51精品秘密在线观看| 最新中文字幕一区二区三区| 国内精品伊人久久久久影院对白| 欧美性大战久久久久久久蜜臀| 国产日韩欧美精品一区| 人人超碰91尤物精品国产| 色88888久久久久久影院按摩 | 国产精品成人一区二区三区夜夜夜| 日韩avvvv在线播放| 欧美在线一区二区| 中文字幕佐山爱一区二区免费| 国产一区二区三区在线观看精品 | 日本亚洲一区二区| 在线影院国内精品| 亚洲美女屁股眼交3| 国产成人精品亚洲777人妖 | 午夜在线电影亚洲一区| 色综合久久久久| 国产精品毛片大码女人| 国产在线不卡一区| 欧美精品一区在线观看| 狠狠狠色丁香婷婷综合激情| 欧美成人艳星乳罩| 精品在线观看免费| 日韩一级成人av| 麻豆一区二区在线| 7777精品伊人久久久大香线蕉经典版下载 | 亚洲日本电影在线| 99re热视频这里只精品| 国产精品成人网| 成人av影院在线| 亚洲欧洲精品一区二区三区不卡| 国产69精品久久久久777| 国产日韩精品久久久| 国产成人在线视频网址| 中文av一区特黄| 99久久婷婷国产精品综合| 亚洲少妇中出一区| 91福利社在线观看| 亚洲综合精品自拍| 在线播放国产精品二区一二区四区| 婷婷综合五月天| 日韩一区二区三区观看| 国产综合色视频| 中文字幕巨乱亚洲| 色屁屁一区二区| 香蕉久久夜色精品国产使用方法| 欧美一级生活片| 国产精品456露脸| 亚洲天堂久久久久久久| 欧美一a一片一级一片| 日本一不卡视频| 欧美激情资源网| 欧美性猛交xxxxxx富婆| 麻豆精品一区二区| 国产精品欧美经典| 欧美日韩亚洲国产综合| 黄网站免费久久| 日韩一区中文字幕| 在线播放亚洲一区| 成人做爰69片免费看网站|