PicturePreviewAdjustControl.Designer.cs 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. namespace PaintDotNet.CustomControl
  2. {
  3. partial class PicturePreviewAdjustControl
  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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.box_Picture = new System.Windows.Forms.GroupBox();
  29. this.panel_Picture = new System.Windows.Forms.Panel();
  30. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  31. this.PanButton = new System.Windows.Forms.Button();
  32. this.MoveSelectionButton = new System.Windows.Forms.Button();
  33. this.ZoomOutButton = new System.Windows.Forms.Button();
  34. this.ZoomInButton = new System.Windows.Forms.Button();
  35. this.box_Picture.SuspendLayout();
  36. this.panel_Picture.SuspendLayout();
  37. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // box_Picture
  41. //
  42. this.box_Picture.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  43. | System.Windows.Forms.AnchorStyles.Left)
  44. | System.Windows.Forms.AnchorStyles.Right)));
  45. this.box_Picture.Controls.Add(this.panel_Picture);
  46. this.box_Picture.Controls.Add(this.PanButton);
  47. this.box_Picture.Controls.Add(this.MoveSelectionButton);
  48. this.box_Picture.Controls.Add(this.ZoomOutButton);
  49. this.box_Picture.Controls.Add(this.ZoomInButton);
  50. this.box_Picture.Location = new System.Drawing.Point(0, 0);
  51. this.box_Picture.Name = "box_Picture";
  52. this.box_Picture.Size = new System.Drawing.Size(385, 350);
  53. this.box_Picture.TabIndex = 14;
  54. this.box_Picture.TabStop = false;
  55. this.box_Picture.Text = "预览";
  56. this.box_Picture.Enter += new System.EventHandler(this.box_Picture_Enter);
  57. this.box_Picture.Resize += new System.EventHandler(this.picturePreviewAdjustControl_Resize);
  58. //
  59. // panel_Picture
  60. //
  61. this.panel_Picture.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  62. | System.Windows.Forms.AnchorStyles.Left)
  63. | System.Windows.Forms.AnchorStyles.Right)));
  64. this.panel_Picture.Controls.Add(this.pictureBox1);
  65. this.panel_Picture.Location = new System.Drawing.Point(8, 53);
  66. this.panel_Picture.Name = "panel_Picture";
  67. this.panel_Picture.Size = new System.Drawing.Size(369, 289);
  68. this.panel_Picture.TabIndex = 4;
  69. //
  70. // pictureBox1
  71. //
  72. this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  73. | System.Windows.Forms.AnchorStyles.Left)
  74. | System.Windows.Forms.AnchorStyles.Right)));
  75. this.pictureBox1.Location = new System.Drawing.Point(0, 0);
  76. this.pictureBox1.Name = "pictureBox1";
  77. this.pictureBox1.Size = new System.Drawing.Size(381, 301);
  78. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  79. this.pictureBox1.TabIndex = 0;
  80. this.pictureBox1.TabStop = false;
  81. this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
  82. this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseDown);
  83. this.pictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseMove);
  84. this.pictureBox1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseUp);
  85. this.pictureBox1.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseWheel);
  86. //
  87. // PanButton
  88. //
  89. this.PanButton.Location = new System.Drawing.Point(111, 21);
  90. this.PanButton.Name = "PanButton";
  91. this.PanButton.Size = new System.Drawing.Size(24, 24);
  92. this.PanButton.TabIndex = 3;
  93. this.PanButton.UseVisualStyleBackColor = true;
  94. this.PanButton.Click += new System.EventHandler(this.PanButton_Click);
  95. //
  96. // MoveSelectionButton
  97. //
  98. this.MoveSelectionButton.Location = new System.Drawing.Point(76, 21);
  99. this.MoveSelectionButton.Name = "MoveSelectionButton";
  100. this.MoveSelectionButton.Size = new System.Drawing.Size(24, 24);
  101. this.MoveSelectionButton.TabIndex = 2;
  102. this.MoveSelectionButton.UseVisualStyleBackColor = true;
  103. this.MoveSelectionButton.Click += new System.EventHandler(this.MoveSelectionButton_Click);
  104. //
  105. // ZoomOutButton
  106. //
  107. this.ZoomOutButton.Location = new System.Drawing.Point(41, 21);
  108. this.ZoomOutButton.Name = "ZoomOutButton";
  109. this.ZoomOutButton.Size = new System.Drawing.Size(24, 24);
  110. this.ZoomOutButton.TabIndex = 1;
  111. this.ZoomOutButton.UseVisualStyleBackColor = true;
  112. this.ZoomOutButton.Click += new System.EventHandler(this.ZoomOutButton_Click);
  113. //
  114. // ZoomInButton
  115. //
  116. this.ZoomInButton.Location = new System.Drawing.Point(6, 21);
  117. this.ZoomInButton.Name = "ZoomInButton";
  118. this.ZoomInButton.Size = new System.Drawing.Size(24, 24);
  119. this.ZoomInButton.TabIndex = 0;
  120. this.ZoomInButton.UseVisualStyleBackColor = true;
  121. this.ZoomInButton.Click += new System.EventHandler(this.ZoomInButton_Click);
  122. //
  123. // PicturePreviewAdjustControl
  124. //
  125. this.Controls.Add(this.box_Picture);
  126. this.Name = "PicturePreviewAdjustControl";
  127. this.Size = new System.Drawing.Size(385, 350);
  128. this.box_Picture.ResumeLayout(false);
  129. this.panel_Picture.ResumeLayout(false);
  130. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  131. this.ResumeLayout(false);
  132. }
  133. #endregion
  134. private System.Windows.Forms.GroupBox box_Picture;
  135. private System.Windows.Forms.Panel panel_Picture;
  136. public System.Windows.Forms.PictureBox pictureBox1;
  137. private System.Windows.Forms.Button PanButton;
  138. private System.Windows.Forms.Button MoveSelectionButton;
  139. private System.Windows.Forms.Button ZoomOutButton;
  140. private System.Windows.Forms.Button ZoomInButton;
  141. }
  142. }