// 리스트뷰 마우스클릭 private void listView_MouseClick(object sender, MouseEventArgs e) { //MessageBox.Show("동작확인 : listView_MouseClick"); int index; index = 책정보검색_리스트뷰.FocusedItem.Index; // 선택돈 아이템 인덱스 번호 얻기 int book_number = Convert.ToInt32(책정보검색_리스트뷰.Items[index].SubItems[1].Text); // 인덱스 번호의 n번째 아이템 얻기 MySql mysql = new MySql(); ArrayList bookinfoSearch_arry = mysql.Select(string.Format("select * from book_info where book_number = {0}", book_number)); foreach (Hashtable ht in bookinfoSearch_arry) { 번호값.Text = ht["book_number"].ToString(); 제목값.Text = ht["title"].ToString(); 저자값.Text = ht["author"].ToString(); 출판사값.Text = ht["publisher"].ToString(); 장르값.Text = ht["genre"].ToString(); 대여가능여부값.Text = ht["availability"].ToString(); 도서위치값.Text = ht["book_location"].ToString(); 책이미지.ImageLocation = ht["image_location"].ToString(); 간략소개상자.Text = ht["brief_introduction"].ToString(); } }
public void Refresh_ListView() { 연체정보리스트.Items.Clear(); 연체정보리스트.OwnerDraw = true; 연체정보리스트.DrawColumnHeader += new DrawListViewColumnHeaderEventHandler(lv_DrawColumnHeader); //연체정보리스트.BackColor = Color.AliceBlue; // Color.FromArgb(201, 253, 223); 연체정보리스트.DrawSubItem += new DrawListViewSubItemEventHandler(lv_DrawSubItem); MySql mysql = new MySql(); ArrayList arry = mysql.Select("select S.user_number, S.phone_number, S.name, I.title, I.book_number, R.rental_day, TO_DAYS(now()) - TO_DAYS(R.return_schedule) 연체일 from book_info as I inner join book_rental as R on (I.book_number = R.book_number and TO_DAYS(now()) - TO_DAYS(R.return_schedule) > 0 and R.rental_status <> 2) inner join signup as S on (S.user_number = R.user_number);"); foreach (Hashtable ht in arry) { ListViewItem item = new ListViewItem(""); item.SubItems.Add(ht["user_number"].ToString()); item.SubItems.Add(ht["phone_number"].ToString()); item.SubItems.Add(ht["name"].ToString()); item.SubItems.Add(ht["title"].ToString()); item.SubItems.Add(ht["book_number"].ToString()); item.SubItems.Add(ht["rental_day"].ToString()); item.SubItems.Add(ht["연체일"].ToString()); 연체정보리스트.Items.Add(item); for (int i = 0; i < item.SubItems.Count; i++) { item.SubItems[i].Font = new Font("Arial", 14, FontStyle.Italic); } } }
public void list_Refresh() { 요청입고_리스트뷰.Items.Clear(); MySql mysql = new MySql(); ArrayList Receiving_equest_arry = mysql.Select(string.Format("select R.request_number, S.user_number, S.name, R.title, R.author, R.publisher, R.genre from signup S inner join Receiving_equest R on (S.user_number = R.user_number);")); foreach (Hashtable ht in Receiving_equest_arry) { ListViewItem item = new ListViewItem(ht["request_number"].ToString()); item.SubItems.Add(ht["user_number"].ToString()); item.SubItems.Add(ht["name"].ToString()); item.SubItems.Add(ht["title"].ToString()); item.SubItems.Add(ht["author"].ToString()); item.SubItems.Add(ht["publisher"].ToString()); item.Font = new Font("Arial", 15, FontStyle.Italic); 요청입고_리스트뷰.Items.Add(item); } }
private void btn_Click(Object o, EventArgs e) { //MessageBox.Show("동작확인 : btn_Click"); Button button = (Button)o; if (button.Name == "검색버튼") { 회원정보검색_리스트뷰.Items.Clear(); MySql mysql = new MySql(); //ArrayList bookinfoSearch_arry = mysql.Select(string.Format("select * from book_info where {0} LIKE '%{1}%'", search_category, 책정보검색상자.Text)); ArrayList userinfoSearch_arry = mysql.Select(string.Format("select * from signup where {0} LIKE '%{1}%'", search_category, 회원정보검색상자.Text)); foreach (Hashtable ht in userinfoSearch_arry) { ListViewItem item = new ListViewItem(""); item.SubItems.Add(ht["user_number"].ToString()); item.SubItems.Add(ht["name"].ToString()); item.SubItems.Add(ht["birthday"].ToString().Substring(0, 10)); item.SubItems.Add(ht["id"].ToString()); item.Font = new Font("Arial", 14, FontStyle.Italic); 회원정보검색_리스트뷰.Items.Add(item); } Controls.Add(회원정보검색_리스트뷰); } else if (button.Name == "버튼등급수정") { if (회원번호값.Text == "회원번호값") { MessageBox.Show("변경 할 회원정보를 오른쪽 리스트에서 선택해주세요"); return; } USER_LEVEL_UPDATE_FORM user_level_update_form = new USER_LEVEL_UPDATE_FORM(회원번호값.Text); user_level_update_form.StartPosition = FormStartPosition.CenterParent; user_level_update_form.ShowDialog(); } }
// 리스트뷰 마우스클릭 private void listView_MouseClick(object sender, MouseEventArgs e) { //MessageBox.Show("동작확인 : listView_MouseClick"); int index; index = 요청입고_리스트뷰.FocusedItem.Index; // 선택돈 아이템 인덱스 번호 얻기 request_number = Convert.ToInt32(요청입고_리스트뷰.Items[index].SubItems[0].Text); // 인덱스 번호의 n번째 아이템 얻기 MySql mysql = new MySql(); ArrayList Receiving_equest_arry = mysql.Select(string.Format("select R.request_number, S.user_number, S.name, R.title, R.author, R.publisher, R.genre from signup S inner join Receiving_equest R on (S.user_number = R.user_number and R.request_number = {0});", request_number)); foreach (Hashtable ht in Receiving_equest_arry) { 제목값.Text = ht["title"].ToString(); 저자값.Text = ht["author"].ToString(); 출판사값.Text = ht["publisher"].ToString(); 장르값.Text = ht["genre"].ToString(); 도서위치값.Text = ""; } }
private void listView_MouseClick(object sender, MouseEventArgs e) { //MessageBox.Show("동작확인 : listView_MouseClick"); int index; index = 회원정보검색_리스트뷰.FocusedItem.Index; // 선택돈 아이템 인덱스 번호 얻기 int user_number = Convert.ToInt32(회원정보검색_리스트뷰.Items[index].SubItems[1].Text); // 인덱스 번호의 n번째 아이템 얻기 MySql mysql = new MySql(); ArrayList bookinfoSearch_arry = mysql.Select(string.Format("select * from signup where user_number = {0}", user_number)); foreach (Hashtable ht in bookinfoSearch_arry) { 회원번호값.Text = ht["user_number"].ToString(); 연락처값.Text = ht["phone_number"].ToString(); 이름값.Text = ht["name"].ToString(); ID값.Text = ht["id"].ToString(); 블랙리스트값.Text = ht["blacklist"].ToString(); } 대여목록_리스트뷰.Items.Clear(); mysql = new MySql(); sql = string.Format("select I.book_number, I.title, I.author, I.publisher, case when R.rental_status = 0 then '대여중' when R.rental_status = 1 then '미반납' end as 'rental_status' from book_info I inner join book_rental R on (R.user_number = {0} and I.book_number = R.book_number and R.rental_status <> 2);", user_number); ArrayList bookinfoSearch_arry2 = mysql.Select(sql); foreach (Hashtable ht in bookinfoSearch_arry2) { ListViewItem item = new ListViewItem(""); item.SubItems.Add(ht["book_number"].ToString()); item.SubItems.Add(ht["title"].ToString()); item.SubItems.Add(ht["author"].ToString()); item.SubItems.Add(ht["publisher"].ToString()); item.SubItems.Add(ht["rental_status"].ToString()); item.Font = new Font("Arial", 14, FontStyle.Italic); 대여목록_리스트뷰.Items.Add(item); } }
private void USER_INFO_FORM_Load(object sender, EventArgs e) { this.Paint += new PaintEventHandler(this.Form_Paint); FormBorderStyle = FormBorderStyle.None; //폼 상단 표시줄 제거 this.BackColor = Color.FromArgb(201, 253, 223); ClientSize = new Size(sX, sY); // 폼 사이즈 지정. /// 좌표 체크시 추가 /// //Point_Print(); COMMON_Create_Ctl create_ctl = new COMMON_Create_Ctl(); create_ctl.delay_rental_check(); // BTNclass bt1 = new BTNclass(this, "버튼Name", "버튼Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 버튼클릭이벤트); BTNclass bt1 = new BTNclass(this, "Home", "button1", 100, 100, 10, 10, btn_Click); // LBclass lb1 = new LBclass(this, "라벨Name", "라벨Text", 라벨Font사이즈, 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 라벨클릭이벤트); LBclass lb1 = new LBclass(this, "label1", "label_name~", 24, 100, 100, 10, 10, label_Click); // PANELclass pn1 = new PANELclass(this, "패널Name", "패널Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 패널마우스이동이벤트); PANELclass pn1 = new PANELclass(this, "panel1", "panel_txt~", 200, 200, 100, 100); // TABCTLclass tabctl = new TABCTLclass(this, "탭컨트롤Name", "탭컨트롤Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 탭높이, 탭컨트롤마우스이동이벤트); TABCTLclass tabctl = new TABCTLclass(this, "tabctl1", "tabctl1~", 450, 160, 7, 313, 30, tabctl_MouseMove); // TABPAGEclass tabpg1 = new TABPAGEclass(this, "탭페이지Name", "탭페이지Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 탭페이지마우스이동이벤트); TABPAGEclass tabpg1 = new TABPAGEclass(this, "tabpage1", "tapage1~", 100, 100, 0, 0, tabpage_MouseMove); // CHKBOXclass bhkbox1 = new CHKBOXclass(this, "체크박스Name", 체크박스Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 체크박스클릭이벤트); CHKBOXclass chkbox1 = new CHKBOXclass(this, "chkbox1", "chkbox1~", 100, 100, 20, 20, chkbox_Click); // LISTVIEWclass listview1 = new LISTVIEWclass(this, "리스트뷰Name", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 리스트뷰더블클릭이벤트, 컬럼갯수, "컬럼1번Name", 컬럼1간격, "컬럼2번Name", 컬럼2간격, "컬럼3번Name", 컬럼3간격, ~ 동일방식 10개 컬럼까지 가능); LISTVIEWclass listview1 = new LISTVIEWclass(this, "ListView1", 500, 500, 10, 10, listview_mousedoubleclick, listview_mousedoubleclick, 3, "col1", 100, "col2", 100, "col3", 100); // COMBOBOXclass combobox1 = new COMBOBOXclass(this, "콤보박스Name", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 콤보박스클릭이벤트, 리스트추가갯수, "test1", "test2", "test3", "test4", "test5"); COMBOBOXclass combobox1 = new COMBOBOXclass(this, "ComboBox1", 100, 100, 721, 12, ComboBox_SelectedIndexChanged, 5, "test1", "test2", "test3", "test4", "test5"); // 회원정보패널 PANELclass 회원정보패널값 = new PANELclass(this, "회원정보패널", "회원정보패널", 700, 300, 20, 20); Panel 회원정보패널 = comm.panel(회원정보패널값); 회원정보패널.Region = Region.FromHrgn(COMMON_Create_Ctl.CreateRoundRectRgn(2, 2, 회원정보패널.Width, 회원정보패널.Height, 15, 15)); 회원정보패널.BackColor = Color.FromArgb(218, 234, 244); // rgb(218,234,244) Controls.Add(회원정보패널); // 회원정보패널 고정라벨 ArrayList arry = new ArrayList(); arry.Add(new LBclass(this, "회원번호", "회원번호", 17, 110, 30, 20, 30, label_Click)); arry.Add(new LBclass(this, "연락처", "연락처", 17, 110, 30, 20, 80, label_Click)); arry.Add(new LBclass(this, "이름", "이름", 17, 110, 30, 20, 130, label_Click)); arry.Add(new LBclass(this, "ID", "ID", 17, 110, 30, 20, 180, label_Click)); arry.Add(new LBclass(this, "블랙리스트여부", "블랙리스트 여부", 17, 190, 40, 20, 230, label_Click)); arry.Add(new LBclass(this, "", ":", 12, 30, 40, 210, 30, label_Click)); arry.Add(new LBclass(this, "", ":", 12, 30, 40, 210, 80, label_Click)); arry.Add(new LBclass(this, "", ":", 12, 30, 40, 210, 130, label_Click)); arry.Add(new LBclass(this, "", ":", 12, 30, 40, 210, 180, label_Click)); arry.Add(new LBclass(this, "", ":", 12, 30, 40, 210, 230, label_Click)); for (int i = 0; i < arry.Count; i++) { Label label = comm.lb((LBclass)arry[i]); label.Font = new Font(label.Font.Name, 17, FontStyle.Bold); 회원정보패널.Controls.Add(label); } // 회원정보TextBox 변동값 ArrayList userinfoArry = new ArrayList(); userinfoArry.Add(new TXTBOXclass(this, "회원번호값", "회원번호값", 430, 40, 240, 30, txtbox_Click)); userinfoArry.Add(new TXTBOXclass(this, "연락처값", "연락처값", 430, 40, 240, 80, txtbox_Click)); userinfoArry.Add(new TXTBOXclass(this, "이름값", "이름값", 430, 40, 240, 130, txtbox_Click)); userinfoArry.Add(new TXTBOXclass(this, "ID값", "ID값", 430, 40, 240, 180, txtbox_Click)); userinfoArry.Add(new TXTBOXclass(this, "블랙리스트값", "블랙리스트값", 430, 40, 240, 230, txtbox_Click)); for (int i = 0; i < userinfoArry.Count; i++) { TextBox textBox = comm.txtbox((TXTBOXclass)userinfoArry[i]); textBox.ReadOnly = true; textBox.Font = new Font(textBox.Font.Name, 12, FontStyle.Bold); if (textBox.Name == "회원번호값") { 회원번호값 = textBox; } else if (textBox.Name == "연락처값") { 연락처값 = textBox; } else if (textBox.Name == "이름값") { 이름값 = textBox; } else if (textBox.Name == "ID값") { ID값 = textBox; } else if (textBox.Name == "블랙리스트값") { 블랙리스트값 = textBox; } 회원정보패널.Controls.Add(textBox); } /// 버튼 - 회원정보 변경버튼 BTNclass 버튼등급수정값 = new BTNclass(this, "버튼등급수정", "회원 등급 수정", 150, 40, 570, 340, btn_Click); Button 버튼등급수정 = comm.btn(버튼등급수정값); 버튼등급수정.BackColor = Color.FromArgb(50, 178, 223); 버튼등급수정.Font = new Font(버튼등급수정.Font.Name, 12, FontStyle.Bold); 버튼등급수정.FlatStyle = FlatStyle.Flat; 버튼등급수정.ForeColor = Color.White; 버튼등급수정.Region = Region.FromHrgn(COMMON_Create_Ctl.CreateRoundRectRgn(2, 2, 버튼등급수정.Width, 버튼등급수정.Height, 10, 10)); Controls.Add(버튼등급수정); /// 라벨 - 대여목록 LBclass 대여목록라벨값 = new LBclass(this, "대여목록", "대여 목록", 20, 200, 30, 20, 365, label_Click); Label 대여목록라벨 = comm.lb(대여목록라벨값); 대여목록라벨.Font = new Font(대여목록라벨.Font.Name, 20, FontStyle.Bold); Controls.Add(대여목록라벨); // 리스트뷰 - 대여목록 LISTVIEWclass 대여목록_리스트뷰값 = new LISTVIEWclass(this, "대여목록_ListVIew", 700, 350, 20, 407, listView_MouseClick, listview_mousedoubleclick, 6, "", 0, "책번호", 70, "책 이름", 260, "저자", 120, "출판사", 120, "대여현황", 125); 대여목록_리스트뷰 = comm.listView(대여목록_리스트뷰값); 대여목록_리스트뷰.Font = new Font("Arial", 14, FontStyle.Bold); //mysql = new MySql(); //string sql = string.Format("select * from book_info;"); //ArrayList bookinfoSearch_arry2 = mysql.Select(sql); //foreach (Hashtable ht in bookinfoSearch_arry2) //{ // ListViewItem item = new ListViewItem(""); // item.SubItems.Add(ht["book_number"].ToString()); // item.SubItems.Add(ht["title"].ToString()); // item.SubItems.Add(ht["author"].ToString()); // item.SubItems.Add(ht["publisher"].ToString()); // item.Font = new Font("Arial", 14, FontStyle.Italic); // 대여목록_리스트뷰.Items.Add(item); //} Controls.Add(대여목록_리스트뷰); // 회원정보검색 - 라벨 LBclass 회원정보검색값 = new LBclass(this, "회원정보검색", "회원정보검색 :", 20, 200, 40, 790, 95, label_Click); Label 회원정보검색 = comm.lb(회원정보검색값); 회원정보검색.Font = new Font(회원정보검색.Font.Name, 20, FontStyle.Bold); Controls.Add(회원정보검색); // 회원정보검색 - 콤보박스 COMBOBOXclass 검색카테고리값 = new COMBOBOXclass(this, "ComboBox1", 90, 120, 990, 90, ComboBox_SelectedIndexChanged, 2, "이름", "ID"); ComboBox 콤보박스검색카테고리 = comm.comboBox(검색카테고리값); 콤보박스검색카테고리.Font = new Font(콤보박스검색카테고리.Font.Name, 22, FontStyle.Regular); 콤보박스검색카테고리.DropDownStyle = ComboBoxStyle.DropDownList; 콤보박스검색카테고리.SelectedIndex = 0; Controls.Add(콤보박스검색카테고리); // 회원정보검색 검색박스상자 - TextBOX TXTBOXclass 회원정보검색상자값 = new TXTBOXclass(this, "회원정보검색상자", "", 250, 150, 1080, 90, txtbox_Click); 회원정보검색상자 = comm.txtbox(회원정보검색상자값); 회원정보검색상자.Font = new Font(회원정보검색상자.Font.Name, 20, FontStyle.Bold); Controls.Add(회원정보검색상자); // 수정중 // 회원정보검색 - 버튼 BTNclass 검색버튼값 = new BTNclass(this, "검색버튼", "검색", 100, 40, 1330, 89, btn_Click); Button 버튼검색 = comm.btn(검색버튼값); 버튼검색.BackColor = Color.FromArgb(50, 178, 223); 버튼검색.Font = new Font(버튼검색.Font.Name, 17, FontStyle.Bold); 버튼검색.FlatStyle = FlatStyle.Flat; 버튼검색.ForeColor = Color.White; //버튼검색.Region = Region.FromHrgn(COMMON_Create_Ctl.CreateRoundRectRgn(2, 2, 버튼검색.Width, 버튼검색.Height, 18, 18)); Controls.Add(버튼검색); // 리스트뷰 - 회원정보검색 LISTVIEWclass 회원정보검색_리스트뷰값 = new LISTVIEWclass(this, "회원정보검색_ListVIew", 645, 575, 800, 182, listView_MouseClick, listview_mousedoubleclick, 5, "", 0, "회원번호", 120, "회원이름", 120, "주민번호 앞자리", 200, "ID", 200); 회원정보검색_리스트뷰 = comm.listView(회원정보검색_리스트뷰값); 회원정보검색_리스트뷰.Font = new Font("Arial", 14, FontStyle.Bold); mysql = new MySql(); sql = string.Format("select * from signup;"); ArrayList signupinfoSearch_arry = mysql.Select(sql); foreach (Hashtable ht in signupinfoSearch_arry) { ListViewItem item = new ListViewItem(""); item.SubItems.Add(ht["user_number"].ToString()); item.SubItems.Add(ht["name"].ToString()); item.SubItems.Add(ht["birthday"].ToString().Substring(0, 10)); item.SubItems.Add(ht["id"].ToString()); item.Font = new Font("Arial", 14, FontStyle.Italic); 회원정보검색_리스트뷰.Items.Add(item); } Controls.Add(회원정보검색_리스트뷰); }
private void DETAIL_BOOK_FORM_Load(object sender, EventArgs e) { //FormBorderStyle = FormBorderStyle.None; 폼 상단 표시줄 제거 this.BackColor = Color.FromArgb(149, 165, 165); ClientSize = new Size(sX, sY); // 폼 사이즈 지정. /// 좌표 체크시 추가 /// //Point_Print(); COMMON_Create_Ctl create_ctl = new COMMON_Create_Ctl(); // BTNclass bt1 = new BTNclass(this, "버튼Name", "버튼Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 버튼클릭이벤트); BTNclass bt1 = new BTNclass(this, "Home", "button1", 100, 100, 10, 10, btn_Click); // LBclass lb1 = new LBclass(this, "라벨Name", "라벨Text", 라벨Font사이즈, 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 라벨클릭이벤트); LBclass lb1 = new LBclass(this, "label1", "label_name~", 24, 100, 100, 10, 10, label_Click); // PANELclass pn1 = new PANELclass(this, "패널Name", "패널Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 패널마우스이동이벤트); PANELclass pn1 = new PANELclass(this, "panel1", "panel_txt~", 200, 200, 100, 100); // TABCTLclass tabctl = new TABCTLclass(this, "탭컨트롤Name", "탭컨트롤Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 탭높이, 탭컨트롤마우스이동이벤트); TABCTLclass tabctl = new TABCTLclass(this, "tabctl1", "tabctl1~", 450, 160, 7, 313, 30, tabctl_MouseMove); // TABPAGEclass tabpg1 = new TABPAGEclass(this, "탭페이지Name", "탭페이지Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 탭페이지마우스이동이벤트); TABPAGEclass tabpg1 = new TABPAGEclass(this, "tabpage1", "tapage1~", 100, 100, 0, 0, tabpage_MouseMove); // CHKBOXclass bhkbox1 = new CHKBOXclass(this, "체크박스Name", 체크박스Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 체크박스클릭이벤트); CHKBOXclass chkbox1 = new CHKBOXclass(this, "chkbox1", "chkbox1~", 100, 100, 20, 20, chkbox_Click); // LISTVIEWclass listview1 = new LISTVIEWclass(this, "리스트뷰Name", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 리스트뷰더블클릭이벤트, 컬럼갯수, "컬럼1번Name", 컬럼1간격, "컬럼2번Name", 컬럼2간격, "컬럼3번Name", 컬럼3간격, ~ 동일방식 10개 컬럼까지 가능); LISTVIEWclass listview1 = new LISTVIEWclass(this, "ListView1", 500, 500, 10, 10, listview_mousedoubleclick, listview_mousedoubleclick, 3, "col1", 100, "col2", 100, "col3", 100); // COMBOBOXclass combobox1 = new COMBOBOXclass(this, "콤보박스Name", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 콤보박스클릭이벤트, 리스트추가갯수, "test1", "test2", "test3", "test4", "test5"); COMBOBOXclass combobox1 = new COMBOBOXclass(this, "ComboBox1", 100, 100, 721, 12, ComboBox_SelectedIndexChanged, 5, "test1", "test2", "test3", "test4", "test5"); ////// 고정 라벨 ArrayList labelArr = new ArrayList(); labelArr.Add(new LBclass(this, "도서상세정보", "도서 상세 정보", 26, 300, 40, 30, 30, label_Click)); labelArr.Add(new LBclass(this, "도서명", "도서명", 15, 80, 40, 30, 110, label_Click)); labelArr.Add(new LBclass(this, "보유정보", "보유정보", 12, 100, 40, 30, 160, label_Click)); labelArr.Add(new LBclass(this, "", ":", 12, 30, 40, 140, 108, label_Click)); labelArr.Add(new LBclass(this, "", ":", 12, 30, 40, 140, 158, label_Click)); for (int i = 0; i < labelArr.Count; i++) { Label 라벨 = comm.lb((LBclass)labelArr[i]); 라벨.Font = new Font("신명조", 15, FontStyle.Bold); if (라벨.Name == "도서상세정보") { 라벨.Font = new Font("신명조", 24, FontStyle.Bold); } else if (라벨.Name == "도서명") { } else if (라벨.Name == "보유정보") { } Controls.Add(라벨); } /// 변경되는 라벨 ArrayList Value_labelArr = new ArrayList(); Value_labelArr.Add(new LBclass(this, "도서명파라미터", "도서명파라미터", 10, 280, 40, 172, 112, label_Click)); Value_labelArr.Add(new LBclass(this, "보유권수파라미터", "보유권수파라미터", 10, 250, 40, 172, 162, label_Click)); for (int i = 0; i < Value_labelArr.Count; i++) { Label 변경라벨 = comm.lb((LBclass)Value_labelArr[i]); 변경라벨.Font = new Font("신명조", 12, FontStyle.Bold); if (변경라벨.Name == "도서명파라미터") { 도서이름라벨 = 변경라벨; } else if (변경라벨.Name == "보유권수파라미터") { 보유권수총갯수라벨 = 변경라벨; } Controls.Add(변경라벨); } /// 도서상세정보 리스트 LISTVIEWclass 도서상세정보_리스트뷰값 = new LISTVIEWclass(this, "도서상세정보_ListVIew", 324, 140, 38, 210, listView_MouseClick, listview_mousedoubleclick, 4, "", 0, "책번호", 100, "책위치", 110, "대여", 110); 도서상세정보_리스트뷰 = comm.listView(도서상세정보_리스트뷰값); 도서상세정보_리스트뷰.Font = new Font("Arial", 14, FontStyle.Bold); 도서상세정보_리스트뷰.OwnerDraw = true; 도서상세정보_리스트뷰.DrawColumnHeader += new DrawListViewColumnHeaderEventHandler(lv_DrawColumnHeader); 도서상세정보_리스트뷰.BackColor = Color.FromArgb(149, 165, 165); 도서상세정보_리스트뷰.DrawSubItem += new DrawListViewSubItemEventHandler(lv_DrawSubItem); MySql mysql = new MySql(); string sql = string.Format("select title, count(*) COUNT from book_info where title = '{0}';", book_name); //MessageBox.Show(sql); ArrayList bookinfoSearch_arry1 = mysql.Select(sql); foreach (Hashtable ht in bookinfoSearch_arry1) { 도서이름라벨.Text = ht["title"].ToString(); 보유권수총갯수라벨.Text = "총 " + ht["COUNT"].ToString() + "권"; } mysql.ConnectionClose(); mysql = new MySql(); sql = string.Format("select * from book_info where title = '{0}';", book_name); ArrayList bookinfoSearch_arry2 = mysql.Select(sql); foreach (Hashtable ht in bookinfoSearch_arry2) { ListViewItem item = new ListViewItem(""); item.SubItems.Add(ht["book_number"].ToString()); item.SubItems.Add(ht["book_location"].ToString()); item.SubItems.Add(ht["availability"].ToString()); 도서상세정보_리스트뷰.Items.Add(item); for (int i = 0; i < item.SubItems.Count; i++) { item.SubItems[i].Font = new Font("Arial", 12, FontStyle.Bold | FontStyle.Italic); } } Controls.Add(도서상세정보_리스트뷰); /// 닫기 버튼 BTNclass 버튼닫기값 = new BTNclass(this, "닫기버튼", "닫기", 80, 40, 397, 312, btn_Click); Button 버튼닫기 = comm.btn(버튼닫기값); 버튼닫기.BackColor = Color.FromArgb(50, 178, 223); 버튼닫기.Font = new Font(버튼닫기.Font.Name, 12, FontStyle.Bold); 버튼닫기.FlatStyle = FlatStyle.Flat; 버튼닫기.ForeColor = Color.White; 버튼닫기.Region = Region.FromHrgn(COMMON_Create_Ctl.CreateRoundRectRgn(2, 2, 버튼닫기.Width, 버튼닫기.Height, 10, 10)); Controls.Add(버튼닫기); }
private void LATE_MGT_FORM_Load(object sender, EventArgs e) { FormBorderStyle = FormBorderStyle.None; // 폼 상단 표시줄 제거 this.BackColor = Color.FromArgb(201, 253, 223); ClientSize = new Size(sX, sY); // 폼 사이즈 지정. /// 좌표 체크시 추가 /// //Point_Print(); COMMON_Create_Ctl create_ctl = new COMMON_Create_Ctl(); create_ctl.delay_rental_check(); // BTNclass bt1 = new BTNclass(this, "버튼Name", "버튼Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 버튼클릭이벤트); BTNclass bt1 = new BTNclass(this, "Home", "button1", 100, 100, 10, 10, btn_Click); // LBclass lb1 = new LBclass(this, "라벨Name", "라벨Text", 라벨Font사이즈, 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 라벨클릭이벤트); LBclass lb1 = new LBclass(this, "label1", "label_name~", 24, 100, 100, 10, 10, label_Click); // PANELclass pn1 = new PANELclass(this, "패널Name", "패널Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 패널마우스이동이벤트); PANELclass pn1 = new PANELclass(this, "panel1", "panel_txt~", 200, 200, 100, 100); // TABCTLclass tabctl = new TABCTLclass(this, "탭컨트롤Name", "탭컨트롤Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 탭높이, 탭컨트롤마우스이동이벤트); TABCTLclass tabctl = new TABCTLclass(this, "tabctl1", "tabctl1~", 450, 160, 7, 313, 30, tabctl_MouseMove); // TABPAGEclass tabpg1 = new TABPAGEclass(this, "탭페이지Name", "탭페이지Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 탭페이지마우스이동이벤트); TABPAGEclass tabpg1 = new TABPAGEclass(this, "tabpage1", "tapage1~", 100, 100, 0, 0, tabpage_MouseMove); // CHKBOXclass bhkbox1 = new CHKBOXclass(this, "체크박스Name", 체크박스Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 체크박스클릭이벤트); CHKBOXclass chkbox1 = new CHKBOXclass(this, "chkbox1", "chkbox1~", 100, 100, 20, 20, chkbox_Click); // LISTVIEWclass listview1 = new LISTVIEWclass(this, "리스트뷰Name", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 리스트뷰더블클릭이벤트, 컬럼갯수, "컬럼1번Name", 컬럼1간격, "컬럼2번Name", 컬럼2간격, "컬럼3번Name", 컬럼3간격, ~ 동일방식 10개 컬럼까지 가능); LISTVIEWclass listview1 = new LISTVIEWclass(this, "ListView1", 500, 500, 10, 10, listview_mousedoubleclick, listview_mousedoubleclick, 3, "col1", 100, "col2", 100, "col3", 100); // COMBOBOXclass combobox1 = new COMBOBOXclass(this, "콤보박스Name", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 콤보박스클릭이벤트, 리스트추가갯수, "test1", "test2", "test3", "test4", "test5"); COMBOBOXclass combobox1 = new COMBOBOXclass(this, "ComboBox1", 100, 100, 721, 12, ComboBox_SelectedIndexChanged, 5, "test1", "test2", "test3", "test4", "test5"); BTNclass 연체정보리플레시버튼값 = new BTNclass(this, "리플레시버튼", "Refresh", 150, 50, 1285, 70, btn_Click); Button 연체정보리플레시버튼 = comm.btn(연체정보리플레시버튼값); 연체정보리플레시버튼.Font = new Font("신명조", 20, FontStyle.Bold); Controls.Add(연체정보리플레시버튼); LBclass 연체정보라벨값 = new LBclass(this, "연체정보라벨", "연체자 정보", 30, 250, 50, 30, 50, label_Click); Label 연체정보라벨 = comm.lb(연체정보라벨값); Controls.Add(연체정보라벨); LISTVIEWclass 연체정보리스트값 = new LISTVIEWclass(this, "연체정보리스트", 1400, 600, 38, 130, listview_mousedoubleclick, listview_mousedoubleclick, 8, "", 0, "회원번호", 200, "연락처", 200, "이름", 200, "도서명", 200, "도서번호", 200, "대여일", 200, "연체일", 200); 연체정보리스트 = comm.listView(연체정보리스트값); 연체정보리스트.Font = new Font("신명조", 24, FontStyle.Bold); 연체정보리스트.OwnerDraw = true; 연체정보리스트.DrawColumnHeader += new DrawListViewColumnHeaderEventHandler(lv_DrawColumnHeader); //연체정보리스트.BackColor = Color.AliceBlue; // Color.FromArgb(201, 253, 223); 연체정보리스트.DrawSubItem += new DrawListViewSubItemEventHandler(lv_DrawSubItem); MySql mysql = new MySql(); ArrayList arry = mysql.Select("select S.user_number, S.phone_number, S.name, I.title, I.book_number, R.rental_day, TO_DAYS(now()) - TO_DAYS(R.return_schedule) 연체일 from book_info as I inner join book_rental as R on (I.book_number = R.book_number and TO_DAYS(now()) - TO_DAYS(R.return_schedule) > 0 and R.rental_status <> 2) inner join signup as S on (S.user_number = R.user_number);"); foreach (Hashtable ht in arry) { ListViewItem item = new ListViewItem(""); item.SubItems.Add(ht["user_number"].ToString()); item.SubItems.Add(ht["phone_number"].ToString()); item.SubItems.Add(ht["name"].ToString()); item.SubItems.Add(ht["title"].ToString()); item.SubItems.Add(ht["book_number"].ToString()); item.SubItems.Add(ht["rental_day"].ToString()); item.SubItems.Add(ht["연체일"].ToString()); 연체정보리스트.Items.Add(item); for (int i = 0; i < item.SubItems.Count; i++) { item.SubItems[i].Font = new Font("Arial", 14, FontStyle.Italic); } } Controls.Add(연체정보리스트); }
// 버튼클릭 private void btn_Click(Object o, EventArgs e) { //MessageBox.Show("동작확인 : btn_Click"); Button button = (Button)o; if (button.Name == "대여버튼") { if (login_frm.Member_rank == 4) { Login_ck = new Login_Check(this); Login_ck.StartPosition = FormStartPosition.CenterParent; Login_ck.ShowDialog(); this.Hide(); form.Login.Show(); } else { if (대여가능여부값.Text == "가능") { GetInsert(); } else { MessageBox.Show("대여불가 상태입니다."); } } } /// 입고요청 버튼 설정. if (button.Name == "입고버튼") { if (login_frm.Member_rank == 4) { Login_ck = new Login_Check(this); Login_ck.StartPosition = FormStartPosition.CenterParent; Login_ck.ShowDialog(); this.Hide(); form.Login.Show(); } else { REQUEST_BOOK_FORM REQUEST_FORM = new REQUEST_BOOK_FORM(); REQUEST_FORM.StartPosition = FormStartPosition.CenterParent; REQUEST_FORM.ShowDialog(); } } /// 검색버튼 클릭 시 리스트 뷰 넣는 부분 if (button.Name == "정보수정버튼") // admin 모드일 경우 { // 라벨값 그대로 텍스트 박스로 옮기는 부분. 텍스트박스_제목값.Text = 제목값.Text; 텍스트박스_저자값.Text = 저자값.Text; 텍스트박스_출판사값.Text = 출판사값.Text; 텍스트박스_장르값.Text = 장르값.Text; 텍스트박스_도서위치값.Text = 도서위치값.Text; 간략소개상자.Text = 간략소개상자.Text; // 정보수정 버튼 숨기기 정보수정.Hide(); 수정취소.Show(); 수정완료.Show(); // 라벨 값 숨기기 제목값.Hide(); 저자값.Hide(); 출판사값.Hide(); 장르값.Hide(); 도서위치값.Hide(); // 텍스트박스 보이기 텍스트박스_제목값.Show(); 텍스트박스_저자값.Show(); 텍스트박스_출판사값.Show(); 텍스트박스_장르값.Show(); 텍스트박스_도서위치값.Show(); 간략소개상자.ReadOnly = false; } else if (button.Name == "수정취소버튼") { // 정보수정 버튼 보이기 정보수정.Show(); 수정취소.Hide(); 수정완료.Hide(); // 라벨 값 숨기기 제목값.Show(); 저자값.Show(); 출판사값.Show(); 장르값.Show(); 도서위치값.Show(); // 텍스트박스 보이기 텍스트박스_제목값.Hide(); 텍스트박스_저자값.Hide(); 텍스트박스_출판사값.Hide(); 텍스트박스_장르값.Hide(); 텍스트박스_도서위치값.Hide(); 간략소개상자.ReadOnly = true; } else if (button.Name == "수정완료버튼") { // MessageBox.Show("수정완료"); if (번호값.Text == "번호값" || 텍스트박스_제목값.Text == "" || 텍스트박스_저자값.Text == "" || 텍스트박스_출판사값.Text == "" || 텍스트박스_장르값.Text == "" || 텍스트박스_도서위치값.Text == "" || 간략소개상자.Text == "") { MessageBox.Show("입력칸을 모두 채워주세요."); return; } MySql mysql = new MySql(); string sql = string.Format("update book_info set title = '{1}', author = '{2}', publisher = '{3}', genre = '{4}', brief_introduction = '{5}', book_location = '{6}' where book_number = {0};", 번호값.Text, 텍스트박스_제목값.Text, 텍스트박스_저자값.Text, 텍스트박스_출판사값.Text, 텍스트박스_장르값.Text, 간략소개상자.Text, 텍스트박스_도서위치값.Text); bool status = mysql.NonQuery_INSERT(sql); if (status) { MessageBox.Show("수정이 완료 되었습니다."); } else { MessageBox.Show("수정 중 오류가 발생했습니다."); } mysql = new MySql(); ArrayList bookinfoSearch_arry = mysql.Select(string.Format("select * from book_info where book_number = {0}", 번호값.Text)); foreach (Hashtable ht in bookinfoSearch_arry) { 제목값.Text = ht["title"].ToString(); 저자값.Text = ht["author"].ToString(); 출판사값.Text = ht["publisher"].ToString(); 장르값.Text = ht["genre"].ToString(); 도서위치값.Text = ht["book_location"].ToString(); 책이미지.ImageLocation = ht["image_location"].ToString(); 간략소개상자.Text = ht["brief_introduction"].ToString(); } // 정보수정 버튼 보이기 정보수정.Show(); 수정취소.Hide(); 수정완료.Hide(); // 라벨 값 숨기기 제목값.Show(); 저자값.Show(); 출판사값.Show(); 장르값.Show(); 도서위치값.Show(); // 텍스트박스 보이기 텍스트박스_제목값.Hide(); 텍스트박스_저자값.Hide(); 텍스트박스_출판사값.Hide(); 텍스트박스_장르값.Hide(); 텍스트박스_도서위치값.Hide(); 간략소개상자.ReadOnly = true; } else if (button.Name == "검색버튼") // admin / user 둘다 사용 { if (search_category == "") { MessageBox.Show("카테고리를 선택 해주세요."); return; } 책정보검색_리스트뷰.Items.Clear(); MySql mysql = new MySql(); //ArrayList bookinfoSearch_arry = mysql.Select(string.Format("select * from book_info where {0} LIKE '%{1}%'", search_category, 책정보검색상자.Text)); ArrayList bookinfoSearch_arry = mysql.Select(string.Format("select * from book_info where {0} LIKE '%{1}%'", search_category, 책정보검색상자.Text)); foreach (Hashtable ht in bookinfoSearch_arry) { ListViewItem item = new ListViewItem(""); item.SubItems.Add(ht["book_number"].ToString()); item.SubItems.Add(ht["availability"].ToString()); item.SubItems.Add(ht["title"].ToString()); item.SubItems.Add(ht["author"].ToString()); item.SubItems.Add(ht["publisher"].ToString()); item.Font = new Font("Arial", 18, FontStyle.Italic); 책정보검색_리스트뷰.Items.Add(item); } Controls.Add(책정보검색_리스트뷰); } }
private void BOOK_MGT_FORM_Load(object sender, EventArgs e) { this.Paint += new PaintEventHandler(this.Form_Paint); FormBorderStyle = FormBorderStyle.None; //폼 상단 표시줄 제거 //this.BackColor = Color.Aquamarine; this.BackColor = Color.FromArgb(201, 253, 223); ClientSize = new Size(sX, sY); // 폼 사이즈 지정. /// 좌표 체크시 추가 /// //Point_Print(); COMMON_Create_Ctl create_ctl = new COMMON_Create_Ctl(); // 책정보패널 PANELclass 책정보패널값 = new PANELclass(this, "책정보패널", "책정보패널", 720, 750, 10, 10); Panel 책정보패널 = comm.panel(책정보패널값); //(좌측상단여백, 우측상단여백, 컨트롤 넓이, 컨트롤 높이, 가로 모서리 원기울기, 세로 모서리 원기울기) 책정보패널.Region = Region.FromHrgn(COMMON_Create_Ctl.CreateRoundRectRgn(2, 2, 책정보패널.Width, 책정보패널.Height, 15, 15)); 책정보패널.BackColor = Color.FromArgb(218, 234, 244); // rgb(218,234,244) Controls.Add(책정보패널); // 도서사진 픽쳐박스 PICTUREBOXclass picturboxValue = new PICTUREBOXclass(this, "picturebox1", "picturebox_txt1", 220, 260, 10, 20, "default_book_image.png", picturbox_Click); 책이미지 = comm.load_PictureBox(picturboxValue); 책정보패널.Controls.Add(책이미지); // 간략소개상자 - TextBOX TXTBOXclass 간략소개상자값 = new TXTBOXclass(this, "간략소개상자", "", 665, 280, 26, 380, txtbox_Click); 간략소개상자 = comm.txtbox(간략소개상자값); 간략소개상자.Font = new Font("Arial", 24, FontStyle.Bold); 간략소개상자.Multiline = true; 간략소개상자.Region = Region.FromHrgn(COMMON_Create_Ctl.CreateRoundRectRgn(2, 2, 간략소개상자.Width, 간략소개상자.Height, 18, 18)); 간략소개상자.ScrollBars = ScrollBars.Vertical; 책정보패널.Controls.Add(간략소개상자); // 책정보패널 고정라벨 ArrayList arry = new ArrayList(); arry.Add(new LBclass(this, "제목", "제목 :", 17, 110, 40, 235, 40, label_Click)); arry.Add(new LBclass(this, "저자", "저자 :", 17, 110, 40, 235, 90, label_Click)); arry.Add(new LBclass(this, "출판사", "출판사 :", 17, 110, 40, 235, 140, label_Click)); arry.Add(new LBclass(this, "장르", "장르 :", 17, 110, 40, 235, 190, label_Click)); arry.Add(new LBclass(this, "도서위치", "위치 :", 17, 110, 40, 235, 240, label_Click)); arry.Add(new LBclass(this, "간략소개", "간략소개 :", 17, 130, 40, 26, 340, label_Click)); for (int i = 0; i < arry.Count; i++) { Label label = comm.lb((LBclass)arry[i]); if (label.Name == "간략소개") { label.Font = new Font(label.Font.Name, 20, FontStyle.Bold | FontStyle.Underline); } else { label.Font = new Font(label.Font.Name, 17, FontStyle.Bold); } 책정보패널.Controls.Add(label); } // 책정보패널 선택한 리스트 텍스트박스 값 ArrayList arryValue = new ArrayList(); arryValue.Add(new TXTBOXclass(this, "제목값", "제목값", 340, 40, 349, 35, txtbox_Click)); arryValue.Add(new TXTBOXclass(this, "저자값", "저자값", 340, 40, 349, 85, txtbox_Click)); arryValue.Add(new TXTBOXclass(this, "출판사값", "출판사값", 340, 40, 349, 135, txtbox_Click)); arryValue.Add(new TXTBOXclass(this, "장르값", "장르값", 340, 40, 349, 185, txtbox_Click)); arryValue.Add(new TXTBOXclass(this, "도서위치값", "A열 2 - 1", 340, 40, 349, 235, txtbox_Click)); for (int i = 0; i < arryValue.Count; i++) { TextBox textbox = comm.txtbox((TXTBOXclass)arryValue[i]); textbox.Font = new Font(textbox.Font.Name, 17, FontStyle.Bold); 책정보패널.Controls.Add(textbox); if (textbox.Name == "제목값") { 제목값 = textbox; } else if (textbox.Name == "저자값") { 저자값 = textbox; } else if (textbox.Name == "출판사값") { 출판사값 = textbox; } else if (textbox.Name == "장르값") { 장르값 = textbox; } else if (textbox.Name == "도서위치값") { 도서위치값 = textbox; } } ArrayList btnarry = new ArrayList(); btnarry.Add(new BTNclass(this, "등록버튼", "등 록", 120, 50, 575, 670, btn_Click)); btnarry.Add(new BTNclass(this, "이미지추가버튼", "도서 이미지 추가", 180, 30, 32, 285, btn_Click)); btnarry.Add(new BTNclass(this, "요청리스트삭제", "요청 리스트 삭제", 180, 30, 1239, 60, btn_Click)); for (int i = 0; i < btnarry.Count; i++) { Button 버튼 = comm.btn((BTNclass)btnarry[i]); if (버튼.Name == "등록버튼") { 버튼.Font = new Font(버튼.Font.Name, 20, FontStyle.Bold); } else if (버튼.Name == "이미지추가버튼") { 버튼.Font = new Font(버튼.Font.Name, 13, FontStyle.Bold); } 버튼.BackColor = Color.FromArgb(50, 178, 223); 버튼.FlatStyle = FlatStyle.Flat; 버튼.ForeColor = Color.White; 버튼.Region = Region.FromHrgn(COMMON_Create_Ctl.CreateRoundRectRgn(2, 2, 버튼.Width, 버튼.Height, 18, 18)); if (버튼.Name == "요청리스트삭제") { Controls.Add(버튼); } else { 책정보패널.Controls.Add(버튼); } } LBclass 요청입고목록값 = new LBclass(this, "요청입고목록", "입고 요청한 도서 목록", 24, 400, 40, 770, 40, label_Click); Label 요청입고목록 = comm.lb(요청입고목록값); 요청입고목록.Font = new Font(요청입고목록.Font.Name, 24, FontStyle.Bold); Controls.Add(요청입고목록); LISTVIEWclass 요청입고_리스트뷰값 = new LISTVIEWclass(this, "요청입고리스트뷰", 700, 650, 775, 105, listView_MouseClick, listview_mousedoubleclick, 6, "", 0, "회원번호", 100, "요청자", 100, "도서명", 300, "저자", 100, "출판사", 100); 요청입고_리스트뷰 = comm.listView(요청입고_리스트뷰값); 요청입고_리스트뷰.Font = new Font("Arial", 15, FontStyle.Bold); MySql mysql = new MySql(); ArrayList Receiving_equest_arry = mysql.Select(string.Format("select R.request_number, S.user_number, S.name, R.title, R.author, R.publisher, R.genre from signup S inner join Receiving_equest R on (S.user_number = R.user_number);")); foreach (Hashtable ht in Receiving_equest_arry) { ListViewItem item = new ListViewItem(ht["request_number"].ToString()); item.SubItems.Add(ht["user_number"].ToString()); item.SubItems.Add(ht["name"].ToString()); item.SubItems.Add(ht["title"].ToString()); item.SubItems.Add(ht["author"].ToString()); item.SubItems.Add(ht["publisher"].ToString()); item.Font = new Font("Arial", 15, FontStyle.Italic); 요청입고_리스트뷰.Items.Add(item); } Controls.Add(요청입고_리스트뷰); }
private void USER_LEVEL_UPDATE_FORM_Load(object sender, EventArgs e) { this.Paint += new PaintEventHandler(this.Form_Paint); //FormBorderStyle = FormBorderStyle.None; 폼 상단 표시줄 제거 ClientSize = new Size(sX, sY); // 폼 사이즈 지정. /// 좌표 체크시 추가 /// //Point_Print(); COMMON_Create_Ctl create_ctl = new COMMON_Create_Ctl(); // BTNclass bt1 = new BTNclass(this, "버튼Name", "버튼Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 버튼클릭이벤트); BTNclass bt1 = new BTNclass(this, "Home", "button1", 100, 100, 10, 10, btn_Click); // LBclass lb1 = new LBclass(this, "라벨Name", "라벨Text", 라벨Font사이즈, 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 라벨클릭이벤트); LBclass lb1 = new LBclass(this, "label1", "label_name~", 24, 100, 100, 10, 10, label_Click); // PANELclass pn1 = new PANELclass(this, "패널Name", "패널Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 패널마우스이동이벤트); PANELclass pn1 = new PANELclass(this, "panel1", "panel_txt~", 200, 200, 100, 100); // TABCTLclass tabctl = new TABCTLclass(this, "탭컨트롤Name", "탭컨트롤Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 탭높이, 탭컨트롤마우스이동이벤트); TABCTLclass tabctl = new TABCTLclass(this, "tabctl1", "tabctl1~", 450, 160, 7, 313, 30, tabctl_MouseMove); // TABPAGEclass tabpg1 = new TABPAGEclass(this, "탭페이지Name", "탭페이지Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 탭페이지마우스이동이벤트); TABPAGEclass tabpg1 = new TABPAGEclass(this, "tabpage1", "tapage1~", 100, 100, 0, 0, tabpage_MouseMove); // CHKBOXclass bhkbox1 = new CHKBOXclass(this, "체크박스Name", 체크박스Text", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 체크박스클릭이벤트); CHKBOXclass chkbox1 = new CHKBOXclass(this, "chkbox1", "chkbox1~", 100, 100, 20, 20, chkbox_Click); // LISTVIEWclass listview1 = new LISTVIEWclass(this, "리스트뷰Name", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 리스트뷰더블클릭이벤트, 컬럼갯수, "컬럼1번Name", 컬럼1간격, "컬럼2번Name", 컬럼2간격, "컬럼3번Name", 컬럼3간격, ~ 동일방식 10개 컬럼까지 가능); LISTVIEWclass listview1 = new LISTVIEWclass(this, "ListView1", 500, 500, 10, 10, listview_mousedoubleclick, listview_mousedoubleclick, 3, "col1", 100, "col2", 100, "col3", 100); // COMBOBOXclass combobox1 = new COMBOBOXclass(this, "콤보박스Name", 가로사이즈, 세로사이즈, 가로포인트, 세로포인트, 콤보박스클릭이벤트, 리스트추가갯수, "test1", "test2", "test3", "test4", "test5"); COMBOBOXclass combobox1 = new COMBOBOXclass(this, "ComboBox1", 100, 100, 721, 12, ComboBox_SelectedIndexChanged, 5, "test1", "test2", "test3", "test4", "test5"); // 회원등급 수정 고정라벨 ArrayList arry = new ArrayList(); arry.Add(new LBclass(this, "회원등급제목", "회원 등급 수정", 17, 200, 30, 30, 30, label_Click)); arry.Add(new LBclass(this, "회원등급", "회원 등급", 17, 140, 30, 30, 115, label_Click)); arry.Add(new LBclass(this, "회원ID", "회원 ID", 17, 140, 30, 30, 175, label_Click)); arry.Add(new LBclass(this, "회원이름", "회원 이름", 17, 140, 30, 30, 235, label_Click)); arry.Add(new LBclass(this, "회원번호", "회원 번호", 17, 140, 30, 30, 295, label_Click)); arry.Add(new LBclass(this, "연락처", "연락처", 17, 140, 40, 30, 355, label_Click)); arry.Add(new LBclass(this, "", ":", 12, 30, 40, 210, 115, label_Click)); arry.Add(new LBclass(this, "", ":", 12, 30, 40, 210, 175, label_Click)); arry.Add(new LBclass(this, "", ":", 12, 30, 40, 210, 235, label_Click)); arry.Add(new LBclass(this, "", ":", 12, 30, 40, 210, 295, label_Click)); arry.Add(new LBclass(this, "", ":", 12, 30, 40, 210, 355, label_Click)); for (int i = 0; i < arry.Count; i++) { Label label = comm.lb((LBclass)arry[i]); label.Font = new Font(label.Font.Name, 20, FontStyle.Bold); Controls.Add(label); } MySql mysql = new MySql(); ArrayList userinfoSearch_arry = mysql.Select(string.Format("select * from signup where user_number = {0}", user_number)); foreach (Hashtable ht in userinfoSearch_arry) { 회원등급Temp값 = ht["member_rank"].ToString(); 회원IDTemp값 = ht["id"].ToString(); 회원이름Temp값 = ht["name"].ToString(); 회원번호Temp값 = ht["user_number"].ToString(); 연락처Temp값 = ht["phone_number"].ToString(); } // 회원등급 TextBox 변동값 ArrayList userinfoArry = new ArrayList(); userinfoArry.Add(new TXTBOXclass(this, "회원등급값", "회원등급값", 250, 40, 250, 110, txtbox_Click)); userinfoArry.Add(new TXTBOXclass(this, "회원ID값", "회원ID값", 250, 40, 250, 170, txtbox_Click)); userinfoArry.Add(new TXTBOXclass(this, "회원이름값", "회원이름값", 250, 40, 250, 230, txtbox_Click)); userinfoArry.Add(new TXTBOXclass(this, "회원번호값", "회원번호값", 250, 40, 250, 290, txtbox_Click)); userinfoArry.Add(new TXTBOXclass(this, "연락처값", "연락처값", 250, 40, 250, 350, txtbox_Click)); for (int i = 0; i < userinfoArry.Count; i++) { TextBox textBox = comm.txtbox((TXTBOXclass)userinfoArry[i]); textBox.ReadOnly = true; textBox.Font = new Font(textBox.Font.Name, 18, FontStyle.Bold); if (textBox.Name == "회원등급값") { if (회원등급Temp값 == "0") { textBox.Text = "관리자"; } else if (회원등급Temp값 == "1") { textBox.Text = "일반회원"; } else { textBox.Text = "비회원"; } } else if (textBox.Name == "회원ID값") { textBox.Text = 회원IDTemp값; } else if (textBox.Name == "회원이름값") { textBox.Text = 회원이름Temp값; } else if (textBox.Name == "회원번호값") { textBox.Text = 회원번호Temp값; } else if (textBox.Name == "연락처값") { textBox.Text = 연락처Temp값; } Controls.Add(textBox); } // 권한 선택 - 라디오 버튼 ArrayList radio_arry = new ArrayList(); radio_arry.Add(new RADIOclass(this, "관리자권한", "관리자 권한", 250, 40, 570, 160, radio_btn_Click)); radio_arry.Add(new RADIOclass(this, "회원권한", "회원 권한", 250, 40, 570, 255, radio_btn_Click)); for (int i = 0; i < radio_arry.Count; i++) { RadioButton 권한선택라디오 = comm.radio_btn((RADIOclass)radio_arry[i]); 권한선택라디오.Font = new Font(권한선택라디오.Font.Name, 20, FontStyle.Bold); Controls.Add(권한선택라디오); if (권한선택라디오.Name == "관리자권한") { 관리자라디오버튼 = 권한선택라디오; } else if (권한선택라디오.Name == "회원권한") { 회원라디오버튼 = 권한선택라디오; } } // 권한 선택 - 설정 버튼 ArrayList btn_arry = new ArrayList(); btn_arry.Add(new BTNclass(this, "설정완료", "설정 완료", 100, 40, 570, 345, btn_Click)); btn_arry.Add(new BTNclass(this, "취소", "취 소", 100, 40, 680, 345, btn_Click)); for (int i = 0; i < btn_arry.Count; i++) { Button 권한설정버튼 = comm.btn((BTNclass)btn_arry[i]); 권한설정버튼.BackColor = Color.FromArgb(50, 178, 223); 권한설정버튼.Font = new Font(권한설정버튼.Font.Name, 12, FontStyle.Bold); 권한설정버튼.FlatStyle = FlatStyle.Flat; 권한설정버튼.ForeColor = Color.White; 권한설정버튼.Region = Region.FromHrgn(COMMON_Create_Ctl.CreateRoundRectRgn(2, 2, 권한설정버튼.Width, 권한설정버튼.Height, 10, 10)); Controls.Add(권한설정버튼); } }