MainForm.Designer.cs 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. namespace felixyin
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  29. this.webBrowser1 = new System.Windows.Forms.WebBrowser();
  30. this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
  31. this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
  32. this.openFileDialog2 = new System.Windows.Forms.OpenFileDialog();
  33. this.SuspendLayout();
  34. //
  35. // webBrowser1
  36. //
  37. this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill;
  38. this.webBrowser1.Location = new System.Drawing.Point(0, 0);
  39. this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
  40. this.webBrowser1.Name = "webBrowser1";
  41. this.webBrowser1.ScrollBarsEnabled = false;
  42. this.webBrowser1.Size = new System.Drawing.Size(1184, 562);
  43. this.webBrowser1.TabIndex = 0;
  44. //
  45. // openFileDialog1
  46. //
  47. this.openFileDialog1.Filter = "*.xls|*.xlsx";
  48. //
  49. // openFileDialog2
  50. //
  51. this.openFileDialog2.Filter = "*.avi|*.wmv|*.rm|*.rmvb|*.mpeg1|*.mpeg2|*.mpeg4|*.mp4|*.3gp|*.asf|*.swf|*.vob|*.d" +
  52. "at|*.mov|*.m4v|*.flv|*.f4v|*.mkv|*.mts|*.ts";
  53. //
  54. // MainForm
  55. //
  56. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  57. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  58. this.BackColor = System.Drawing.SystemColors.ControlLight;
  59. this.ClientSize = new System.Drawing.Size(1184, 562);
  60. this.Controls.Add(this.webBrowser1);
  61. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  62. this.MinimumSize = new System.Drawing.Size(1200, 572);
  63. this.Name = "MainForm";
  64. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  65. this.Text = "图码联侦综合分析系统";
  66. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing_1);
  67. this.ResumeLayout(false);
  68. }
  69. #endregion
  70. private System.Windows.Forms.WebBrowser webBrowser1;
  71. private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
  72. private System.Windows.Forms.OpenFileDialog openFileDialog1;
  73. private System.Windows.Forms.OpenFileDialog openFileDialog2;
  74. }
  75. }