123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- namespace US.Browser.IE
- {
- partial class Popup
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Popup));
- this.CloseX = new System.Windows.Forms.PictureBox();
- ((System.ComponentModel.ISupportInitialize)(this.CloseX)).BeginInit();
- this.SuspendLayout();
- //
- // CloseX
- //
- this.CloseX.BackColor = System.Drawing.Color.Black;
- this.CloseX.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("CloseX.BackgroundImage")));
- this.CloseX.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.CloseX.Cursor = System.Windows.Forms.Cursors.Hand;
- this.CloseX.Location = new System.Drawing.Point(720, 10);
- this.CloseX.Name = "CloseX";
- this.CloseX.Size = new System.Drawing.Size(18, 18);
- this.CloseX.TabIndex = 2;
- this.CloseX.TabStop = false;
- this.CloseX.Visible = false;
- this.CloseX.Click += new System.EventHandler(this.CloseX_Click);
- //
- // Popup
- //
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- this.BackColor = System.Drawing.Color.White;
- this.ClientSize = new System.Drawing.Size(747, 544);
- this.Controls.Add(this.CloseX);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "Popup";
- this.ShowIcon = false;
- this.ShowInTaskbar = false;
- this.Disposed += new System.EventHandler(this.Popup_Disposed);
- ((System.ComponentModel.ISupportInitialize)(this.CloseX)).EndInit();
- this.ResumeLayout(false);
- }
- void Popup_Disposed(object sender, System.EventArgs e)
- {
- this.Hide();
- //throw new System.NotImplementedException();
- }
- #endregion
- private System.Windows.Forms.PictureBox CloseX;
- }
- }
|