MainForm.Designer.cs 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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.cmdLibraryExplorer = new System.Windows.Forms.ToolStripMenuItem();
  36. this.cmdRestart = new System.Windows.Forms.ToolStripMenuItem();
  37. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  38. this.cmdApiDocs = new System.Windows.Forms.ToolStripMenuItem();
  39. this.cmdStandardDocs = new System.Windows.Forms.ToolStripMenuItem();
  40. this.cmdSwagger = new System.Windows.Forms.ToolStripMenuItem();
  41. this.cmdGtihub = new System.Windows.Forms.ToolStripMenuItem();
  42. this.cmdLogWindow = new System.Windows.Forms.ToolStripMenuItem();
  43. this.cmdCommunity = new System.Windows.Forms.ToolStripMenuItem();
  44. this.cmdExit = new System.Windows.Forms.ToolStripMenuItem();
  45. this.contextMenuStrip1.SuspendLayout();
  46. this.SuspendLayout();
  47. //
  48. // notifyIcon1
  49. //
  50. this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
  51. this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  52. this.notifyIcon1.Text = "Media Browser";
  53. this.notifyIcon1.Visible = true;
  54. //
  55. // contextMenuStrip1
  56. //
  57. this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  58. this.cmdBrowse,
  59. this.cmdConfigure,
  60. this.toolStripSeparator2,
  61. this.cmdLibraryExplorer,
  62. this.cmdRestart,
  63. this.toolStripSeparator1,
  64. this.cmdApiDocs,
  65. this.cmdLogWindow,
  66. this.cmdCommunity,
  67. this.cmdExit});
  68. this.contextMenuStrip1.Name = "contextMenuStrip1";
  69. this.contextMenuStrip1.ShowCheckMargin = true;
  70. this.contextMenuStrip1.ShowImageMargin = false;
  71. this.contextMenuStrip1.Size = new System.Drawing.Size(209, 192);
  72. //
  73. // cmdBrowse
  74. //
  75. this.cmdBrowse.Name = "cmdBrowse";
  76. this.cmdBrowse.Size = new System.Drawing.Size(208, 22);
  77. this.cmdBrowse.Text = "Browse Library";
  78. //
  79. // cmdConfigure
  80. //
  81. this.cmdConfigure.Name = "cmdConfigure";
  82. this.cmdConfigure.Size = new System.Drawing.Size(208, 22);
  83. this.cmdConfigure.Text = "Configure Media Browser";
  84. //
  85. // toolStripSeparator2
  86. //
  87. this.toolStripSeparator2.Name = "toolStripSeparator2";
  88. this.toolStripSeparator2.Size = new System.Drawing.Size(205, 6);
  89. //
  90. // cmdLibraryExplorer
  91. //
  92. this.cmdLibraryExplorer.Name = "cmdLibraryExplorer";
  93. this.cmdLibraryExplorer.Size = new System.Drawing.Size(208, 22);
  94. this.cmdLibraryExplorer.Text = "Open Library Explorer";
  95. //
  96. // cmdRestart
  97. //
  98. this.cmdRestart.Name = "cmdRestart";
  99. this.cmdRestart.Size = new System.Drawing.Size(208, 22);
  100. this.cmdRestart.Text = "Restart Server";
  101. //
  102. // toolStripSeparator1
  103. //
  104. this.toolStripSeparator1.Name = "toolStripSeparator1";
  105. this.toolStripSeparator1.Size = new System.Drawing.Size(205, 6);
  106. //
  107. // cmdApiDocs
  108. //
  109. this.cmdApiDocs.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  110. this.cmdStandardDocs,
  111. this.cmdSwagger,
  112. this.cmdGtihub});
  113. this.cmdApiDocs.Name = "cmdApiDocs";
  114. this.cmdApiDocs.Size = new System.Drawing.Size(208, 22);
  115. this.cmdApiDocs.Text = "View Api Documentation";
  116. //
  117. // cmdStandardDocs
  118. //
  119. this.cmdStandardDocs.Name = "cmdStandardDocs";
  120. this.cmdStandardDocs.Size = new System.Drawing.Size(136, 22);
  121. this.cmdStandardDocs.Text = "Standard";
  122. //
  123. // cmdSwagger
  124. //
  125. this.cmdSwagger.Name = "cmdSwagger";
  126. this.cmdSwagger.Size = new System.Drawing.Size(136, 22);
  127. this.cmdSwagger.Text = "Swagger";
  128. //
  129. // cmdGtihub
  130. //
  131. this.cmdGtihub.Name = "cmdGtihub";
  132. this.cmdGtihub.Size = new System.Drawing.Size(136, 22);
  133. this.cmdGtihub.Text = "Github Wiki";
  134. //
  135. // cmdLogWindow
  136. //
  137. this.cmdLogWindow.CheckOnClick = true;
  138. this.cmdLogWindow.Name = "cmdLogWindow";
  139. this.cmdLogWindow.Size = new System.Drawing.Size(208, 22);
  140. this.cmdLogWindow.Text = "Show Log Window";
  141. //
  142. // cmdCommunity
  143. //
  144. this.cmdCommunity.Name = "cmdCommunity";
  145. this.cmdCommunity.Size = new System.Drawing.Size(208, 22);
  146. this.cmdCommunity.Text = "Visit Community";
  147. //
  148. // cmdExit
  149. //
  150. this.cmdExit.Name = "cmdExit";
  151. this.cmdExit.Size = new System.Drawing.Size(208, 22);
  152. this.cmdExit.Text = "Exit";
  153. //
  154. // MainForm
  155. //
  156. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  157. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  158. this.ClientSize = new System.Drawing.Size(284, 261);
  159. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  160. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  161. this.Name = "MainForm";
  162. this.ShowInTaskbar = false;
  163. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  164. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  165. this.Text = "MainForm";
  166. this.contextMenuStrip1.ResumeLayout(false);
  167. this.ResumeLayout(false);
  168. }
  169. #endregion
  170. private System.Windows.Forms.NotifyIcon notifyIcon1;
  171. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  172. private System.Windows.Forms.ToolStripMenuItem cmdExit;
  173. private System.Windows.Forms.ToolStripMenuItem cmdBrowse;
  174. private System.Windows.Forms.ToolStripMenuItem cmdConfigure;
  175. private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
  176. private System.Windows.Forms.ToolStripMenuItem cmdLibraryExplorer;
  177. private System.Windows.Forms.ToolStripMenuItem cmdRestart;
  178. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  179. private System.Windows.Forms.ToolStripMenuItem cmdLogWindow;
  180. private System.Windows.Forms.ToolStripMenuItem cmdCommunity;
  181. private System.Windows.Forms.ToolStripMenuItem cmdApiDocs;
  182. private System.Windows.Forms.ToolStripMenuItem cmdStandardDocs;
  183. private System.Windows.Forms.ToolStripMenuItem cmdSwagger;
  184. private System.Windows.Forms.ToolStripMenuItem cmdGtihub;
  185. }
  186. }