155 lines
6.9 KiB
C#
155 lines
6.9 KiB
C#
|
|
namespace UniMarc
|
|
{
|
|
partial class All_Book_Detail
|
|
{
|
|
/// <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.idx = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.book_name = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.series_title = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.sub_title = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.series_num = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.author = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.book_comp = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.isbn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.price = 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.idx,
|
|
this.book_name,
|
|
this.series_title,
|
|
this.sub_title,
|
|
this.series_num,
|
|
this.author,
|
|
this.book_comp,
|
|
this.isbn,
|
|
this.price});
|
|
this.dataGridView1.Location = new System.Drawing.Point(12, 12);
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.RowTemplate.Height = 23;
|
|
this.dataGridView1.Size = new System.Drawing.Size(1094, 426);
|
|
this.dataGridView1.TabIndex = 0;
|
|
this.dataGridView1.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dataGridView1_RowPostPaint);
|
|
//
|
|
// idx
|
|
//
|
|
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
this.idx.DefaultCellStyle = dataGridViewCellStyle2;
|
|
this.idx.HeaderText = "idx";
|
|
this.idx.Name = "idx";
|
|
this.idx.Width = 50;
|
|
//
|
|
// book_name
|
|
//
|
|
this.book_name.HeaderText = "도서명";
|
|
this.book_name.Name = "book_name";
|
|
this.book_name.Width = 250;
|
|
//
|
|
// series_title
|
|
//
|
|
this.series_title.HeaderText = "총서명";
|
|
this.series_title.Name = "series_title";
|
|
//
|
|
// sub_title
|
|
//
|
|
this.sub_title.HeaderText = "부서명";
|
|
this.sub_title.Name = "sub_title";
|
|
//
|
|
// series_num
|
|
//
|
|
this.series_num.HeaderText = "총서번호";
|
|
this.series_num.Name = "series_num";
|
|
//
|
|
// author
|
|
//
|
|
this.author.HeaderText = "저자";
|
|
this.author.Name = "author";
|
|
//
|
|
// book_comp
|
|
//
|
|
this.book_comp.HeaderText = "출판사";
|
|
this.book_comp.Name = "book_comp";
|
|
this.book_comp.Width = 150;
|
|
//
|
|
// isbn
|
|
//
|
|
this.isbn.HeaderText = "ISBN";
|
|
this.isbn.Name = "isbn";
|
|
//
|
|
// price
|
|
//
|
|
this.price.HeaderText = "정가";
|
|
this.price.Name = "price";
|
|
this.price.Width = 80;
|
|
//
|
|
// All_Book_Detail
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1118, 450);
|
|
this.Controls.Add(this.dataGridView1);
|
|
this.Name = "All_Book_Detail";
|
|
this.Text = "전집 세부";
|
|
this.Load += new System.EventHandler(this.All_Book_Detail_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn idx;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn book_name;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn series_title;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn sub_title;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn series_num;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn author;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn book_comp;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn isbn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn price;
|
|
}
|
|
} |