Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. namespace Reminder
  2. {
  3. partial class frmTip
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9.  
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22.  
  23. #region Windows Form Designer generated code
  24.  
  25. /// <summary>
  26. /// Required method for Designer support - do not modify
  27. /// the contents of this method with the code editor.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.SuspendLayout();
  34. //
  35. // label1
  36. //
  37. this.label1.AutoSize = true;
  38. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  39. this.label1.Location = new System.Drawing.Point(3, 9);
  40. this.label1.Name = "label1";
  41. this.label1.Size = new System.Drawing.Size(51, 16);
  42. this.label1.TabIndex = 0;
  43. this.label1.Text = "label1";
  44. //
  45. // label2
  46. //
  47. this.label2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  48. this.label2.Location = new System.Drawing.Point(3, 35);
  49. this.label2.Name = "label2";
  50. this.label2.Size = new System.Drawing.Size(250, 84);
  51. this.label2.TabIndex = 1;
  52. this.label2.Text = "label2";
  53. //
  54. // frmTip
  55. //
  56. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  57. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  58. this.ClientSize = new System.Drawing.Size(255, 128);
  59. this.Controls.Add(this.label2);
  60. this.Controls.Add(this.label1);
  61. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  62. this.Location = new System.Drawing.Point(900, 700);
  63. this.MaximizeBox = false;
  64. this.MinimizeBox = false;
  65. this.Name = "frmTip";
  66. this.ShowIcon = false;
  67. this.ShowInTaskbar = false;
  68. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  69. this.Text = "Напоминание";
  70. this.Load += new System.EventHandler(this.frmTip_Load);
  71. this.ResumeLayout(false);
  72. this.PerformLayout();
  73.  
  74. }
  75.  
  76. #endregion
  77.  
  78. private System.Windows.Forms.Label label1;
  79. private System.Windows.Forms.Label label2;
  80. }
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement