FrmWordView.Designer.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. namespace ProjectBase.Controls.DocViewer
  2. {
  3. partial class FrmWordView
  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.richEditControl1 = new DevExpress.XtraRichEdit.RichEditControl();
  29. this.btnOpenFile = new DevExpress.XtraEditors.SimpleButton();
  30. this.btnSaveFile = new DevExpress.XtraEditors.SimpleButton();
  31. this.btnSaveAs = new DevExpress.XtraEditors.SimpleButton();
  32. this.btnPreview = new DevExpress.XtraEditors.SimpleButton();
  33. this.btnClose = new DevExpress.XtraEditors.SimpleButton();
  34. this.SuspendLayout();
  35. //
  36. // richEditControl1
  37. //
  38. this.richEditControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  39. | System.Windows.Forms.AnchorStyles.Left)
  40. | System.Windows.Forms.AnchorStyles.Right)));
  41. this.richEditControl1.Location = new System.Drawing.Point(3, 3);
  42. this.richEditControl1.Name = "richEditControl1";
  43. this.richEditControl1.ReadOnly = true;
  44. this.richEditControl1.Size = new System.Drawing.Size(810, 483);
  45. this.richEditControl1.TabIndex = 8;
  46. //
  47. // btnOpenFile
  48. //
  49. this.btnOpenFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  50. this.btnOpenFile.Location = new System.Drawing.Point(388, 505);
  51. this.btnOpenFile.Name = "btnOpenFile";
  52. this.btnOpenFile.Size = new System.Drawing.Size(82, 29);
  53. this.btnOpenFile.TabIndex = 9;
  54. this.btnOpenFile.Text = "打开文件";
  55. this.btnOpenFile.Visible = false;
  56. this.btnOpenFile.Click += new System.EventHandler(this.btnOpenFile_Click);
  57. //
  58. // btnSaveFile
  59. //
  60. this.btnSaveFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  61. this.btnSaveFile.Location = new System.Drawing.Point(476, 505);
  62. this.btnSaveFile.Name = "btnSaveFile";
  63. this.btnSaveFile.Size = new System.Drawing.Size(82, 29);
  64. this.btnSaveFile.TabIndex = 11;
  65. this.btnSaveFile.Text = "保存文件";
  66. this.btnSaveFile.Visible = false;
  67. this.btnSaveFile.Click += new System.EventHandler(this.btnSaveFile_Click);
  68. //
  69. // btnSaveAs
  70. //
  71. this.btnSaveAs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  72. this.btnSaveAs.Location = new System.Drawing.Point(564, 505);
  73. this.btnSaveAs.Name = "btnSaveAs";
  74. this.btnSaveAs.Size = new System.Drawing.Size(82, 29);
  75. this.btnSaveAs.TabIndex = 10;
  76. this.btnSaveAs.Text = "另存为";
  77. this.btnSaveAs.Click += new System.EventHandler(this.btnSaveAs_Click);
  78. //
  79. // btnPreview
  80. //
  81. this.btnPreview.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  82. this.btnPreview.Location = new System.Drawing.Point(652, 505);
  83. this.btnPreview.Name = "btnPreview";
  84. this.btnPreview.Size = new System.Drawing.Size(82, 29);
  85. this.btnPreview.TabIndex = 12;
  86. this.btnPreview.Text = "打印预览";
  87. this.btnPreview.Click += new System.EventHandler(this.btnPreview_Click);
  88. //
  89. // btnClose
  90. //
  91. this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  92. this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  93. this.btnClose.Location = new System.Drawing.Point(740, 505);
  94. this.btnClose.Name = "btnClose";
  95. this.btnClose.Size = new System.Drawing.Size(73, 29);
  96. this.btnClose.TabIndex = 13;
  97. this.btnClose.Text = "关闭";
  98. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  99. //
  100. // FrmWordView
  101. //
  102. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  103. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  104. this.ClientSize = new System.Drawing.Size(816, 546);
  105. this.Controls.Add(this.btnClose);
  106. this.Controls.Add(this.btnPreview);
  107. this.Controls.Add(this.btnSaveFile);
  108. this.Controls.Add(this.btnSaveAs);
  109. this.Controls.Add(this.btnOpenFile);
  110. this.Controls.Add(this.richEditControl1);
  111. this.Name = "FrmWordView";
  112. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  113. this.Text = "Word文档查看";
  114. this.TopMost = true;
  115. this.Load += new System.EventHandler(this.FrmWordView_Load);
  116. this.ResumeLayout(false);
  117. }
  118. #endregion
  119. private DevExpress.XtraRichEdit.RichEditControl richEditControl1;
  120. private DevExpress.XtraEditors.SimpleButton btnOpenFile;
  121. private DevExpress.XtraEditors.SimpleButton btnSaveFile;
  122. private DevExpress.XtraEditors.SimpleButton btnSaveAs;
  123. private DevExpress.XtraEditors.SimpleButton btnPreview;
  124. private DevExpress.XtraEditors.SimpleButton btnClose;
  125. }
  126. }