Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.64 KB | None | 0 0
  1. namespace RibarskiInspektor.PresentationLayer
  2. {
  3. partial class FormMainWindow
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMainWindow));
  32. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  33. this.portsStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  34. this.viewPortsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  35. this.addPortToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  36. this.statusStrip = new System.Windows.Forms.StatusStrip();
  37. this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
  38. this.menuStrip1.SuspendLayout();
  39. this.statusStrip.SuspendLayout();
  40. this.SuspendLayout();
  41. //
  42. // menuStrip1
  43. //
  44. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  45. this.portsStripMenuItem});
  46. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  47. this.menuStrip1.Name = "menuStrip1";
  48. this.menuStrip1.Size = new System.Drawing.Size(484, 24);
  49. this.menuStrip1.TabIndex = 0;
  50. this.menuStrip1.Text = "menuStrip1";
  51. //
  52. // employeesToolStripMenuItem
  53. //
  54. this.portsStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  55. this.viewPortsToolStripMenuItem,
  56. this.addPortToolStripMenuItem});
  57. this.portsStripMenuItem.Name = "portsStripMenuItem";
  58. this.portsStripMenuItem.Size = new System.Drawing.Size(76, 20);
  59. this.portsStripMenuItem.Text = "Luke";
  60. //
  61. // viewEmployeesToolStripMenuItem
  62. //
  63. this.viewPortsToolStripMenuItem.Name = "viewPortsToolStripMenuItem";
  64. this.viewPortsToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
  65. this.viewPortsToolStripMenuItem.Text = "Pogledaj luke";
  66. this.viewPortsToolStripMenuItem.Click += new System.EventHandler(this.viewEmployeesToolStripMenuItem_Click);
  67. //
  68. // addEmployeeToolStripMenuItem
  69. //
  70. this.addPortToolStripMenuItem.Name = "addPortToolStripMenuItem";
  71. this.addPortToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
  72. this.addPortToolStripMenuItem.Text = "Dodaj luku";
  73. this.addPortToolStripMenuItem.Click += new System.EventHandler(this.addEmployeeToolStripMenuItem_Click);
  74. //
  75. // statusStrip
  76. //
  77. this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  78. this.toolStripStatusLabel});
  79. this.statusStrip.Location = new System.Drawing.Point(0, 261);
  80. this.statusStrip.Name = "statusStrip";
  81. this.statusStrip.Size = new System.Drawing.Size(484, 22);
  82. this.statusStrip.TabIndex = 1;
  83. this.statusStrip.Text = "statusStrip1";
  84. //
  85. // toolStripStatusLabel
  86. //
  87. this.toolStripStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  88. this.toolStripStatusLabel.Name = "toolStripStatusLabel";
  89. this.toolStripStatusLabel.Size = new System.Drawing.Size(0, 17);
  90. //
  91. // FormMainWindow
  92. //
  93. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  94. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  95. this.ClientSize = new System.Drawing.Size(484, 283);
  96. this.Controls.Add(this.statusStrip);
  97. this.Controls.Add(this.menuStrip1);
  98. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  99. this.MainMenuStrip = this.menuStrip1;
  100. this.Name = "FormMainWindow";
  101. this.Text = "Ribarski inspektor";
  102. this.menuStrip1.ResumeLayout(false);
  103. this.menuStrip1.PerformLayout();
  104. this.statusStrip.ResumeLayout(false);
  105. this.statusStrip.PerformLayout();
  106. this.ResumeLayout(false);
  107. this.PerformLayout();
  108.  
  109. }
  110.  
  111. #endregion
  112.  
  113. private System.Windows.Forms.MenuStrip menuStrip1;
  114. private System.Windows.Forms.ToolStripMenuItem portsStripMenuItem;
  115. private System.Windows.Forms.ToolStripMenuItem viewPortsToolStripMenuItem;
  116. private System.Windows.Forms.ToolStripMenuItem addPortToolStripMenuItem;
  117. private System.Windows.Forms.StatusStrip statusStrip;
  118. private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel;
  119. }
  120. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement