Popup.Designer.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. namespace US.Browser.IE
  2. {
  3. partial class Popup
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Popup));
  29. this.CloseX = new System.Windows.Forms.PictureBox();
  30. ((System.ComponentModel.ISupportInitialize)(this.CloseX)).BeginInit();
  31. this.SuspendLayout();
  32. //
  33. // CloseX
  34. //
  35. this.CloseX.BackColor = System.Drawing.Color.Black;
  36. this.CloseX.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("CloseX.BackgroundImage")));
  37. this.CloseX.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  38. this.CloseX.Cursor = System.Windows.Forms.Cursors.Hand;
  39. this.CloseX.Location = new System.Drawing.Point(720, 10);
  40. this.CloseX.Name = "CloseX";
  41. this.CloseX.Size = new System.Drawing.Size(18, 18);
  42. this.CloseX.TabIndex = 2;
  43. this.CloseX.TabStop = false;
  44. this.CloseX.Visible = false;
  45. this.CloseX.Click += new System.EventHandler(this.CloseX_Click);
  46. //
  47. // Popup
  48. //
  49. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  50. this.BackColor = System.Drawing.Color.White;
  51. this.ClientSize = new System.Drawing.Size(747, 544);
  52. this.Controls.Add(this.CloseX);
  53. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  54. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  55. this.Name = "Popup";
  56. this.ShowIcon = false;
  57. this.ShowInTaskbar = false;
  58. this.Disposed += new System.EventHandler(this.Popup_Disposed);
  59. ((System.ComponentModel.ISupportInitialize)(this.CloseX)).EndInit();
  60. this.ResumeLayout(false);
  61. }
  62. void Popup_Disposed(object sender, System.EventArgs e)
  63. {
  64. this.Hide();
  65. //throw new System.NotImplementedException();
  66. }
  67. #endregion
  68. private System.Windows.Forms.PictureBox CloseX;
  69. }
  70. }