123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- namespace TesseractScreenReader
- {
- partial class TsrMainForm
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.ReadClipBoardPicture = new System.Windows.Forms.Button();
- this.WatchingClipBoard = new System.Windows.Forms.CheckBox();
- this.OutputRichTextBox = new System.Windows.Forms.RichTextBox();
- this.SpaceCheckBox = new System.Windows.Forms.CheckBox();
- this.ClearButton = new System.Windows.Forms.Button();
- this.TopMostCheckBox = new System.Windows.Forms.CheckBox();
- this.SuspendLayout();
- //
- // ReadClipBoardPicture
- //
- this.ReadClipBoardPicture.Location = new System.Drawing.Point(102, 9);
- this.ReadClipBoardPicture.Name = "ReadClipBoardPicture";
- this.ReadClipBoardPicture.Size = new System.Drawing.Size(130, 23);
- this.ReadClipBoardPicture.TabIndex = 0;
- this.ReadClipBoardPicture.Text = "读取剪贴板图片";
- this.ReadClipBoardPicture.UseVisualStyleBackColor = true;
- this.ReadClipBoardPicture.Click += new System.EventHandler(this.ReadClipBoardPicture_Click);
- //
- // WatchingClipBoard
- //
- this.WatchingClipBoard.AutoSize = true;
- this.WatchingClipBoard.Location = new System.Drawing.Point(12, 12);
- this.WatchingClipBoard.Name = "WatchingClipBoard";
- this.WatchingClipBoard.Size = new System.Drawing.Size(84, 16);
- this.WatchingClipBoard.TabIndex = 1;
- this.WatchingClipBoard.Text = "监视剪贴板";
- this.WatchingClipBoard.UseVisualStyleBackColor = true;
- this.WatchingClipBoard.CheckedChanged += new System.EventHandler(this.WatchingClipBoard_CheckedChanged);
- //
- // OutputRichTextBox
- //
- this.OutputRichTextBox.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.OutputRichTextBox.EnableAutoDragDrop = true;
- this.OutputRichTextBox.Location = new System.Drawing.Point(12, 41);
- this.OutputRichTextBox.Name = "OutputRichTextBox";
- this.OutputRichTextBox.ReadOnly = true;
- this.OutputRichTextBox.Size = new System.Drawing.Size(750, 415);
- this.OutputRichTextBox.TabIndex = 2;
- this.OutputRichTextBox.Text = "";
- //
- // SpaceCheckBox
- //
- this.SpaceCheckBox.AutoSize = true;
- this.SpaceCheckBox.Checked = true;
- this.SpaceCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
- this.SpaceCheckBox.Location = new System.Drawing.Point(238, 12);
- this.SpaceCheckBox.Name = "SpaceCheckBox";
- this.SpaceCheckBox.Size = new System.Drawing.Size(60, 16);
- this.SpaceCheckBox.TabIndex = 1;
- this.SpaceCheckBox.Text = "去空格";
- this.SpaceCheckBox.UseVisualStyleBackColor = true;
- //
- // ClearButton
- //
- this.ClearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.ClearButton.Location = new System.Drawing.Point(673, 8);
- this.ClearButton.Name = "ClearButton";
- this.ClearButton.Size = new System.Drawing.Size(89, 23);
- this.ClearButton.TabIndex = 0;
- this.ClearButton.Text = "清空";
- this.ClearButton.UseVisualStyleBackColor = true;
- this.ClearButton.Click += new System.EventHandler(this.ClearButton_Click);
- //
- // TopMostCheckBox
- //
- this.TopMostCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.TopMostCheckBox.AutoSize = true;
- this.TopMostCheckBox.Checked = true;
- this.TopMostCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
- this.TopMostCheckBox.Location = new System.Drawing.Point(595, 13);
- this.TopMostCheckBox.Name = "TopMostCheckBox";
- this.TopMostCheckBox.Size = new System.Drawing.Size(72, 16);
- this.TopMostCheckBox.TabIndex = 1;
- this.TopMostCheckBox.Text = "窗口置顶";
- this.TopMostCheckBox.UseVisualStyleBackColor = true;
- this.TopMostCheckBox.CheckedChanged += new System.EventHandler(this.TopMostCheckBox_CheckedChanged);
- //
- // TsrMainForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(774, 468);
- this.Controls.Add(this.OutputRichTextBox);
- this.Controls.Add(this.TopMostCheckBox);
- this.Controls.Add(this.SpaceCheckBox);
- this.Controls.Add(this.WatchingClipBoard);
- this.Controls.Add(this.ClearButton);
- this.Controls.Add(this.ReadClipBoardPicture);
- this.Name = "TsrMainForm";
- this.Text = "TSR截图识字(简体中文)";
- this.TopMost = true;
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Button ReadClipBoardPicture;
- private System.Windows.Forms.CheckBox WatchingClipBoard;
- private System.Windows.Forms.RichTextBox OutputRichTextBox;
- private System.Windows.Forms.CheckBox SpaceCheckBox;
- private System.Windows.Forms.Button ClearButton;
- private System.Windows.Forms.CheckBox TopMostCheckBox;
- }
- }
|