FrmPDFView.Designer.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. namespace ProjectBase.Controls.DocViewer
  2. {
  3. partial class FrmPDFView
  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.pdfViewer1 = new DevExpress.XtraPdfViewer.PdfViewer();
  29. this.btnOpenFile = new DevExpress.XtraEditors.SimpleButton();
  30. this.btnClose = new DevExpress.XtraEditors.SimpleButton();
  31. this.btnPreview = new DevExpress.XtraEditors.SimpleButton();
  32. this.btnSaveAs = new DevExpress.XtraEditors.SimpleButton();
  33. this.SuspendLayout();
  34. //
  35. // pdfViewer1
  36. //
  37. this.pdfViewer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  38. | System.Windows.Forms.AnchorStyles.Left)
  39. | System.Windows.Forms.AnchorStyles.Right)));
  40. this.pdfViewer1.Location = new System.Drawing.Point(12, 12);
  41. this.pdfViewer1.Name = "pdfViewer1";
  42. this.pdfViewer1.Size = new System.Drawing.Size(792, 473);
  43. this.pdfViewer1.TabIndex = 0;
  44. //
  45. // btnOpenFile
  46. //
  47. this.btnOpenFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  48. this.btnOpenFile.Location = new System.Drawing.Point(12, 502);
  49. this.btnOpenFile.Name = "btnOpenFile";
  50. this.btnOpenFile.Size = new System.Drawing.Size(82, 29);
  51. this.btnOpenFile.TabIndex = 1;
  52. this.btnOpenFile.Text = "打开文件";
  53. this.btnOpenFile.Visible = false;
  54. this.btnOpenFile.Click += new System.EventHandler(this.btnOpenFile_Click);
  55. //
  56. // btnClose
  57. //
  58. this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  59. this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  60. this.btnClose.Location = new System.Drawing.Point(731, 502);
  61. this.btnClose.Name = "btnClose";
  62. this.btnClose.Size = new System.Drawing.Size(73, 29);
  63. this.btnClose.TabIndex = 2;
  64. this.btnClose.Text = "关闭";
  65. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  66. //
  67. // btnPreview
  68. //
  69. this.btnPreview.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  70. this.btnPreview.Location = new System.Drawing.Point(652, 502);
  71. this.btnPreview.Name = "btnPreview";
  72. this.btnPreview.Size = new System.Drawing.Size(73, 29);
  73. this.btnPreview.TabIndex = 1;
  74. this.btnPreview.Text = "打印预览";
  75. this.btnPreview.Click += new System.EventHandler(this.btnPreview_Click);
  76. //
  77. // btnSaveAs
  78. //
  79. this.btnSaveAs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  80. this.btnSaveAs.Location = new System.Drawing.Point(564, 502);
  81. this.btnSaveAs.Name = "btnSaveAs";
  82. this.btnSaveAs.Size = new System.Drawing.Size(82, 29);
  83. this.btnSaveAs.TabIndex = 1;
  84. this.btnSaveAs.Text = "另存为";
  85. this.btnSaveAs.Click += new System.EventHandler(this.btnSaveAs_Click);
  86. //
  87. // FrmPDFView
  88. //
  89. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  90. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  91. this.ClientSize = new System.Drawing.Size(816, 546);
  92. this.Controls.Add(this.btnClose);
  93. this.Controls.Add(this.btnPreview);
  94. this.Controls.Add(this.btnSaveAs);
  95. this.Controls.Add(this.btnOpenFile);
  96. this.Controls.Add(this.pdfViewer1);
  97. this.Name = "FrmPDFView";
  98. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  99. this.Text = "PDF文档查看";
  100. this.TopMost = true;
  101. this.Load += new System.EventHandler(this.FrmPDFView_Load);
  102. this.ResumeLayout(false);
  103. }
  104. #endregion
  105. private DevExpress.XtraEditors.SimpleButton btnOpenFile;
  106. private DevExpress.XtraEditors.SimpleButton btnClose;
  107. private DevExpress.XtraEditors.SimpleButton btnPreview;
  108. private DevExpress.XtraEditors.SimpleButton btnSaveAs;
  109. public DevExpress.XtraPdfViewer.PdfViewer pdfViewer1;
  110. }
  111. }