123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- namespace PaintDotNet.ImageCollect
- {
- partial class CommonRotateControl
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region 组件设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.panel1 = new System.Windows.Forms.Panel();
- this.ckbVertical = new System.Windows.Forms.CheckBox();
- this.ckbHorizontal = new System.Windows.Forms.CheckBox();
- this.imgRotateComboBox = new System.Windows.Forms.ComboBox();
- this.groupBox1.SuspendLayout();
- this.panel1.SuspendLayout();
- this.SuspendLayout();
- //
- // groupBox1
- //
- this.groupBox1.AutoSize = true;
- this.groupBox1.Controls.Add(this.panel1);
- this.groupBox1.Controls.Add(this.imgRotateComboBox);
- this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.groupBox1.Location = new System.Drawing.Point(0, 0);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Padding = new System.Windows.Forms.Padding(12, 12, 12, 1);
- this.groupBox1.Size = new System.Drawing.Size(464, 90);
- this.groupBox1.TabIndex = 2;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "图像旋转";
- //
- // panel1
- //
- this.panel1.AutoSize = true;
- this.panel1.BackColor = System.Drawing.Color.Transparent;
- this.panel1.Controls.Add(this.ckbVertical);
- this.panel1.Controls.Add(this.ckbHorizontal);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel1.Location = new System.Drawing.Point(12, 46);
- this.panel1.Name = "panel1";
- this.panel1.Padding = new System.Windows.Forms.Padding(1);
- this.panel1.Size = new System.Drawing.Size(440, 43);
- this.panel1.TabIndex = 1;
- //
- // ckbVertical
- //
- this.ckbVertical.AutoSize = true;
- this.ckbVertical.Dock = System.Windows.Forms.DockStyle.Left;
- this.ckbVertical.Location = new System.Drawing.Point(85, 1);
- this.ckbVertical.Margin = new System.Windows.Forms.Padding(8);
- this.ckbVertical.Name = "ckbVertical";
- this.ckbVertical.Padding = new System.Windows.Forms.Padding(20, 0, 0, 0);
- this.ckbVertical.Size = new System.Drawing.Size(92, 41);
- this.ckbVertical.TabIndex = 1;
- this.ckbVertical.Text = "Vertical";
- this.ckbVertical.UseVisualStyleBackColor = true;
- this.ckbVertical.Click += new System.EventHandler(this.ckbHorizontal_Click);
- //
- // ckbHorizontal
- //
- this.ckbHorizontal.AutoSize = true;
- this.ckbHorizontal.BackColor = System.Drawing.Color.Transparent;
- this.ckbHorizontal.Dock = System.Windows.Forms.DockStyle.Left;
- this.ckbHorizontal.Location = new System.Drawing.Point(1, 1);
- this.ckbHorizontal.Margin = new System.Windows.Forms.Padding(8);
- this.ckbHorizontal.Name = "ckbHorizontal";
- this.ckbHorizontal.Size = new System.Drawing.Size(84, 41);
- this.ckbHorizontal.TabIndex = 0;
- this.ckbHorizontal.Text = "Horizontal";
- this.ckbHorizontal.UseVisualStyleBackColor = false;
- this.ckbHorizontal.Click += new System.EventHandler(this.ckbHorizontal_Click);
- //
- // imgRotateComboBox
- //
- this.imgRotateComboBox.Dock = System.Windows.Forms.DockStyle.Top;
- this.imgRotateComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.imgRotateComboBox.FormattingEnabled = true;
- this.imgRotateComboBox.Location = new System.Drawing.Point(12, 26);
- this.imgRotateComboBox.Name = "imgRotateComboBox";
- this.imgRotateComboBox.Size = new System.Drawing.Size(440, 20);
- this.imgRotateComboBox.TabIndex = 0;
- this.imgRotateComboBox.SelectedIndexChanged += new System.EventHandler(this.imgRotateComboBox_SelectedIndexChanged);
- //
- // CommonRotateControl
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.Controls.Add(this.groupBox1);
- this.Name = "CommonRotateControl";
- this.Size = new System.Drawing.Size(464, 90);
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.ComboBox imgRotateComboBox;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.CheckBox ckbVertical;
- private System.Windows.Forms.CheckBox ckbHorizontal;
- }
- }
|