frmCalender.Designer.cs 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. namespace Dashboard
  2. {
  3. partial class frmCalender
  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. this.label1 = new System.Windows.Forms.Label();
  29. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  30. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  31. this.SuspendLayout();
  32. //
  33. // label1
  34. //
  35. this.label1.AutoSize = true;
  36. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  37. this.label1.ForeColor = System.Drawing.Color.White;
  38. this.label1.Location = new System.Drawing.Point(238, 147);
  39. this.label1.Name = "label1";
  40. this.label1.Size = new System.Drawing.Size(272, 31);
  41. this.label1.TabIndex = 1;
  42. this.label1.Text = "Your Calender Here";
  43. //
  44. // pictureBox1
  45. //
  46. this.pictureBox1.Image = global::Dashboard.Properties.Resources.Lrg_calendar;
  47. this.pictureBox1.Location = new System.Drawing.Point(262, 181);
  48. this.pictureBox1.Name = "pictureBox1";
  49. this.pictureBox1.Size = new System.Drawing.Size(199, 155);
  50. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  51. this.pictureBox1.TabIndex = 3;
  52. this.pictureBox1.TabStop = false;
  53. //
  54. // frmCalender
  55. //
  56. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  57. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  58. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(46)))), ((int)(((byte)(51)))), ((int)(((byte)(73)))));
  59. this.ClientSize = new System.Drawing.Size(733, 482);
  60. this.Controls.Add(this.pictureBox1);
  61. this.Controls.Add(this.label1);
  62. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  63. this.Name = "frmCalender";
  64. this.Text = "frmCalender ";
  65. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  66. this.ResumeLayout(false);
  67. this.PerformLayout();
  68. }
  69. #endregion
  70. private System.Windows.Forms.Label label1;
  71. private System.Windows.Forms.PictureBox pictureBox1;
  72. }
  73. }