⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 photo_form.designer.cs

📁 人力管理系统
💻 CS
字号:
namespace rsMange
{
    partial class Photo_Form
    {
        /// <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.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Photo_Form));
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.自动填充显示ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.原图大小显示ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
            this.恢复默认显示ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.另存照片到ZToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.contextMenuStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.自动填充显示ToolStripMenuItem,
            this.原图大小显示ToolStripMenuItem,
            this.toolStripMenuItem1,
            this.恢复默认显示ToolStripMenuItem,
            this.另存照片到ZToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(161, 98);
            // 
            // 自动填充显示ToolStripMenuItem
            // 
            this.自动填充显示ToolStripMenuItem.Name = "自动填充显示ToolStripMenuItem";
            this.自动填充显示ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.自动填充显示ToolStripMenuItem.Text = "自动填充显示(&W)";
            this.自动填充显示ToolStripMenuItem.Click += new System.EventHandler(this.自动填充显示ToolStripMenuItem_Click);
            // 
            // 原图大小显示ToolStripMenuItem
            // 
            this.原图大小显示ToolStripMenuItem.Name = "原图大小显示ToolStripMenuItem";
            this.原图大小显示ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.原图大小显示ToolStripMenuItem.Text = "原图大小显示(&X)";
            this.原图大小显示ToolStripMenuItem.Click += new System.EventHandler(this.原图大小显示ToolStripMenuItem_Click);
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.Size = new System.Drawing.Size(157, 6);
            // 
            // 恢复默认显示ToolStripMenuItem
            // 
            this.恢复默认显示ToolStripMenuItem.Name = "恢复默认显示ToolStripMenuItem";
            this.恢复默认显示ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.恢复默认显示ToolStripMenuItem.Text = "恢复默认显示(&Y)";
            this.恢复默认显示ToolStripMenuItem.Click += new System.EventHandler(this.恢复默认显示ToolStripMenuItem_Click);
            // 
            // 另存照片到ZToolStripMenuItem
            // 
            this.另存照片到ZToolStripMenuItem.Name = "另存照片到ZToolStripMenuItem";
            this.另存照片到ZToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.另存照片到ZToolStripMenuItem.Text = "另存照片到..(&Z)";
            this.另存照片到ZToolStripMenuItem.Click += new System.EventHandler(this.另存照片到ZToolStripMenuItem_Click);
            // 
            // pictureBox1
            // 
            this.pictureBox1.ContextMenuStrip = this.contextMenuStrip1;
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox1.Location = new System.Drawing.Point(0, 0);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(365, 312);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            // 
            // saveFileDialog1
            // 
            this.saveFileDialog1.Filter = "BMP 文件|*.bmp|jpeg 文件|*.jpeg|gif 文件 |*.gif|png File|*.png|tiff File|*.tiff";
            // 
            // Photo_Form
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(365, 312);
            this.Controls.Add(this.pictureBox1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "Photo_Form";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "员工照片(右键操作)";
            this.TopMost = true;
            this.Load += new System.EventHandler(this.Photo_Form_Load);
            this.contextMenuStrip1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
        private System.Windows.Forms.ToolStripMenuItem 自动填充显示ToolStripMenuItem;
        private System.Windows.Forms.PictureBox pictureBox1;
        private System.Windows.Forms.ToolStripMenuItem 原图大小显示ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
        private System.Windows.Forms.ToolStripMenuItem 恢复默认显示ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 另存照片到ZToolStripMenuItem;
        private System.Windows.Forms.SaveFileDialog saveFileDialog1;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -