FrmImageView.Designer.cs 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. namespace ProjectBase.Controls.DocViewer
  2. {
  3. partial class FrmImageView
  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.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
  29. this.btnClose = new DevExpress.XtraEditors.SimpleButton();
  30. ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
  31. this.SuspendLayout();
  32. //
  33. // pictureEdit1
  34. //
  35. this.pictureEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  36. | System.Windows.Forms.AnchorStyles.Left)
  37. | System.Windows.Forms.AnchorStyles.Right)));
  38. this.pictureEdit1.Cursor = System.Windows.Forms.Cursors.Default;
  39. this.pictureEdit1.Location = new System.Drawing.Point(12, 12);
  40. this.pictureEdit1.Name = "pictureEdit1";
  41. this.pictureEdit1.Properties.ShowMenu = false;
  42. this.pictureEdit1.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  43. this.pictureEdit1.Properties.ZoomAccelerationFactor = 1D;
  44. this.pictureEdit1.Properties.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureEdit1_Properties_MouseUp);
  45. this.pictureEdit1.Size = new System.Drawing.Size(395, 543);
  46. this.pictureEdit1.TabIndex = 0;
  47. //
  48. // btnClose
  49. //
  50. this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  51. this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  52. this.btnClose.Location = new System.Drawing.Point(332, 572);
  53. this.btnClose.Name = "btnClose";
  54. this.btnClose.Size = new System.Drawing.Size(75, 23);
  55. this.btnClose.TabIndex = 1;
  56. this.btnClose.Text = "关闭";
  57. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  58. //
  59. // FrmImageView
  60. //
  61. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  62. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  63. this.AutoScroll = true;
  64. this.ClientSize = new System.Drawing.Size(419, 607);
  65. this.Controls.Add(this.btnClose);
  66. this.Controls.Add(this.pictureEdit1);
  67. this.Name = "FrmImageView";
  68. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  69. this.Text = "图片查看";
  70. ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
  71. this.ResumeLayout(false);
  72. }
  73. #endregion
  74. public DevExpress.XtraEditors.PictureEdit pictureEdit1;
  75. private DevExpress.XtraEditors.SimpleButton btnClose;
  76. }
  77. }