frmMain.Designer.cs
上传用户:wedding
上传日期:2022-08-10
资源大小:558k
文件大小:18k
源码类别:

图形图像处理

开发平台:

C#

  1. namespace MyImageManger
  2. {
  3.     partial class frmMain
  4.     {
  5.         /// <summary>
  6.         /// 必需的设计器变量。
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// 清理所有正在使用的资源。
  11.         /// </summary>
  12.         /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows 窗体设计器生成的代码
  22.         /// <summary>
  23.         /// 设计器支持所需的方法 - 不要
  24.         /// 使用代码编辑器修改此方法的内容。
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
  29.             this.skinEngine1 = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
  30.             this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  31.             this.文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  32.             this.打开ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  33.             this.另存为ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  34.             this.删除ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  35.             this.关闭ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  36.             this.编辑EToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  37.             this.放大ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  38.             this.缩小ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  39.             this.顺时针旋转ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  40.             this.逆时针旋转ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  41.             this.panel1 = new System.Windows.Forms.Panel();
  42.             this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  43.             this.tsbtnBig = new System.Windows.Forms.ToolStripButton();
  44.             this.tsBtnSmall = new System.Windows.Forms.ToolStripButton();
  45.             this.tsbtnRight = new System.Windows.Forms.ToolStripButton();
  46.             this.tsBtnLeft = new System.Windows.Forms.ToolStripButton();
  47.             this.pnlMain = new System.Windows.Forms.Panel();
  48.             this.pictureBox1 = new System.Windows.Forms.PictureBox();
  49.             this.tsBtnPre = new System.Windows.Forms.ToolStripButton();
  50.             this.tsBtnNext = new System.Windows.Forms.ToolStripButton();
  51.             this.menuStrip1.SuspendLayout();
  52.             this.panel1.SuspendLayout();
  53.             this.toolStrip1.SuspendLayout();
  54.             this.pnlMain.SuspendLayout();
  55.             ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  56.             this.SuspendLayout();
  57.             // 
  58.             // skinEngine1
  59.             // 
  60.             this.skinEngine1.SerialNumber = "";
  61.             this.skinEngine1.SkinFile = null;
  62.             // 
  63.             // menuStrip1
  64.             // 
  65.             this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  66.             this.文件ToolStripMenuItem,
  67.             this.编辑EToolStripMenuItem});
  68.             this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  69.             this.menuStrip1.Name = "menuStrip1";
  70.             this.menuStrip1.Size = new System.Drawing.Size(788, 24);
  71.             this.menuStrip1.TabIndex = 0;
  72.             this.menuStrip1.Text = "menuStrip1";
  73.             // 
  74.             // 文件ToolStripMenuItem
  75.             // 
  76.             this.文件ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  77.             this.打开ToolStripMenuItem,
  78.             this.另存为ToolStripMenuItem,
  79.             this.删除ToolStripMenuItem,
  80.             this.关闭ToolStripMenuItem});
  81.             this.文件ToolStripMenuItem.Name = "文件ToolStripMenuItem";
  82.             this.文件ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F)));
  83.             this.文件ToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
  84.             this.文件ToolStripMenuItem.Text = "文件(&F)";
  85.             // 
  86.             // 打开ToolStripMenuItem
  87.             // 
  88.             this.打开ToolStripMenuItem.Name = "打开ToolStripMenuItem";
  89.             this.打开ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
  90.             this.打开ToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
  91.             this.打开ToolStripMenuItem.Text = "打开";
  92.             this.打开ToolStripMenuItem.Click += new System.EventHandler(this.打开ToolStripMenuItem_Click);
  93.             // 
  94.             // 另存为ToolStripMenuItem
  95.             // 
  96.             this.另存为ToolStripMenuItem.Name = "另存为ToolStripMenuItem";
  97.             this.另存为ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
  98.             this.另存为ToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
  99.             this.另存为ToolStripMenuItem.Text = "另存为";
  100.             this.另存为ToolStripMenuItem.Click += new System.EventHandler(this.另存为ToolStripMenuItem_Click);
  101.             // 
  102.             // 删除ToolStripMenuItem
  103.             // 
  104.             this.删除ToolStripMenuItem.Name = "删除ToolStripMenuItem";
  105.             this.删除ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D)));
  106.             this.删除ToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
  107.             this.删除ToolStripMenuItem.Text = "删除";
  108.             this.删除ToolStripMenuItem.Click += new System.EventHandler(this.删除ToolStripMenuItem_Click);
  109.             // 
  110.             // 关闭ToolStripMenuItem
  111.             // 
  112.             this.关闭ToolStripMenuItem.Name = "关闭ToolStripMenuItem";
  113.             this.关闭ToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
  114.             this.关闭ToolStripMenuItem.Text = "退出(&X)";
  115.             this.关闭ToolStripMenuItem.Click += new System.EventHandler(this.关闭ToolStripMenuItem_Click);
  116.             // 
  117.             // 编辑EToolStripMenuItem
  118.             // 
  119.             this.编辑EToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  120.             this.放大ToolStripMenuItem,
  121.             this.缩小ToolStripMenuItem,
  122.             this.顺时针旋转ToolStripMenuItem,
  123.             this.逆时针旋转ToolStripMenuItem});
  124.             this.编辑EToolStripMenuItem.Name = "编辑EToolStripMenuItem";
  125.             this.编辑EToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
  126.             this.编辑EToolStripMenuItem.Text = "操作(&O)";
  127.             // 
  128.             // 放大ToolStripMenuItem
  129.             // 
  130.             this.放大ToolStripMenuItem.Name = "放大ToolStripMenuItem";
  131.             this.放大ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.B)));
  132.             this.放大ToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
  133.             this.放大ToolStripMenuItem.Text = "放大";
  134.             this.放大ToolStripMenuItem.Click += new System.EventHandler(this.放大ToolStripMenuItem_Click);
  135.             // 
  136.             // 缩小ToolStripMenuItem
  137.             // 
  138.             this.缩小ToolStripMenuItem.Name = "缩小ToolStripMenuItem";
  139.             this.缩小ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
  140.             this.缩小ToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
  141.             this.缩小ToolStripMenuItem.Text = "缩小";
  142.             this.缩小ToolStripMenuItem.Click += new System.EventHandler(this.缩小ToolStripMenuItem_Click);
  143.             // 
  144.             // 顺时针旋转ToolStripMenuItem
  145.             // 
  146.             this.顺时针旋转ToolStripMenuItem.Name = "顺时针旋转ToolStripMenuItem";
  147.             this.顺时针旋转ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Right)));
  148.             this.顺时针旋转ToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
  149.             this.顺时针旋转ToolStripMenuItem.Text = "顺时针旋转";
  150.             this.顺时针旋转ToolStripMenuItem.Click += new System.EventHandler(this.顺时针旋转ToolStripMenuItem_Click);
  151.             // 
  152.             // 逆时针旋转ToolStripMenuItem
  153.             // 
  154.             this.逆时针旋转ToolStripMenuItem.Name = "逆时针旋转ToolStripMenuItem";
  155.             this.逆时针旋转ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Left)));
  156.             this.逆时针旋转ToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
  157.             this.逆时针旋转ToolStripMenuItem.Text = "逆时针旋转";
  158.             this.逆时针旋转ToolStripMenuItem.Click += new System.EventHandler(this.逆时针旋转ToolStripMenuItem_Click);
  159.             // 
  160.             // panel1
  161.             // 
  162.             this.panel1.Controls.Add(this.toolStrip1);
  163.             this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
  164.             this.panel1.Location = new System.Drawing.Point(0, 466);
  165.             this.panel1.Name = "panel1";
  166.             this.panel1.Size = new System.Drawing.Size(788, 36);
  167.             this.panel1.TabIndex = 2;
  168.             // 
  169.             // toolStrip1
  170.             // 
  171.             this.toolStrip1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
  172.             this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
  173.             this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  174.             this.tsbtnBig,
  175.             this.tsBtnSmall,
  176.             this.tsbtnRight,
  177.             this.tsBtnLeft,
  178.             this.tsBtnPre,
  179.             this.tsBtnNext});
  180.             this.toolStrip1.Location = new System.Drawing.Point(329, 3);
  181.             this.toolStrip1.Name = "toolStrip1";
  182.             this.toolStrip1.Size = new System.Drawing.Size(179, 25);
  183.             this.toolStrip1.TabIndex = 0;
  184.             this.toolStrip1.Text = "toolStrip1";
  185.             // 
  186.             // tsbtnBig
  187.             // 
  188.             this.tsbtnBig.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  189.             this.tsbtnBig.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnBig.Image")));
  190.             this.tsbtnBig.ImageTransparentColor = System.Drawing.Color.Magenta;
  191.             this.tsbtnBig.Name = "tsbtnBig";
  192.             this.tsbtnBig.Size = new System.Drawing.Size(23, 22);
  193.             this.tsbtnBig.Text = "放大";
  194.             this.tsbtnBig.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
  195.             this.tsbtnBig.Click += new System.EventHandler(this.tsbtnBig_Click);
  196.             // 
  197.             // tsBtnSmall
  198.             // 
  199.             this.tsBtnSmall.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  200.             this.tsBtnSmall.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnSmall.Image")));
  201.             this.tsBtnSmall.ImageTransparentColor = System.Drawing.Color.Magenta;
  202.             this.tsBtnSmall.Name = "tsBtnSmall";
  203.             this.tsBtnSmall.Size = new System.Drawing.Size(23, 22);
  204.             this.tsBtnSmall.Text = "缩小";
  205.             this.tsBtnSmall.Click += new System.EventHandler(this.tsBtnSmall_Click);
  206.             // 
  207.             // tsbtnRight
  208.             // 
  209.             this.tsbtnRight.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  210.             this.tsbtnRight.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnRight.Image")));
  211.             this.tsbtnRight.ImageTransparentColor = System.Drawing.Color.Magenta;
  212.             this.tsbtnRight.Name = "tsbtnRight";
  213.             this.tsbtnRight.Size = new System.Drawing.Size(23, 22);
  214.             this.tsbtnRight.Text = "toolStripButton3";
  215.             this.tsbtnRight.Click += new System.EventHandler(this.tsbtnRight_Click);
  216.             // 
  217.             // tsBtnLeft
  218.             // 
  219.             this.tsBtnLeft.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  220.             this.tsBtnLeft.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnLeft.Image")));
  221.             this.tsBtnLeft.ImageTransparentColor = System.Drawing.Color.Magenta;
  222.             this.tsBtnLeft.Name = "tsBtnLeft";
  223.             this.tsBtnLeft.Size = new System.Drawing.Size(23, 22);
  224.             this.tsBtnLeft.Text = "toolStripButton4";
  225.             this.tsBtnLeft.Click += new System.EventHandler(this.tsBtnLeft_Click);
  226.             // 
  227.             // pnlMain
  228.             // 
  229.             this.pnlMain.AutoScroll = true;
  230.             this.pnlMain.Controls.Add(this.pictureBox1);
  231.             this.pnlMain.Dock = System.Windows.Forms.DockStyle.Fill;
  232.             this.pnlMain.Location = new System.Drawing.Point(0, 24);
  233.             this.pnlMain.Name = "pnlMain";
  234.             this.pnlMain.Size = new System.Drawing.Size(788, 442);
  235.             this.pnlMain.TabIndex = 3;
  236.             // 
  237.             // pictureBox1
  238.             // 
  239.             this.pictureBox1.Location = new System.Drawing.Point(3, 3);
  240.             this.pictureBox1.Name = "pictureBox1";
  241.             this.pictureBox1.Size = new System.Drawing.Size(100, 50);
  242.             this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
  243.             this.pictureBox1.TabIndex = 0;
  244.             this.pictureBox1.TabStop = false;
  245.             // 
  246.             // tsBtnPre
  247.             // 
  248.             this.tsBtnPre.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  249.             this.tsBtnPre.Enabled = false;
  250.             this.tsBtnPre.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnPre.Image")));
  251.             this.tsBtnPre.ImageTransparentColor = System.Drawing.Color.Magenta;
  252.             this.tsBtnPre.Name = "tsBtnPre";
  253.             this.tsBtnPre.Size = new System.Drawing.Size(23, 22);
  254.             this.tsBtnPre.Text = "上一张";
  255.             this.tsBtnPre.Click += new System.EventHandler(this.tsBtnPre_Click);
  256.             // 
  257.             // tsBtnNext
  258.             // 
  259.             this.tsBtnNext.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  260.             this.tsBtnNext.Enabled = false;
  261.             this.tsBtnNext.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnNext.Image")));
  262.             this.tsBtnNext.ImageTransparentColor = System.Drawing.Color.Magenta;
  263.             this.tsBtnNext.Name = "tsBtnNext";
  264.             this.tsBtnNext.Size = new System.Drawing.Size(23, 22);
  265.             this.tsBtnNext.Text = "下一张";
  266.             this.tsBtnNext.Click += new System.EventHandler(this.tsBtnNext_Click);
  267.             // 
  268.             // frmMain
  269.             // 
  270.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  271.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  272.             this.AutoScroll = true;
  273.             this.ClientSize = new System.Drawing.Size(788, 502);
  274.             this.Controls.Add(this.pnlMain);
  275.             this.Controls.Add(this.panel1);
  276.             this.Controls.Add(this.menuStrip1);
  277.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  278.             this.MainMenuStrip = this.menuStrip1;
  279.             this.Name = "frmMain";
  280.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  281.             this.Text = "图片查看器";
  282.             this.Load += new System.EventHandler(this.frmMain_Load);
  283.             this.Resize += new System.EventHandler(this.frmMain_Resize);
  284.             this.menuStrip1.ResumeLayout(false);
  285.             this.menuStrip1.PerformLayout();
  286.             this.panel1.ResumeLayout(false);
  287.             this.panel1.PerformLayout();
  288.             this.toolStrip1.ResumeLayout(false);
  289.             this.toolStrip1.PerformLayout();
  290.             this.pnlMain.ResumeLayout(false);
  291.             this.pnlMain.PerformLayout();
  292.             ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  293.             this.ResumeLayout(false);
  294.             this.PerformLayout();
  295.         }
  296.         #endregion
  297.         private Sunisoft.IrisSkin.SkinEngine skinEngine1;
  298.         private System.Windows.Forms.MenuStrip menuStrip1;
  299.         private System.Windows.Forms.ToolStripMenuItem 文件ToolStripMenuItem;
  300.         private System.Windows.Forms.ToolStripMenuItem 打开ToolStripMenuItem;
  301.         private System.Windows.Forms.ToolStripMenuItem 另存为ToolStripMenuItem;
  302.         private System.Windows.Forms.ToolStripMenuItem 删除ToolStripMenuItem;
  303.         private System.Windows.Forms.ToolStripMenuItem 关闭ToolStripMenuItem;
  304.         private System.Windows.Forms.Panel panel1;
  305.         private System.Windows.Forms.Panel pnlMain;
  306.         private System.Windows.Forms.PictureBox pictureBox1;
  307.         private System.Windows.Forms.ToolStrip toolStrip1;
  308.         private System.Windows.Forms.ToolStripButton tsbtnBig;
  309.         private System.Windows.Forms.ToolStripButton tsBtnSmall;
  310.         private System.Windows.Forms.ToolStripButton tsbtnRight;
  311.         private System.Windows.Forms.ToolStripButton tsBtnLeft;
  312.         private System.Windows.Forms.ToolStripMenuItem 编辑EToolStripMenuItem;
  313.         private System.Windows.Forms.ToolStripMenuItem 放大ToolStripMenuItem;
  314.         private System.Windows.Forms.ToolStripMenuItem 缩小ToolStripMenuItem;
  315.         private System.Windows.Forms.ToolStripMenuItem 顺时针旋转ToolStripMenuItem;
  316.         private System.Windows.Forms.ToolStripMenuItem 逆时针旋转ToolStripMenuItem;
  317.         private System.Windows.Forms.ToolStripButton tsBtnPre;
  318.         private System.Windows.Forms.ToolStripButton tsBtnNext;
  319.     }
  320. }