PageRenderTime 48ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/release3.0/Windows7APICodePack/Samples/Shell/ShellThumbnailBrowserDemo/CS/ThumbnailBrowserDemo/ThumbnailBrowser.Designer.cs

#
C# | 249 lines | 180 code | 7 blank | 62 comment | 3 complexity | e9cc8716725c6702e1af4115e0435e73 MD5 | raw file
Possible License(s): Apache-2.0, GPL-2.0, LGPL-2.1, GPL-3.0, Unlicense
  1. namespace Microsoft.WindowsAPICodePack.Samples.ThumbnailBrowserDemo
  2. {
  3. partial class ThumbnailBrowser
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ThumbnailBrowser));
  29. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  30. this.explorerBrowser1 = new Microsoft.WindowsAPICodePack.Shell.ExplorerBrowser();
  31. this.flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
  32. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  33. this.topNavPanel = new System.Windows.Forms.Panel();
  34. this.comboBox1 = new System.Windows.Forms.ComboBox();
  35. this.browseLocationButton = new System.Windows.Forms.Button();
  36. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  37. this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
  38. this.smallToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  39. this.mediumToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  40. this.largeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  41. this.extraLargeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  42. this.panel3 = new System.Windows.Forms.Panel();
  43. this.splitContainer1.Panel1.SuspendLayout();
  44. this.splitContainer1.Panel2.SuspendLayout();
  45. this.splitContainer1.SuspendLayout();
  46. this.flowLayoutPanel.SuspendLayout();
  47. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  48. this.topNavPanel.SuspendLayout();
  49. this.toolStrip1.SuspendLayout();
  50. this.panel3.SuspendLayout();
  51. this.SuspendLayout();
  52. //
  53. // splitContainer1
  54. //
  55. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  56. this.splitContainer1.Location = new System.Drawing.Point(0, 26);
  57. this.splitContainer1.Name = "splitContainer1";
  58. //
  59. // splitContainer1.Panel1
  60. //
  61. this.splitContainer1.Panel1.Controls.Add(this.explorerBrowser1);
  62. //
  63. // splitContainer1.Panel2
  64. //
  65. this.splitContainer1.Panel2.AutoScroll = true;
  66. this.splitContainer1.Panel2.Controls.Add(this.flowLayoutPanel);
  67. this.splitContainer1.Size = new System.Drawing.Size(881, 567);
  68. this.splitContainer1.SplitterDistance = 292;
  69. this.splitContainer1.TabIndex = 0;
  70. //
  71. // explorerBrowser1
  72. //
  73. this.explorerBrowser1.Dock = System.Windows.Forms.DockStyle.Fill;
  74. this.explorerBrowser1.Location = new System.Drawing.Point(0, 0);
  75. this.explorerBrowser1.Name = "explorerBrowser1";
  76. this.explorerBrowser1.Size = new System.Drawing.Size(292, 567);
  77. this.explorerBrowser1.TabIndex = 0;
  78. this.explorerBrowser1.Text = "explorerBrowser1";
  79. //
  80. // flowLayoutPanel
  81. //
  82. this.flowLayoutPanel.AutoScroll = true;
  83. this.flowLayoutPanel.Controls.Add(this.pictureBox1);
  84. this.flowLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  85. this.flowLayoutPanel.Location = new System.Drawing.Point(0, 0);
  86. this.flowLayoutPanel.Name = "flowLayoutPanel";
  87. this.flowLayoutPanel.Size = new System.Drawing.Size(585, 567);
  88. this.flowLayoutPanel.TabIndex = 0;
  89. //
  90. // pictureBox1
  91. //
  92. this.pictureBox1.Location = new System.Drawing.Point(3, 3);
  93. this.pictureBox1.Name = "pictureBox1";
  94. this.pictureBox1.Size = new System.Drawing.Size(360, 279);
  95. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
  96. this.pictureBox1.TabIndex = 1;
  97. this.pictureBox1.TabStop = false;
  98. //
  99. // topNavPanel
  100. //
  101. this.topNavPanel.BackgroundImage = global::Microsoft.WindowsAPICodePack.Samples.ThumbnailBrowserDemo.Properties.Resources.ToolBarGradient;
  102. this.topNavPanel.Controls.Add(this.comboBox1);
  103. this.topNavPanel.Controls.Add(this.browseLocationButton);
  104. this.topNavPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  105. this.topNavPanel.Location = new System.Drawing.Point(0, 0);
  106. this.topNavPanel.Name = "topNavPanel";
  107. this.topNavPanel.Size = new System.Drawing.Size(881, 26);
  108. this.topNavPanel.TabIndex = 1;
  109. //
  110. // comboBox1
  111. //
  112. this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  113. this.comboBox1.FormattingEnabled = true;
  114. this.comboBox1.Items.AddRange(new object[] {
  115. "Thumbnail or Icon",
  116. "Thumbnail only",
  117. "Icon only"});
  118. this.comboBox1.Location = new System.Drawing.Point(73, 2);
  119. this.comboBox1.Name = "comboBox1";
  120. this.comboBox1.Size = new System.Drawing.Size(121, 21);
  121. this.comboBox1.TabIndex = 1;
  122. this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
  123. //
  124. // browseLocationButton
  125. //
  126. this.browseLocationButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  127. this.browseLocationButton.Location = new System.Drawing.Point(803, 3);
  128. this.browseLocationButton.Name = "browseLocationButton";
  129. this.browseLocationButton.Size = new System.Drawing.Size(75, 23);
  130. this.browseLocationButton.TabIndex = 0;
  131. this.browseLocationButton.Text = "Browse...";
  132. this.browseLocationButton.UseVisualStyleBackColor = true;
  133. this.browseLocationButton.Click += new System.EventHandler(this.browseLocationButton_Click);
  134. //
  135. // toolStrip1
  136. //
  137. this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Left;
  138. this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
  139. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  140. this.toolStripSplitButton1});
  141. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  142. this.toolStrip1.Name = "toolStrip1";
  143. this.toolStrip1.Size = new System.Drawing.Size(70, 26);
  144. this.toolStrip1.TabIndex = 2;
  145. this.toolStrip1.Text = "toolStrip1";
  146. //
  147. // toolStripSplitButton1
  148. //
  149. this.toolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  150. this.smallToolStripMenuItem,
  151. this.mediumToolStripMenuItem,
  152. this.largeToolStripMenuItem,
  153. this.extraLargeToolStripMenuItem});
  154. this.toolStripSplitButton1.Image = global::Microsoft.WindowsAPICodePack.Samples.ThumbnailBrowserDemo.Properties.Resources.large;
  155. this.toolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
  156. this.toolStripSplitButton1.Name = "toolStripSplitButton1";
  157. this.toolStripSplitButton1.Size = new System.Drawing.Size(67, 20);
  158. this.toolStripSplitButton1.Text = "Views";
  159. this.toolStripSplitButton1.ButtonClick += new System.EventHandler(this.toolStripSplitButton1_ButtonClick);
  160. //
  161. // smallToolStripMenuItem
  162. //
  163. this.smallToolStripMenuItem.Image = global::Microsoft.WindowsAPICodePack.Samples.ThumbnailBrowserDemo.Properties.Resources.small;
  164. this.smallToolStripMenuItem.Name = "smallToolStripMenuItem";
  165. this.smallToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
  166. this.smallToolStripMenuItem.Text = "Small";
  167. this.smallToolStripMenuItem.Click += new System.EventHandler(this.smallToolStripMenuItem_Click);
  168. //
  169. // mediumToolStripMenuItem
  170. //
  171. this.mediumToolStripMenuItem.Image = global::Microsoft.WindowsAPICodePack.Samples.ThumbnailBrowserDemo.Properties.Resources.medium;
  172. this.mediumToolStripMenuItem.Name = "mediumToolStripMenuItem";
  173. this.mediumToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
  174. this.mediumToolStripMenuItem.Text = "Medium";
  175. this.mediumToolStripMenuItem.Click += new System.EventHandler(this.mediumToolStripMenuItem_Click);
  176. //
  177. // largeToolStripMenuItem
  178. //
  179. this.largeToolStripMenuItem.Image = global::Microsoft.WindowsAPICodePack.Samples.ThumbnailBrowserDemo.Properties.Resources.large;
  180. this.largeToolStripMenuItem.Name = "largeToolStripMenuItem";
  181. this.largeToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
  182. this.largeToolStripMenuItem.Text = "Large";
  183. this.largeToolStripMenuItem.Click += new System.EventHandler(this.largeToolStripMenuItem_Click);
  184. //
  185. // extraLargeToolStripMenuItem
  186. //
  187. this.extraLargeToolStripMenuItem.Image = global::Microsoft.WindowsAPICodePack.Samples.ThumbnailBrowserDemo.Properties.Resources.extralarge;
  188. this.extraLargeToolStripMenuItem.Name = "extraLargeToolStripMenuItem";
  189. this.extraLargeToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
  190. this.extraLargeToolStripMenuItem.Text = "Extra Large";
  191. this.extraLargeToolStripMenuItem.Click += new System.EventHandler(this.extraLargeToolStripMenuItem_Click);
  192. //
  193. // panel3
  194. //
  195. this.panel3.Controls.Add(this.toolStrip1);
  196. this.panel3.Controls.Add(this.topNavPanel);
  197. this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
  198. this.panel3.Location = new System.Drawing.Point(0, 0);
  199. this.panel3.Name = "panel3";
  200. this.panel3.Size = new System.Drawing.Size(881, 26);
  201. this.panel3.TabIndex = 2;
  202. //
  203. // ThumbnailBrowser
  204. //
  205. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  206. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  207. this.ClientSize = new System.Drawing.Size(881, 593);
  208. this.Controls.Add(this.splitContainer1);
  209. this.Controls.Add(this.panel3);
  210. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  211. this.Name = "ThumbnailBrowser";
  212. this.Text = "Thumbnail/Icon Browser Demo";
  213. this.splitContainer1.Panel1.ResumeLayout(false);
  214. this.splitContainer1.Panel2.ResumeLayout(false);
  215. this.splitContainer1.ResumeLayout(false);
  216. this.flowLayoutPanel.ResumeLayout(false);
  217. this.flowLayoutPanel.PerformLayout();
  218. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  219. this.topNavPanel.ResumeLayout(false);
  220. this.toolStrip1.ResumeLayout(false);
  221. this.toolStrip1.PerformLayout();
  222. this.panel3.ResumeLayout(false);
  223. this.panel3.PerformLayout();
  224. this.ResumeLayout(false);
  225. }
  226. #endregion
  227. private System.Windows.Forms.SplitContainer splitContainer1;
  228. private Microsoft.WindowsAPICodePack.Shell.ExplorerBrowser explorerBrowser1;
  229. private System.Windows.Forms.Panel topNavPanel;
  230. private System.Windows.Forms.Button browseLocationButton;
  231. private System.Windows.Forms.ToolStrip toolStrip1;
  232. private System.Windows.Forms.ToolStripSplitButton toolStripSplitButton1;
  233. private System.Windows.Forms.ToolStripMenuItem smallToolStripMenuItem;
  234. private System.Windows.Forms.ToolStripMenuItem mediumToolStripMenuItem;
  235. private System.Windows.Forms.ToolStripMenuItem largeToolStripMenuItem;
  236. private System.Windows.Forms.ToolStripMenuItem extraLargeToolStripMenuItem;
  237. private System.Windows.Forms.Panel panel3;
  238. private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel;
  239. private System.Windows.Forms.PictureBox pictureBox1;
  240. private System.Windows.Forms.ComboBox comboBox1;
  241. }
  242. }