FormViewPhoto.Designer.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. namespace ImpulseVision
  2. {
  3. partial class FormViewPhoto
  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.PbxImage = new System.Windows.Forms.PictureBox();
  29. ((System.ComponentModel.ISupportInitialize)(this.PbxImage)).BeginInit();
  30. this.SuspendLayout();
  31. //
  32. // PbxImage
  33. //
  34. this.PbxImage.Dock = System.Windows.Forms.DockStyle.Fill;
  35. this.PbxImage.Location = new System.Drawing.Point(0, 0);
  36. this.PbxImage.Name = "PbxImage";
  37. this.PbxImage.Size = new System.Drawing.Size(659, 385);
  38. this.PbxImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  39. this.PbxImage.TabIndex = 0;
  40. this.PbxImage.TabStop = false;
  41. this.PbxImage.Click += new System.EventHandler(this.PbxImage_Click);
  42. //
  43. // FormViewPhoto
  44. //
  45. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  46. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  47. this.BackColor = System.Drawing.Color.Black;
  48. this.ClientSize = new System.Drawing.Size(659, 385);
  49. this.Controls.Add(this.PbxImage);
  50. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  51. this.Name = "FormViewPhoto";
  52. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  53. this.Text = "FormViewPhoto";
  54. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  55. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FormViewPhoto_KeyDown);
  56. ((System.ComponentModel.ISupportInitialize)(this.PbxImage)).EndInit();
  57. this.ResumeLayout(false);
  58. }
  59. #endregion
  60. public System.Windows.Forms.PictureBox PbxImage;
  61. }
  62. }