** ERP 작업 전면 중단 (마크우선) ** 1. ISBN 조회 ㄴ> Yes24방식 반출에서 Yes24 로그인하는 작업 추가 구현 완료 2. 마크 삭제 ㄴ> 마크 추가 단계에서 마크 삭제기능 구현 완료 3. 마크 추가 ㄴ> 505태그 a를 제외한 나머지 태그들 이상하게 옮겨지는 버그 수정 완료.
125 lines
5.1 KiB
C#
125 lines
5.1 KiB
C#
|
|
namespace UniMarc.마크
|
|
{
|
|
partial class DLS_Manage
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.webBrowser1 = new System.Windows.Forms.WebBrowser();
|
|
this.panel2 = new System.Windows.Forms.Panel();
|
|
this.panel3 = new System.Windows.Forms.Panel();
|
|
this.btn_Close = new System.Windows.Forms.Button();
|
|
this.panel1.SuspendLayout();
|
|
this.panel2.SuspendLayout();
|
|
this.panel3.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.btn_Close);
|
|
this.panel1.Controls.Add(this.textBox1);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(1104, 42);
|
|
this.panel1.TabIndex = 4;
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Location = new System.Drawing.Point(450, 11);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.Size = new System.Drawing.Size(366, 21);
|
|
this.textBox1.TabIndex = 2;
|
|
this.textBox1.Click += new System.EventHandler(this.textBox1_Click);
|
|
//
|
|
// webBrowser1
|
|
//
|
|
this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.webBrowser1.Location = new System.Drawing.Point(0, 0);
|
|
this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
|
|
this.webBrowser1.Name = "webBrowser1";
|
|
this.webBrowser1.Size = new System.Drawing.Size(1104, 866);
|
|
this.webBrowser1.TabIndex = 0;
|
|
this.webBrowser1.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowser1_DocumentCompleted);
|
|
//
|
|
// panel2
|
|
//
|
|
this.panel2.Controls.Add(this.panel3);
|
|
this.panel2.Controls.Add(this.panel1);
|
|
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.panel2.Location = new System.Drawing.Point(0, 0);
|
|
this.panel2.Name = "panel2";
|
|
this.panel2.Size = new System.Drawing.Size(1104, 908);
|
|
this.panel2.TabIndex = 5;
|
|
//
|
|
// panel3
|
|
//
|
|
this.panel3.Controls.Add(this.webBrowser1);
|
|
this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.panel3.Location = new System.Drawing.Point(0, 42);
|
|
this.panel3.Name = "panel3";
|
|
this.panel3.Size = new System.Drawing.Size(1104, 866);
|
|
this.panel3.TabIndex = 5;
|
|
//
|
|
// btn_Close
|
|
//
|
|
this.btn_Close.Location = new System.Drawing.Point(989, 8);
|
|
this.btn_Close.Name = "btn_Close";
|
|
this.btn_Close.Size = new System.Drawing.Size(103, 27);
|
|
this.btn_Close.TabIndex = 3;
|
|
this.btn_Close.Text = "닫 기";
|
|
this.btn_Close.UseVisualStyleBackColor = true;
|
|
this.btn_Close.Click += new System.EventHandler(this.btn_Close_Click);
|
|
//
|
|
// DLS_Manage
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1104, 908);
|
|
this.Controls.Add(this.panel2);
|
|
this.Name = "DLS_Manage";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "DLS_Manage";
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.panel2.ResumeLayout(false);
|
|
this.panel3.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
public System.Windows.Forms.WebBrowser webBrowser1;
|
|
private System.Windows.Forms.Panel panel2;
|
|
private System.Windows.Forms.Panel panel3;
|
|
private System.Windows.Forms.Button btn_Close;
|
|
}
|
|
} |