MainForm.Designer.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. namespace MediaBrowser.ServerApplication
  2. {
  3. partial class MainForm
  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.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  30. this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
  31. this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  32. this.cmdBrowse = new System.Windows.Forms.ToolStripMenuItem();
  33. this.cmdConfigure = new System.Windows.Forms.ToolStripMenuItem();
  34. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  35. this.cmdRestart = new System.Windows.Forms.ToolStripMenuItem();
  36. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  37. this.cmdCommunity = new System.Windows.Forms.ToolStripMenuItem();
  38. this.cmdExit = new System.Windows.Forms.ToolStripMenuItem();
  39. this.contextMenuStrip1.SuspendLayout();
  40. this.SuspendLayout();
  41. //
  42. // notifyIcon1
  43. //
  44. this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
  45. this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  46. this.notifyIcon1.Text = "Emby";
  47. this.notifyIcon1.Visible = true;
  48. //
  49. // contextMenuStrip1
  50. //
  51. this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  52. this.cmdBrowse,
  53. this.cmdConfigure,
  54. this.toolStripSeparator2,
  55. this.cmdRestart,
  56. this.toolStripSeparator1,
  57. this.cmdCommunity,
  58. this.cmdExit});
  59. this.contextMenuStrip1.Name = "contextMenuStrip1";
  60. this.contextMenuStrip1.ShowCheckMargin = true;
  61. this.contextMenuStrip1.ShowImageMargin = false;
  62. this.contextMenuStrip1.Size = new System.Drawing.Size(209, 192);
  63. //
  64. // cmdBrowse
  65. //
  66. this.cmdBrowse.Name = "cmdBrowse";
  67. this.cmdBrowse.Size = new System.Drawing.Size(208, 22);
  68. this.cmdBrowse.Text = "Browse Library";
  69. //
  70. // cmdConfigure
  71. //
  72. this.cmdConfigure.Name = "cmdConfigure";
  73. this.cmdConfigure.Size = new System.Drawing.Size(208, 22);
  74. this.cmdConfigure.Text = "Configure Media Browser";
  75. //
  76. // toolStripSeparator2
  77. //
  78. this.toolStripSeparator2.Name = "toolStripSeparator2";
  79. this.toolStripSeparator2.Size = new System.Drawing.Size(205, 6);
  80. //
  81. // cmdRestart
  82. //
  83. this.cmdRestart.Name = "cmdRestart";
  84. this.cmdRestart.Size = new System.Drawing.Size(208, 22);
  85. this.cmdRestart.Text = "Restart Server";
  86. //
  87. // toolStripSeparator1
  88. //
  89. this.toolStripSeparator1.Name = "toolStripSeparator1";
  90. this.toolStripSeparator1.Size = new System.Drawing.Size(205, 6);
  91. //
  92. // cmdCommunity
  93. //
  94. this.cmdCommunity.Name = "cmdCommunity";
  95. this.cmdCommunity.Size = new System.Drawing.Size(208, 22);
  96. this.cmdCommunity.Text = "Visit Community";
  97. //
  98. // cmdExit
  99. //
  100. this.cmdExit.Name = "cmdExit";
  101. this.cmdExit.Size = new System.Drawing.Size(208, 22);
  102. this.cmdExit.Text = "Exit";
  103. //
  104. // MainForm
  105. //
  106. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  107. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  108. this.ClientSize = new System.Drawing.Size(284, 261);
  109. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  110. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  111. this.Name = "MainForm";
  112. this.ShowInTaskbar = false;
  113. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  114. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  115. this.Text = "MainForm";
  116. this.contextMenuStrip1.ResumeLayout(false);
  117. this.ResumeLayout(false);
  118. }
  119. #endregion
  120. private System.Windows.Forms.NotifyIcon notifyIcon1;
  121. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  122. private System.Windows.Forms.ToolStripMenuItem cmdExit;
  123. private System.Windows.Forms.ToolStripMenuItem cmdBrowse;
  124. private System.Windows.Forms.ToolStripMenuItem cmdConfigure;
  125. private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
  126. private System.Windows.Forms.ToolStripMenuItem cmdRestart;
  127. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  128. private System.Windows.Forms.ToolStripMenuItem cmdCommunity;
  129. }
  130. }