Yes24 - 바뀐 예스 양식에 따라 수정 =====* unimarc *===== - 목록집계 - ISBN 검수 작업 수정완료 - 활성화 시킴 - ISBN 조회 - 세트 분할 추가 - INSERT키 입력시 분할을 도와줄 폼이 표출됨. (Check_ISBN_Split.cs) - 저자기호 - 이재철 / 장일세 / 커터샌본 / 국중저자기호 입력완료 사용자의 요구사항에 맞춰 필수입력값만 입력하면 저자기호가 반환됨. ㄴ> 추후 저자기호가 빈 목록을 한꺼번에 저자기호를 입력해줄 폼 구상해야함. (소스 수정 가능성있음)
236 lines
11 KiB
C#
236 lines
11 KiB
C#
namespace WindowsFormsApp1.Mac
|
|
{
|
|
partial class All_Book_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()
|
|
{
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.btn_Search = new System.Windows.Forms.Button();
|
|
this.btn_Add = new System.Windows.Forms.Button();
|
|
this.btn_Edit = new System.Windows.Forms.Button();
|
|
this.btn_Delete = new System.Windows.Forms.Button();
|
|
this.btn_Close = new System.Windows.Forms.Button();
|
|
this.chk_V = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.maker = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.book_comp = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.author = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.set_price = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.set_count = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.set_isbn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.set_name = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView1
|
|
//
|
|
this.dataGridView1.AllowUserToAddRows = false;
|
|
this.dataGridView1.AllowUserToDeleteRows = false;
|
|
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
|
|
dataGridViewCellStyle1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
|
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
|
|
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
|
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
|
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
|
|
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.set_name,
|
|
this.set_isbn,
|
|
this.set_count,
|
|
this.set_price,
|
|
this.author,
|
|
this.book_comp,
|
|
this.maker,
|
|
this.chk_V});
|
|
this.dataGridView1.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
|
|
this.dataGridView1.Location = new System.Drawing.Point(12, 40);
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.RowTemplate.Height = 23;
|
|
this.dataGridView1.Size = new System.Drawing.Size(923, 398);
|
|
this.dataGridView1.TabIndex = 6;
|
|
this.dataGridView1.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellDoubleClick);
|
|
this.dataGridView1.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dataGridView1_RowPostPaint);
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Location = new System.Drawing.Point(92, 12);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.Size = new System.Drawing.Size(271, 21);
|
|
this.textBox1.TabIndex = 7;
|
|
this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(17, 16);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(69, 12);
|
|
this.label1.TabIndex = 8;
|
|
this.label1.Text = "세트명 검색";
|
|
//
|
|
// btn_Search
|
|
//
|
|
this.btn_Search.Location = new System.Drawing.Point(369, 11);
|
|
this.btn_Search.Name = "btn_Search";
|
|
this.btn_Search.Size = new System.Drawing.Size(75, 23);
|
|
this.btn_Search.TabIndex = 9;
|
|
this.btn_Search.Text = "검 색";
|
|
this.btn_Search.UseVisualStyleBackColor = true;
|
|
this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
|
|
//
|
|
// btn_Add
|
|
//
|
|
this.btn_Add.Location = new System.Drawing.Point(486, 11);
|
|
this.btn_Add.Name = "btn_Add";
|
|
this.btn_Add.Size = new System.Drawing.Size(75, 23);
|
|
this.btn_Add.TabIndex = 9;
|
|
this.btn_Add.Text = "추 가";
|
|
this.btn_Add.UseVisualStyleBackColor = true;
|
|
this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
|
|
//
|
|
// btn_Edit
|
|
//
|
|
this.btn_Edit.Location = new System.Drawing.Point(567, 11);
|
|
this.btn_Edit.Name = "btn_Edit";
|
|
this.btn_Edit.Size = new System.Drawing.Size(75, 23);
|
|
this.btn_Edit.TabIndex = 9;
|
|
this.btn_Edit.Text = "수 정";
|
|
this.btn_Edit.UseVisualStyleBackColor = true;
|
|
this.btn_Edit.Click += new System.EventHandler(this.btn_Edit_Click);
|
|
//
|
|
// btn_Delete
|
|
//
|
|
this.btn_Delete.Location = new System.Drawing.Point(648, 11);
|
|
this.btn_Delete.Name = "btn_Delete";
|
|
this.btn_Delete.Size = new System.Drawing.Size(75, 23);
|
|
this.btn_Delete.TabIndex = 9;
|
|
this.btn_Delete.Text = "삭 제";
|
|
this.btn_Delete.UseVisualStyleBackColor = true;
|
|
this.btn_Delete.Click += new System.EventHandler(this.btn_Delete_Click);
|
|
//
|
|
// btn_Close
|
|
//
|
|
this.btn_Close.Location = new System.Drawing.Point(729, 11);
|
|
this.btn_Close.Name = "btn_Close";
|
|
this.btn_Close.Size = new System.Drawing.Size(75, 23);
|
|
this.btn_Close.TabIndex = 9;
|
|
this.btn_Close.Text = "닫 기";
|
|
this.btn_Close.UseVisualStyleBackColor = true;
|
|
this.btn_Close.Click += new System.EventHandler(this.btn_Close_Click);
|
|
//
|
|
// chk_V
|
|
//
|
|
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
this.chk_V.DefaultCellStyle = dataGridViewCellStyle2;
|
|
this.chk_V.HeaderText = "V";
|
|
this.chk_V.Name = "chk_V";
|
|
this.chk_V.Width = 30;
|
|
//
|
|
// maker
|
|
//
|
|
this.maker.HeaderText = "자료 생성자";
|
|
this.maker.Name = "maker";
|
|
//
|
|
// book_comp
|
|
//
|
|
this.book_comp.HeaderText = "출판사";
|
|
this.book_comp.Name = "book_comp";
|
|
//
|
|
// author
|
|
//
|
|
this.author.HeaderText = "저자";
|
|
this.author.Name = "author";
|
|
//
|
|
// set_price
|
|
//
|
|
this.set_price.HeaderText = "세트 정가";
|
|
this.set_price.Name = "set_price";
|
|
//
|
|
// set_count
|
|
//
|
|
this.set_count.HeaderText = "총 수량";
|
|
this.set_count.Name = "set_count";
|
|
this.set_count.Width = 80;
|
|
//
|
|
// set_isbn
|
|
//
|
|
this.set_isbn.HeaderText = "세트 ISBN";
|
|
this.set_isbn.Name = "set_isbn";
|
|
//
|
|
// set_name
|
|
//
|
|
this.set_name.HeaderText = "세트명";
|
|
this.set_name.Name = "set_name";
|
|
this.set_name.Width = 250;
|
|
//
|
|
// All_Book_manage
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(947, 450);
|
|
this.Controls.Add(this.btn_Close);
|
|
this.Controls.Add(this.btn_Delete);
|
|
this.Controls.Add(this.btn_Edit);
|
|
this.Controls.Add(this.btn_Add);
|
|
this.Controls.Add(this.btn_Search);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.dataGridView1);
|
|
this.Name = "All_Book_manage";
|
|
this.Text = "전집 관리";
|
|
this.Load += new System.EventHandler(this.All_Book_manage_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button btn_Add;
|
|
private System.Windows.Forms.Button btn_Edit;
|
|
private System.Windows.Forms.Button btn_Delete;
|
|
private System.Windows.Forms.Button btn_Close;
|
|
public System.Windows.Forms.Button btn_Search;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn set_name;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn set_isbn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn set_count;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn set_price;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn author;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn book_comp;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn maker;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn chk_V;
|
|
}
|
|
} |