MainForm.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. namespace Dicom.Compare {
  2. partial class MainForm {
  3. /// <summary>
  4. /// Required designer variable.
  5. /// </summary>
  6. private System.ComponentModel.IContainer components = null;
  7. /// <summary>
  8. /// Clean up any resources being used.
  9. /// </summary>
  10. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  11. protected override void Dispose(bool disposing) {
  12. if (disposing && (components != null)) {
  13. components.Dispose();
  14. }
  15. base.Dispose(disposing);
  16. }
  17. #region Windows Form Designer generated code
  18. /// <summary>
  19. /// Required method for Designer support - do not modify
  20. /// the contents of this method with the code editor.
  21. /// </summary>
  22. private void InitializeComponent() {
  23. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  24. this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  25. this.selectFilesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  26. this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  27. this.cbIgnorePixelData = new System.Windows.Forms.ToolStripMenuItem();
  28. this.cbIgnoreUIDs = new System.Windows.Forms.ToolStripMenuItem();
  29. this.cbIgnoreVR = new System.Windows.Forms.ToolStripMenuItem();
  30. this.cbIgnoreGroupLengths = new System.Windows.Forms.ToolStripMenuItem();
  31. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  32. this.lvFile1 = new Dicom.Compare.ListViewEx();
  33. this.columnHeaderTag = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  34. this.columnHeaderVR = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  35. this.columnHeaderLength = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  36. this.columnHeaderValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  37. this.lblFile1 = new System.Windows.Forms.Label();
  38. this.lvFile2 = new Dicom.Compare.ListViewEx();
  39. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  40. this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  41. this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  42. this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  43. this.lblFile2 = new System.Windows.Forms.Label();
  44. this.menuStrip1.SuspendLayout();
  45. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  46. this.splitContainer1.Panel1.SuspendLayout();
  47. this.splitContainer1.Panel2.SuspendLayout();
  48. this.splitContainer1.SuspendLayout();
  49. this.SuspendLayout();
  50. //
  51. // menuStrip1
  52. //
  53. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  54. this.fileToolStripMenuItem,
  55. this.optionsToolStripMenuItem});
  56. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  57. this.menuStrip1.Name = "menuStrip1";
  58. this.menuStrip1.Size = new System.Drawing.Size(1008, 24);
  59. this.menuStrip1.TabIndex = 0;
  60. this.menuStrip1.Text = "menuStrip1";
  61. //
  62. // fileToolStripMenuItem
  63. //
  64. this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  65. this.selectFilesToolStripMenuItem});
  66. this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
  67. this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
  68. this.fileToolStripMenuItem.Text = "&File";
  69. //
  70. // selectFilesToolStripMenuItem
  71. //
  72. this.selectFilesToolStripMenuItem.Name = "selectFilesToolStripMenuItem";
  73. this.selectFilesToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
  74. this.selectFilesToolStripMenuItem.Text = "&Select Files";
  75. this.selectFilesToolStripMenuItem.Click += new System.EventHandler(this.OnClickSelect);
  76. //
  77. // optionsToolStripMenuItem
  78. //
  79. this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  80. this.cbIgnorePixelData,
  81. this.cbIgnoreUIDs,
  82. this.cbIgnoreVR,
  83. this.cbIgnoreGroupLengths});
  84. this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
  85. this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
  86. this.optionsToolStripMenuItem.Text = "&Options";
  87. //
  88. // cbIgnorePixelData
  89. //
  90. this.cbIgnorePixelData.Checked = true;
  91. this.cbIgnorePixelData.CheckOnClick = true;
  92. this.cbIgnorePixelData.CheckState = System.Windows.Forms.CheckState.Checked;
  93. this.cbIgnorePixelData.Name = "cbIgnorePixelData";
  94. this.cbIgnorePixelData.Size = new System.Drawing.Size(189, 22);
  95. this.cbIgnorePixelData.Text = "Ignore Pixel Data";
  96. this.cbIgnorePixelData.CheckedChanged += new System.EventHandler(this.OnOptionChanged);
  97. //
  98. // cbIgnoreUIDs
  99. //
  100. this.cbIgnoreUIDs.Checked = true;
  101. this.cbIgnoreUIDs.CheckOnClick = true;
  102. this.cbIgnoreUIDs.CheckState = System.Windows.Forms.CheckState.Checked;
  103. this.cbIgnoreUIDs.Name = "cbIgnoreUIDs";
  104. this.cbIgnoreUIDs.Size = new System.Drawing.Size(189, 22);
  105. this.cbIgnoreUIDs.Text = "Ignore UIDs";
  106. this.cbIgnoreUIDs.CheckedChanged += new System.EventHandler(this.OnOptionChanged);
  107. //
  108. // cbIgnoreVR
  109. //
  110. this.cbIgnoreVR.Checked = true;
  111. this.cbIgnoreVR.CheckOnClick = true;
  112. this.cbIgnoreVR.CheckState = System.Windows.Forms.CheckState.Checked;
  113. this.cbIgnoreVR.Name = "cbIgnoreVR";
  114. this.cbIgnoreVR.Size = new System.Drawing.Size(189, 22);
  115. this.cbIgnoreVR.Text = "Ignore VR";
  116. this.cbIgnoreVR.CheckedChanged += new System.EventHandler(this.OnOptionChanged);
  117. //
  118. // cbIgnoreGroupLengths
  119. //
  120. this.cbIgnoreGroupLengths.CheckOnClick = true;
  121. this.cbIgnoreGroupLengths.Name = "cbIgnoreGroupLengths";
  122. this.cbIgnoreGroupLengths.Size = new System.Drawing.Size(189, 22);
  123. this.cbIgnoreGroupLengths.Text = "Ignore Group Lengths";
  124. this.cbIgnoreGroupLengths.CheckedChanged += new System.EventHandler(this.OnOptionChanged);
  125. //
  126. // splitContainer1
  127. //
  128. this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  129. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  130. this.splitContainer1.Location = new System.Drawing.Point(0, 24);
  131. this.splitContainer1.Name = "splitContainer1";
  132. //
  133. // splitContainer1.Panel1
  134. //
  135. this.splitContainer1.Panel1.Controls.Add(this.lvFile1);
  136. this.splitContainer1.Panel1.Controls.Add(this.lblFile1);
  137. //
  138. // splitContainer1.Panel2
  139. //
  140. this.splitContainer1.Panel2.Controls.Add(this.lvFile2);
  141. this.splitContainer1.Panel2.Controls.Add(this.lblFile2);
  142. this.splitContainer1.Size = new System.Drawing.Size(1008, 705);
  143. this.splitContainer1.SplitterDistance = 504;
  144. this.splitContainer1.TabIndex = 1;
  145. //
  146. // lvFile1
  147. //
  148. this.lvFile1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  149. this.columnHeaderTag,
  150. this.columnHeaderVR,
  151. this.columnHeaderLength,
  152. this.columnHeaderValue});
  153. this.lvFile1.Dock = System.Windows.Forms.DockStyle.Fill;
  154. this.lvFile1.FullRowSelect = true;
  155. this.lvFile1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
  156. this.lvFile1.HideSelection = false;
  157. this.lvFile1.Location = new System.Drawing.Point(0, 25);
  158. this.lvFile1.MultiSelect = false;
  159. this.lvFile1.Name = "lvFile1";
  160. this.lvFile1.Size = new System.Drawing.Size(502, 678);
  161. this.lvFile1.TabIndex = 2;
  162. this.lvFile1.UseCompatibleStateImageBehavior = false;
  163. this.lvFile1.View = System.Windows.Forms.View.Details;
  164. this.lvFile1.Scroll += new System.Windows.Forms.ScrollEventHandler(this.OnScroll);
  165. this.lvFile1.SelectedIndexChanged += new System.EventHandler(this.OnSelect);
  166. this.lvFile1.SizeChanged += new System.EventHandler(this.OnSizeChanged);
  167. this.lvFile1.MouseEnter += new System.EventHandler(this.OnMouseEnter);
  168. //
  169. // columnHeaderTag
  170. //
  171. this.columnHeaderTag.Text = "Tag";
  172. this.columnHeaderTag.Width = 230;
  173. //
  174. // columnHeaderVR
  175. //
  176. this.columnHeaderVR.Text = "VR";
  177. this.columnHeaderVR.Width = 40;
  178. //
  179. // columnHeaderLength
  180. //
  181. this.columnHeaderLength.Text = "Length";
  182. //
  183. // columnHeaderValue
  184. //
  185. this.columnHeaderValue.Text = "Value";
  186. this.columnHeaderValue.Width = 440;
  187. //
  188. // lblFile1
  189. //
  190. this.lblFile1.Dock = System.Windows.Forms.DockStyle.Top;
  191. this.lblFile1.Location = new System.Drawing.Point(0, 0);
  192. this.lblFile1.Name = "lblFile1";
  193. this.lblFile1.Size = new System.Drawing.Size(502, 25);
  194. this.lblFile1.TabIndex = 0;
  195. this.lblFile1.Text = "(none)";
  196. this.lblFile1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  197. //
  198. // lvFile2
  199. //
  200. this.lvFile2.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  201. this.columnHeader1,
  202. this.columnHeader2,
  203. this.columnHeader3,
  204. this.columnHeader4});
  205. this.lvFile2.Dock = System.Windows.Forms.DockStyle.Fill;
  206. this.lvFile2.FullRowSelect = true;
  207. this.lvFile2.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
  208. this.lvFile2.HideSelection = false;
  209. this.lvFile2.Location = new System.Drawing.Point(0, 25);
  210. this.lvFile2.MultiSelect = false;
  211. this.lvFile2.Name = "lvFile2";
  212. this.lvFile2.Size = new System.Drawing.Size(498, 678);
  213. this.lvFile2.TabIndex = 3;
  214. this.lvFile2.UseCompatibleStateImageBehavior = false;
  215. this.lvFile2.View = System.Windows.Forms.View.Details;
  216. this.lvFile2.Scroll += new System.Windows.Forms.ScrollEventHandler(this.OnScroll);
  217. this.lvFile2.SelectedIndexChanged += new System.EventHandler(this.OnSelect);
  218. this.lvFile2.SizeChanged += new System.EventHandler(this.OnSizeChanged);
  219. this.lvFile2.MouseEnter += new System.EventHandler(this.OnMouseEnter);
  220. //
  221. // columnHeader1
  222. //
  223. this.columnHeader1.Text = "Tag";
  224. this.columnHeader1.Width = 230;
  225. //
  226. // columnHeader2
  227. //
  228. this.columnHeader2.Text = "VR";
  229. this.columnHeader2.Width = 40;
  230. //
  231. // columnHeader3
  232. //
  233. this.columnHeader3.Text = "Length";
  234. //
  235. // columnHeader4
  236. //
  237. this.columnHeader4.Text = "Value";
  238. this.columnHeader4.Width = 440;
  239. //
  240. // lblFile2
  241. //
  242. this.lblFile2.Dock = System.Windows.Forms.DockStyle.Top;
  243. this.lblFile2.Location = new System.Drawing.Point(0, 0);
  244. this.lblFile2.Name = "lblFile2";
  245. this.lblFile2.Size = new System.Drawing.Size(498, 25);
  246. this.lblFile2.TabIndex = 1;
  247. this.lblFile2.Text = "(none)";
  248. this.lblFile2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  249. //
  250. // MainForm
  251. //
  252. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  253. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  254. this.ClientSize = new System.Drawing.Size(1008, 729);
  255. this.Controls.Add(this.splitContainer1);
  256. this.Controls.Add(this.menuStrip1);
  257. this.MainMenuStrip = this.menuStrip1;
  258. this.Name = "MainForm";
  259. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  260. this.Text = "DICOM Compare";
  261. this.Load += new System.EventHandler(this.MainForm_Load);
  262. this.menuStrip1.ResumeLayout(false);
  263. this.menuStrip1.PerformLayout();
  264. this.splitContainer1.Panel1.ResumeLayout(false);
  265. this.splitContainer1.Panel2.ResumeLayout(false);
  266. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  267. this.splitContainer1.ResumeLayout(false);
  268. this.ResumeLayout(false);
  269. this.PerformLayout();
  270. }
  271. #endregion
  272. private System.Windows.Forms.MenuStrip menuStrip1;
  273. private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
  274. private System.Windows.Forms.SplitContainer splitContainer1;
  275. private System.Windows.Forms.Label lblFile1;
  276. private Dicom.Compare.ListViewEx lvFile1;
  277. private System.Windows.Forms.ColumnHeader columnHeaderTag;
  278. private System.Windows.Forms.ColumnHeader columnHeaderVR;
  279. private System.Windows.Forms.ColumnHeader columnHeaderLength;
  280. private System.Windows.Forms.ColumnHeader columnHeaderValue;
  281. private Dicom.Compare.ListViewEx lvFile2;
  282. private System.Windows.Forms.ColumnHeader columnHeader1;
  283. private System.Windows.Forms.ColumnHeader columnHeader2;
  284. private System.Windows.Forms.ColumnHeader columnHeader3;
  285. private System.Windows.Forms.ColumnHeader columnHeader4;
  286. private System.Windows.Forms.Label lblFile2;
  287. private System.Windows.Forms.ToolStripMenuItem selectFilesToolStripMenuItem;
  288. private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
  289. private System.Windows.Forms.ToolStripMenuItem cbIgnorePixelData;
  290. private System.Windows.Forms.ToolStripMenuItem cbIgnoreUIDs;
  291. private System.Windows.Forms.ToolStripMenuItem cbIgnoreVR;
  292. private System.Windows.Forms.ToolStripMenuItem cbIgnoreGroupLengths;
  293. }
  294. }