📄 frminput.designer.cs
字号:
namespace MCA
{
partial class FrmInput
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmInput));
this.panelCaption = new Custom.PanelPro();
this.panelPro = new Custom.PanelPro();
this.ibtCancel = new Custom.ImageButton();
this.ibtOK = new Custom.ImageButton();
this.tBRemark = new System.Windows.Forms.TextBox();
this.inputPanel = new Microsoft.WindowsCE.Forms.InputPanel();
this.mainMenu = new System.Windows.Forms.MainMenu();
this.panelPro.SuspendLayout();
this.SuspendLayout();
//
// panelCaption
//
this.panelCaption.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.panelCaption.Caption = "输入备注";
this.panelCaption.Dock = System.Windows.Forms.DockStyle.Top;
this.panelCaption.Image = ((System.Drawing.Image)(resources.GetObject("panelCaption.Image")));
this.panelCaption.Location = new System.Drawing.Point(0, 0);
this.panelCaption.Name = "panelCaption";
this.panelCaption.Size = new System.Drawing.Size(141, 20);
this.panelCaption.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.panelCaption.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.panelCaption.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
this.panelCaption.TextFont = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.panelCaption.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panelCaption_MouseDown);
this.panelCaption.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panelCaption_MouseMove);
this.panelCaption.MouseUp += new System.Windows.Forms.MouseEventHandler(this.panelCaption_MouseUp);
//
// panelPro
//
this.panelPro.Caption = "";
this.panelPro.Controls.Add(this.ibtCancel);
this.panelPro.Controls.Add(this.ibtOK);
this.panelPro.Controls.Add(this.tBRemark);
this.panelPro.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelPro.Image = null;
this.panelPro.Location = new System.Drawing.Point(0, 20);
this.panelPro.Name = "panelPro";
this.panelPro.Size = new System.Drawing.Size(141, 59);
this.panelPro.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Normal;
this.panelPro.TextAlign = System.Drawing.ContentAlignment.TopLeft;
this.panelPro.TextColor = System.Drawing.Color.Black;
this.panelPro.TextFont = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular);
//
// ibtCancel
//
this.ibtCancel.BackgroundPoint = new System.Drawing.Point(0, 0);
this.ibtCancel.FillColor = System.Drawing.Color.White;
this.ibtCancel.Image = ((System.Drawing.Image)(resources.GetObject("ibtCancel.Image")));
this.ibtCancel.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.ibtCancel.Location = new System.Drawing.Point(77, 33);
this.ibtCancel.Name = "ibtCancel";
this.ibtCancel.ShadowColor = System.Drawing.Color.Gray;
this.ibtCancel.ShowShadow = true;
this.ibtCancel.Size = new System.Drawing.Size(36, 22);
this.ibtCancel.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.ibtCancel.TabIndex = 17;
this.ibtCancel.MouseUp += new System.Windows.Forms.MouseEventHandler(this.ibtCancel_MouseUp);
//
// ibtOK
//
this.ibtOK.BackgroundPoint = new System.Drawing.Point(0, 0);
this.ibtOK.FillColor = System.Drawing.Color.White;
this.ibtOK.Image = ((System.Drawing.Image)(resources.GetObject("ibtOK.Image")));
this.ibtOK.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.ibtOK.Location = new System.Drawing.Point(27, 33);
this.ibtOK.Name = "ibtOK";
this.ibtOK.ShadowColor = System.Drawing.Color.Gray;
this.ibtOK.ShowShadow = true;
this.ibtOK.Size = new System.Drawing.Size(36, 22);
this.ibtOK.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.ibtOK.TabIndex = 16;
this.ibtOK.MouseUp += new System.Windows.Forms.MouseEventHandler(this.ibtOK_MouseUp);
//
// tBRemark
//
this.tBRemark.Location = new System.Drawing.Point(11, 7);
this.tBRemark.Name = "tBRemark";
this.tBRemark.Size = new System.Drawing.Size(118, 21);
this.tBRemark.TabIndex = 0;
this.tBRemark.LostFocus += new System.EventHandler(this.tBRemark_LostFocus);
this.tBRemark.GotFocus += new System.EventHandler(this.tBRemark_GotFocus);
//
// FrmInput
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(141, 79);
this.ControlBox = false;
this.Controls.Add(this.panelPro);
this.Controls.Add(this.panelCaption);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Menu = this.mainMenu;
this.Name = "FrmInput";
this.Text = "多道分析系统";
this.Load += new System.EventHandler(this.FrmInput_Load);
this.panelPro.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private Custom.PanelPro panelCaption;
private Custom.PanelPro panelPro;
private Custom.ImageButton ibtCancel;
private Custom.ImageButton ibtOK;
internal System.Windows.Forms.TextBox tBRemark;
private Microsoft.WindowsCE.Forms.InputPanel inputPanel;
private System.Windows.Forms.MainMenu mainMenu;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -