You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.7 KiB

  1. namespace Emgu.CV.UI.GLView
  2. {
  3. partial class GLImageViewer
  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.glImageView = new Emgu.CV.UI.GLView.GLImageView();
  29. this.loadImageButton = new System.Windows.Forms.Button();
  30. this.SuspendLayout();
  31. //
  32. // glImageView
  33. //
  34. this.glImageView.BackColor = System.Drawing.Color.Black;
  35. this.glImageView.Dock = System.Windows.Forms.DockStyle.Fill;
  36. this.glImageView.GridLines = 0;
  37. this.glImageView.Location = new System.Drawing.Point(0, 0);
  38. this.glImageView.Name = "glImageView";
  39. this.glImageView.Rectangles = null;
  40. this.glImageView.Rotation = 0F;
  41. this.glImageView.Size = new System.Drawing.Size(754, 493);
  42. this.glImageView.TabIndex = 0;
  43. this.glImageView.VSync = false;
  44. //
  45. // loadImageButton
  46. //
  47. this.loadImageButton.Location = new System.Drawing.Point(12, 12);
  48. this.loadImageButton.Name = "loadImageButton";
  49. this.loadImageButton.Size = new System.Drawing.Size(75, 23);
  50. this.loadImageButton.TabIndex = 1;
  51. this.loadImageButton.Text = "Load Image";
  52. this.loadImageButton.UseVisualStyleBackColor = true;
  53. this.loadImageButton.Click += new System.EventHandler(this.loadImageButton_Click);
  54. //
  55. // GLImageViewer
  56. //
  57. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  58. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  59. this.ClientSize = new System.Drawing.Size(754, 493);
  60. this.Controls.Add(this.loadImageButton);
  61. this.Controls.Add(this.glImageView);
  62. this.Name = "GLImageViewer";
  63. this.Text = "GLImageViewer";
  64. this.ResumeLayout(false);
  65. }
  66. #endregion
  67. private GLImageView glImageView;
  68. private System.Windows.Forms.Button loadImageButton;
  69. }
  70. }