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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? frmmain.cs

?? 在C#中直接打開Word文件并編輯
?? CS
?? 第 1 頁 / 共 2 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace WordInDOTNET
{
	/// <summary>
	/// Summary description for Form1.
	/// </summary>
	public class frmMain : System.Windows.Forms.Form
	{
		private System.Windows.Forms.Button button1;
		private WinWordControl.WinWordControl objWinWordControl;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.TextBox txtClientName;
		private System.Windows.Forms.TextBox txtRecNo;
		private System.Windows.Forms.Button btnClientName;
		private System.Windows.Forms.Button btnRecNo;
		private System.Windows.Forms.Button btnCurrentDate;
		private System.Windows.Forms.Button btnMarkError;
		private System.Windows.Forms.Button btnRemoveError;
		private System.Windows.Forms.Button btnSaveDocument;
		private System.Windows.Forms.Button btnRemoveBookMarks;
		private System.Windows.Forms.Button btnPrintView;
		private System.Windows.Forms.Button btnNormalView;
		private System.Windows.Forms.Button btnWebView;
		private System.Windows.Forms.Button btnShowMenuBar;
		private System.Windows.Forms.OpenFileDialog openFileDialog1;
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.Container components = null;

		public frmMain()
		{
			//
			// 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()
		{
			this.button1 = new System.Windows.Forms.Button();
			this.objWinWordControl = new WinWordControl.WinWordControl();
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.txtClientName = new System.Windows.Forms.TextBox();
			this.txtRecNo = new System.Windows.Forms.TextBox();
			this.btnClientName = new System.Windows.Forms.Button();
			this.btnRecNo = new System.Windows.Forms.Button();
			this.btnCurrentDate = new System.Windows.Forms.Button();
			this.btnMarkError = new System.Windows.Forms.Button();
			this.btnRemoveError = new System.Windows.Forms.Button();
			this.btnSaveDocument = new System.Windows.Forms.Button();
			this.btnRemoveBookMarks = new System.Windows.Forms.Button();
			this.btnPrintView = new System.Windows.Forms.Button();
			this.btnNormalView = new System.Windows.Forms.Button();
			this.btnWebView = new System.Windows.Forms.Button();
			this.btnShowMenuBar = new System.Windows.Forms.Button();
			this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
			this.SuspendLayout();
			// 
			// button1
			// 
			this.button1.Location = new System.Drawing.Point(16, 8);
			this.button1.Name = "button1";
			this.button1.Size = new System.Drawing.Size(96, 23);
			this.button1.TabIndex = 1;
			this.button1.Text = "Load Document";
			this.button1.Click += new System.EventHandler(this.button1_Click);
			// 
			// objWinWordControl
			// 
			this.objWinWordControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.objWinWordControl.BackColor = System.Drawing.SystemColors.ActiveCaption;
			this.objWinWordControl.Location = new System.Drawing.Point(168, 0);
			this.objWinWordControl.Name = "objWinWordControl";
			this.objWinWordControl.Size = new System.Drawing.Size(544, 517);
			this.objWinWordControl.TabIndex = 3;
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(8, 48);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(80, 16);
			this.label1.TabIndex = 4;
			this.label1.Text = "Client\'s Name";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(8, 104);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(88, 16);
			this.label2.TabIndex = 5;
			this.label2.Text = "Record Number";
			// 
			// txtClientName
			// 
			this.txtClientName.Location = new System.Drawing.Point(16, 64);
			this.txtClientName.Name = "txtClientName";
			this.txtClientName.TabIndex = 6;
			this.txtClientName.Text = "Some Name";
			// 
			// txtRecNo
			// 
			this.txtRecNo.Location = new System.Drawing.Point(16, 120);
			this.txtRecNo.Name = "txtRecNo";
			this.txtRecNo.TabIndex = 7;
			this.txtRecNo.Text = "456789123";
			// 
			// btnClientName
			// 
			this.btnClientName.Location = new System.Drawing.Point(120, 64);
			this.btnClientName.Name = "btnClientName";
			this.btnClientName.Size = new System.Drawing.Size(32, 16);
			this.btnClientName.TabIndex = 9;
			this.btnClientName.Text = "-->";
			this.btnClientName.Click += new System.EventHandler(this.btnClientName_Click);
			// 
			// btnRecNo
			// 
			this.btnRecNo.Location = new System.Drawing.Point(120, 120);
			this.btnRecNo.Name = "btnRecNo";
			this.btnRecNo.Size = new System.Drawing.Size(32, 16);
			this.btnRecNo.TabIndex = 10;
			this.btnRecNo.Text = "-->";
			this.btnRecNo.Click += new System.EventHandler(this.btnRecNo_Click);
			// 
			// btnCurrentDate
			// 
			this.btnCurrentDate.Location = new System.Drawing.Point(8, 160);
			this.btnCurrentDate.Name = "btnCurrentDate";
			this.btnCurrentDate.Size = new System.Drawing.Size(128, 24);
			this.btnCurrentDate.TabIndex = 11;
			this.btnCurrentDate.Text = "Insert Current Date";
			this.btnCurrentDate.Click += new System.EventHandler(this.btnCurrentDate_Click);
			// 
			// btnMarkError
			// 
			this.btnMarkError.Location = new System.Drawing.Point(32, 200);
			this.btnMarkError.Name = "btnMarkError";
			this.btnMarkError.TabIndex = 12;
			this.btnMarkError.Text = "Mark Error";
			this.btnMarkError.Click += new System.EventHandler(this.btnMarkError_Click);
			// 
			// btnRemoveError
			// 
			this.btnRemoveError.Location = new System.Drawing.Point(8, 240);
			this.btnRemoveError.Name = "btnRemoveError";
			this.btnRemoveError.Size = new System.Drawing.Size(152, 23);
			this.btnRemoveError.TabIndex = 15;
			this.btnRemoveError.Text = "Remove Error Highlighting";
			this.btnRemoveError.Click += new System.EventHandler(this.btnRemoveError_Click);
			// 
			// btnSaveDocument
			// 
			this.btnSaveDocument.Location = new System.Drawing.Point(24, 320);
			this.btnSaveDocument.Name = "btnSaveDocument";
			this.btnSaveDocument.Size = new System.Drawing.Size(112, 23);
			this.btnSaveDocument.TabIndex = 16;
			this.btnSaveDocument.Text = "Save Document";
			this.btnSaveDocument.Click += new System.EventHandler(this.btnSaveDocument_Click);
			// 
			// btnRemoveBookMarks
			// 
			this.btnRemoveBookMarks.Location = new System.Drawing.Point(8, 280);
			this.btnRemoveBookMarks.Name = "btnRemoveBookMarks";
			this.btnRemoveBookMarks.Size = new System.Drawing.Size(152, 23);
			this.btnRemoveBookMarks.TabIndex = 17;
			this.btnRemoveBookMarks.Text = "Remove bookmarks";
			this.btnRemoveBookMarks.Click += new System.EventHandler(this.btnRemoveBookMarks_Click);
			// 
			// btnPrintView
			// 
			this.btnPrintView.Location = new System.Drawing.Point(24, 368);
			this.btnPrintView.Name = "btnPrintView";
			this.btnPrintView.Size = new System.Drawing.Size(120, 23);
			this.btnPrintView.TabIndex = 18;
			this.btnPrintView.Text = "Print Layout View";
			this.btnPrintView.Click += new System.EventHandler(this.btnPrintView_Click);
			// 
			// btnNormalView
			// 
			this.btnNormalView.Location = new System.Drawing.Point(24, 400);
			this.btnNormalView.Name = "btnNormalView";
			this.btnNormalView.Size = new System.Drawing.Size(120, 23);
			this.btnNormalView.TabIndex = 19;
			this.btnNormalView.Text = "Normal View";
			this.btnNormalView.Click += new System.EventHandler(this.btnNormalView_Click);
			// 
			// btnWebView
			// 
			this.btnWebView.Location = new System.Drawing.Point(24, 432);
			this.btnWebView.Name = "btnWebView";
			this.btnWebView.Size = new System.Drawing.Size(120, 23);
			this.btnWebView.TabIndex = 20;
			this.btnWebView.Text = "Web View";
			this.btnWebView.Click += new System.EventHandler(this.btnWebView_Click);
			// 
			// btnShowMenuBar
			// 
			this.btnShowMenuBar.Location = new System.Drawing.Point(16, 472);
			this.btnShowMenuBar.Name = "btnShowMenuBar";
			this.btnShowMenuBar.Size = new System.Drawing.Size(136, 23);
			this.btnShowMenuBar.TabIndex = 21;
			this.btnShowMenuBar.Text = "Show MenuBar";
			this.btnShowMenuBar.Click += new System.EventHandler(this.btnShowMenuBar_Click);
			// 
			// frmMain
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(712, 517);
			this.Controls.Add(this.btnShowMenuBar);
			this.Controls.Add(this.btnWebView);
			this.Controls.Add(this.btnNormalView);
			this.Controls.Add(this.btnPrintView);
			this.Controls.Add(this.btnRemoveBookMarks);
			this.Controls.Add(this.btnSaveDocument);
			this.Controls.Add(this.btnRemoveError);
			this.Controls.Add(this.btnMarkError);
			this.Controls.Add(this.btnCurrentDate);
			this.Controls.Add(this.btnRecNo);
			this.Controls.Add(this.btnClientName);
			this.Controls.Add(this.txtRecNo);
			this.Controls.Add(this.txtClientName);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.objWinWordControl);
			this.Controls.Add(this.button1);
			this.Name = "frmMain";
			this.Text = "Main";
			this.Closing += new System.ComponentModel.CancelEventHandler(this.frmMain_Closing);
			this.Load += new System.EventHandler(this.frmMain_Load);
			this.ResumeLayout(false);

		}
		#endregion

		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		[STAThread]
		static void Main() 
		{
			Application.Run(new frmMain());
		}

		private void frmMain_Load(object sender, System.EventArgs e)
		{
		}

		/// <summary>
		/// Loads the document. If it is already loaded, it will first unload and load again.
		/// </summary>
		/// <param name="sender"></param>
		/// <param name="e"></param>
		private void button1_Click(object sender, System.EventArgs e)

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91国偷自产一区二区三区成为亚洲经典| 91色在线porny| 亚洲欧美偷拍卡通变态| 欧美夫妻性生活| 成人免费视频播放| 另类的小说在线视频另类成人小视频在线| 最近日韩中文字幕| 精品国产乱码久久久久久夜甘婷婷 | 激情都市一区二区| 一区二区三区四区蜜桃| 久久久久久夜精品精品免费| 欧美艳星brazzers| 成人黄色免费短视频| 久久精品72免费观看| 亚洲第一狼人社区| 国产精品视频第一区| 欧美一级欧美三级在线观看| 91视频免费看| 处破女av一区二区| 国产精品一区二区久激情瑜伽| 天堂蜜桃一区二区三区| 亚洲一区二区三区四区在线免费观看| 日本一区二区三区四区| 久久久青草青青国产亚洲免观| 欧美精品久久一区| 欧美色图第一页| 在线观看日韩高清av| 91蝌蚪porny成人天涯| 不卡av在线网| 成人精品免费看| 国产电影一区在线| 国产一区二区女| 黑人巨大精品欧美一区| 精品中文字幕一区二区小辣椒| 欧美激情一二三区| 国产又黄又大久久| 国内成人精品2018免费看| 久久精品国产77777蜜臀| 日本亚洲视频在线| 秋霞午夜av一区二区三区| 日韩精品一二三区| 日韩国产精品久久久| 婷婷久久综合九色综合绿巨人| 亚洲午夜在线视频| 一区二区三区四区视频精品免费| 一区二区三区在线免费| 亚洲一区在线电影| 三级成人在线视频| 激情成人午夜视频| 国产成+人+日韩+欧美+亚洲| 成人午夜在线视频| 一本大道久久精品懂色aⅴ| 91首页免费视频| 色偷偷88欧美精品久久久| 欧美在线观看一区二区| 欧美电影影音先锋| 久久久亚洲国产美女国产盗摄| 国产校园另类小说区| 亚洲欧美一区二区不卡| 亚洲国产乱码最新视频| 欧美日韩一区二区三区视频| 欧美日韩夫妻久久| 精品99999| 国产精品欧美极品| 亚洲宅男天堂在线观看无病毒| 亚洲国产精品久久人人爱蜜臀| 日韩vs国产vs欧美| 国产在线一区观看| 色拍拍在线精品视频8848| 69av一区二区三区| 久久久久久9999| 一区二区在线观看视频 | 日韩国产高清影视| 国内不卡的二区三区中文字幕| www.激情成人| 91国偷自产一区二区三区观看 | 国产在线不卡一卡二卡三卡四卡| 成人蜜臀av电影| 欧美视频日韩视频| 精品国产凹凸成av人网站| 亚洲欧美日韩久久| 老司机免费视频一区二区| a亚洲天堂av| 欧美精品vⅰdeose4hd| 国产亚洲人成网站| 午夜精品福利在线| 成人污视频在线观看| 717成人午夜免费福利电影| 久久久久免费观看| 亚洲大片免费看| 成人美女视频在线观看18| 欧美久久久久免费| 亚洲日穴在线视频| 精品一区二区三区免费视频| 91久久精品国产91性色tv| 久久久久久久久久久久久久久99| 一个色在线综合| 国产**成人网毛片九色| 91精品国产福利在线观看| 综合欧美一区二区三区| 国产精品99久久不卡二区| 欧美高清你懂得| 亚洲午夜一区二区三区| 99精品视频一区二区三区| 久久影音资源网| 奇米四色…亚洲| 欧美日韩综合色| 亚洲同性同志一二三专区| 国产激情91久久精品导航 | 最新欧美精品一区二区三区| 激情成人午夜视频| 日韩一本二本av| 午夜视频一区在线观看| 成人免费一区二区三区在线观看| 老司机午夜精品| 日韩丝袜情趣美女图片| 天天综合色天天综合| 欧美午夜不卡视频| 一区二区高清免费观看影视大全| 波多野结衣在线一区| 久久久久亚洲蜜桃| 激情六月婷婷久久| 欧美sm美女调教| 毛片av一区二区| 5566中文字幕一区二区电影| 亚洲国产欧美在线| 日本福利一区二区| 艳妇臀荡乳欲伦亚洲一区| 99re成人精品视频| 中文字幕一区二区日韩精品绯色| 国产一区二区电影| 久久久九九九九| 国产精品1区2区3区| 久久综合色一综合色88| 久久精品国产免费看久久精品| 日韩亚洲欧美综合| 精品综合久久久久久8888| 久久久久久久久久久久久久久99 | 亚洲香肠在线观看| 欧美日韩在线亚洲一区蜜芽| 亚洲在线视频网站| 欧美日韩欧美一区二区| 午夜精品在线视频一区| 欧美美女喷水视频| 日韩国产欧美视频| 欧美成人三级在线| 国产成人一级电影| 国产精品美女久久久久久久久| 成人爱爱电影网址| 一区二区三区欧美激情| 欧美日韩精品欧美日韩精品 | 91蜜桃免费观看视频| 亚洲精品免费视频| 欧美肥妇free| 国产一区二区剧情av在线| 国产精品色在线观看| 91在线云播放| 日欧美一区二区| 精品欧美乱码久久久久久1区2区| 国产麻豆精品久久一二三| 亚洲欧洲色图综合| 欧美另类高清zo欧美| 老司机免费视频一区二区| 国产精品久久久久影院| 欧美亚一区二区| 久久成人免费日本黄色| 国产精品乱码人人做人人爱| 在线视频观看一区| 日本视频在线一区| 欧美国产日本视频| 欧美亚洲一区二区在线| 久久er99热精品一区二区| 国产女主播在线一区二区| 欧美伊人久久久久久久久影院 | 国产精品自在欧美一区| 最新国产精品久久精品| 91精品国产欧美日韩| proumb性欧美在线观看| 五月婷婷久久综合| 国产色产综合色产在线视频| 欧美无砖砖区免费| 国产.欧美.日韩| 视频一区欧美精品| 日韩理论片网站| 久久网站最新地址| 欧美日韩在线一区二区| 国v精品久久久网| 日本最新不卡在线| 亚洲欧美日韩一区二区| 久久色视频免费观看| 欧美三电影在线| kk眼镜猥琐国模调教系列一区二区 | 国产精品国产三级国产普通话三级| 欧美人与z0zoxxxx视频| 99精品热视频| 国产精品夜夜嗨| 奇米亚洲午夜久久精品| 亚洲综合色成人| 亚洲图片欧美激情| 欧美激情一区二区|