frmOpenFavorites.Designer.cs
上传用户:hxjiliang
上传日期:2022-04-23
资源大小:182k
文件大小:5k
源码类别:

浏览器

开发平台:

C#

  1. namespace MyWebIE
  2. {
  3.     partial class frmOpenFavorites
  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(frmOpenFavorites));
  29.             this.pictureBox1 = new System.Windows.Forms.PictureBox();
  30.             this.textBox1 = new System.Windows.Forms.TextBox();
  31.             this.label2 = new System.Windows.Forms.Label();
  32.             this.button2 = new System.Windows.Forms.Button();
  33.             this.button1 = new System.Windows.Forms.Button();
  34.             this.label1 = new System.Windows.Forms.Label();
  35.             ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  36.             this.SuspendLayout();
  37.             // 
  38.             // pictureBox1
  39.             // 
  40.             this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  41.             this.pictureBox1.Location = new System.Drawing.Point(8, 12);
  42.             this.pictureBox1.Name = "pictureBox1";
  43.             this.pictureBox1.Size = new System.Drawing.Size(49, 46);
  44.             this.pictureBox1.TabIndex = 11;
  45.             this.pictureBox1.TabStop = false;
  46.             // 
  47.             // textBox1
  48.             // 
  49.             this.textBox1.Location = new System.Drawing.Point(69, 81);
  50.             this.textBox1.Name = "textBox1";
  51.             this.textBox1.Size = new System.Drawing.Size(313, 21);
  52.             this.textBox1.TabIndex = 10;
  53.             // 
  54.             // label2
  55.             // 
  56.             this.label2.AutoSize = true;
  57.             this.label2.Location = new System.Drawing.Point(14, 84);
  58.             this.label2.Name = "label2";
  59.             this.label2.Size = new System.Drawing.Size(53, 12);
  60.             this.label2.TabIndex = 9;
  61.             this.label2.Text = "名称(&N):";
  62.             // 
  63.             // button2
  64.             // 
  65.             this.button2.Location = new System.Drawing.Point(307, 45);
  66.             this.button2.Name = "button2";
  67.             this.button2.Size = new System.Drawing.Size(75, 23);
  68.             this.button2.TabIndex = 8;
  69.             this.button2.Text = "取消";
  70.             this.button2.UseVisualStyleBackColor = true;
  71.             this.button2.Click += new System.EventHandler(this.button2_Click);
  72.             // 
  73.             // button1
  74.             // 
  75.             this.button1.Location = new System.Drawing.Point(307, 16);
  76.             this.button1.Name = "button1";
  77.             this.button1.Size = new System.Drawing.Size(75, 23);
  78.             this.button1.TabIndex = 7;
  79.             this.button1.Text = "确定";
  80.             this.button1.UseVisualStyleBackColor = true;
  81.             this.button1.Click += new System.EventHandler(this.button1_Click);
  82.             // 
  83.             // label1
  84.             // 
  85.             this.label1.AutoSize = true;
  86.             this.label1.Location = new System.Drawing.Point(62, 21);
  87.             this.label1.Name = "label1";
  88.             this.label1.Size = new System.Drawing.Size(239, 24);
  89.             this.label1.TabIndex = 6;
  90.             this.label1.Text = "Internet Explorer将把该页添加到您的收藏rn夹列表中。rn";
  91.             // 
  92.             // frmOpenFavorites
  93.             // 
  94.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  95.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  96.             this.ClientSize = new System.Drawing.Size(392, 111);
  97.             this.Controls.Add(this.pictureBox1);
  98.             this.Controls.Add(this.textBox1);
  99.             this.Controls.Add(this.label2);
  100.             this.Controls.Add(this.button2);
  101.             this.Controls.Add(this.button1);
  102.             this.Controls.Add(this.label1);
  103.             this.MaximizeBox = false;
  104.             this.MinimizeBox = false;
  105.             this.Name = "frmOpenFavorites";
  106.             this.Text = "添加到收藏夹";
  107.             this.Load += new System.EventHandler(this.frmOpenFavorites_Load);
  108.             ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  109.             this.ResumeLayout(false);
  110.             this.PerformLayout();
  111.         }
  112.         #endregion
  113.         private System.Windows.Forms.PictureBox pictureBox1;
  114.         private System.Windows.Forms.TextBox textBox1;
  115.         private System.Windows.Forms.Label label2;
  116.         private System.Windows.Forms.Button button2;
  117.         private System.Windows.Forms.Button button1;
  118.         private System.Windows.Forms.Label label1;
  119.     }
  120. }