namespace CSTest { partial class FormMain { /// /// 필수 디자이너 변수입니다. /// private System.ComponentModel.IContainer components = null; /// /// 사용 중인 모든 리소스를 정리합니다. /// /// 관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form 디자이너에서 생성한 코드 /// /// 디자이너 지원에 필요한 메서드입니다. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain)); this.buttonOpen = new System.Windows.Forms.Button(); this.panelMain = new System.Windows.Forms.Panel(); this.myView = new CSCustomDisplay.CustomView(); this.buttonRotateCW = new System.Windows.Forms.Button(); this.buttonRotateCCW = new System.Windows.Forms.Button(); this.buttonRotate180 = new System.Windows.Forms.Button(); this.buttonFlipTB = new System.Windows.Forms.Button(); this.buttonFlipLR = new System.Windows.Forms.Button(); this.btn_ok = new System.Windows.Forms.Button(); this.panelMain.SuspendLayout(); this.SuspendLayout(); // // buttonOpen // this.buttonOpen.Location = new System.Drawing.Point(10, 12); this.buttonOpen.Name = "buttonOpen"; this.buttonOpen.Size = new System.Drawing.Size(136, 39); this.buttonOpen.TabIndex = 0; this.buttonOpen.Text = "打开本地"; this.buttonOpen.UseVisualStyleBackColor = true; this.buttonOpen.Click += new System.EventHandler(this.buttonOpen_Click); // // panelMain // this.panelMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.panelMain.Controls.Add(this.myView); this.panelMain.Location = new System.Drawing.Point(10, 57); this.panelMain.Name = "panelMain"; this.panelMain.Size = new System.Drawing.Size(804, 577); this.panelMain.TabIndex = 2; // // myView // this.myView.BackColor = System.Drawing.Color.Black; this.myView.Dock = System.Windows.Forms.DockStyle.Fill; this.myView.Location = new System.Drawing.Point(0, 0); this.myView.Name = "myView"; this.myView.Size = new System.Drawing.Size(804, 577); this.myView.TabIndex = 0; // // buttonRotateCW // this.buttonRotateCW.Location = new System.Drawing.Point(166, 12); this.buttonRotateCW.Name = "buttonRotateCW"; this.buttonRotateCW.Size = new System.Drawing.Size(69, 39); this.buttonRotateCW.TabIndex = 3; this.buttonRotateCW.Text = "顺转90"; this.buttonRotateCW.UseVisualStyleBackColor = true; this.buttonRotateCW.Click += new System.EventHandler(this.buttonRotateCW_Click); // // buttonRotateCCW // this.buttonRotateCCW.Location = new System.Drawing.Point(240, 12); this.buttonRotateCCW.Name = "buttonRotateCCW"; this.buttonRotateCCW.Size = new System.Drawing.Size(69, 39); this.buttonRotateCCW.TabIndex = 4; this.buttonRotateCCW.Text = "逆转90"; this.buttonRotateCCW.UseVisualStyleBackColor = true; this.buttonRotateCCW.Click += new System.EventHandler(this.buttonRotateCCW_Click); // // buttonRotate180 // this.buttonRotate180.Location = new System.Drawing.Point(314, 12); this.buttonRotate180.Name = "buttonRotate180"; this.buttonRotate180.Size = new System.Drawing.Size(69, 39); this.buttonRotate180.TabIndex = 5; this.buttonRotate180.Text = "旋转180"; this.buttonRotate180.UseVisualStyleBackColor = true; this.buttonRotate180.Click += new System.EventHandler(this.buttonRotate180_Click); // // buttonFlipTB // this.buttonFlipTB.Location = new System.Drawing.Point(387, 12); this.buttonFlipTB.Name = "buttonFlipTB"; this.buttonFlipTB.Size = new System.Drawing.Size(69, 39); this.buttonFlipTB.TabIndex = 6; this.buttonFlipTB.Text = "上下镜像"; this.buttonFlipTB.UseVisualStyleBackColor = true; this.buttonFlipTB.Click += new System.EventHandler(this.buttonFlipTB_Click); // // buttonFlipLR // this.buttonFlipLR.Location = new System.Drawing.Point(461, 12); this.buttonFlipLR.Name = "buttonFlipLR"; this.buttonFlipLR.Size = new System.Drawing.Size(69, 39); this.buttonFlipLR.TabIndex = 7; this.buttonFlipLR.Text = "左右镜像"; this.buttonFlipLR.UseVisualStyleBackColor = true; this.buttonFlipLR.Click += new System.EventHandler(this.buttonFlipLR_Click); // // btn_ok // this.btn_ok.Location = new System.Drawing.Point(536, 12); this.btn_ok.Name = "btn_ok"; this.btn_ok.Size = new System.Drawing.Size(75, 39); this.btn_ok.TabIndex = 8; this.btn_ok.Text = "确定"; this.btn_ok.UseVisualStyleBackColor = true; this.btn_ok.Click += new System.EventHandler(this.btn_ok_Click); // // FormMain // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(824, 646); this.Controls.Add(this.btn_ok); this.Controls.Add(this.buttonFlipLR); this.Controls.Add(this.buttonFlipTB); this.Controls.Add(this.buttonRotate180); this.Controls.Add(this.buttonRotateCCW); this.Controls.Add(this.buttonRotateCW); this.Controls.Add(this.panelMain); this.Controls.Add(this.buttonOpen); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MinimumSize = new System.Drawing.Size(602, 550); this.Name = "FormMain"; this.Text = "影像查看"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing); this.Load += new System.EventHandler(this.FormMain_Load); this.panelMain.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button buttonOpen; private System.Windows.Forms.Panel panelMain; private CSCustomDisplay.CustomView myView; private System.Windows.Forms.Button buttonRotateCW; private System.Windows.Forms.Button buttonRotateCCW; private System.Windows.Forms.Button buttonRotate180; private System.Windows.Forms.Button buttonFlipTB; private System.Windows.Forms.Button buttonFlipLR; private System.Windows.Forms.Button btn_ok; } }