=====* unimarc *=====
- 주문처 관리 - 마크관리 / 장비관리 Grid 정비중. ㄴ> 현재 값이 입력되면 자동으로 날짜출력하는 기능 추가중 - 마크탭 전체 재정비중 - 기타 소스코드 함수 정리
This commit is contained in:
		
							
								
								
									
										51
									
								
								unimarc/unimarc/마크/Marc_Plan.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								unimarc/unimarc/마크/Marc_Plan.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,51 @@ | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using System.ComponentModel; | ||||
| using System.Data; | ||||
| using System.Drawing; | ||||
| using System.Linq; | ||||
| using System.Text; | ||||
| using System.Threading.Tasks; | ||||
| using System.Windows.Forms; | ||||
|  | ||||
| namespace WindowsFormsApp1.Mac | ||||
| { | ||||
|     public partial class Marc_Plan : Form | ||||
|     { | ||||
|         Main main; | ||||
|         public Marc_Plan(Main _main) | ||||
|         { | ||||
|             InitializeComponent(); | ||||
|             main = _main; | ||||
|         } | ||||
|  | ||||
|         private void btn_Select_List_Click(object sender, EventArgs e) | ||||
|         { | ||||
|             dataGridView1.Rows.Add(1); | ||||
|         } | ||||
|  | ||||
|         private void button1_Click(object sender, EventArgs e) | ||||
|         { | ||||
|             foreach(DataGridViewColumn c in dataGridView1.Columns) | ||||
|             { | ||||
|                 if (c.CellType.ToString().Contains("CheckBox")) | ||||
|                 { | ||||
|                     button1.Text = c.Index.ToString(); | ||||
|                 } | ||||
|             } | ||||
|         } | ||||
|  | ||||
|         private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) | ||||
|         { | ||||
|             Skill_Grid sg = new Skill_Grid(); | ||||
|             sg.Print_Grid_Num(sender, e); | ||||
|         } | ||||
|  | ||||
|         private void checkBox1_CheckedChanged(object sender, EventArgs e) | ||||
|         { | ||||
|             foreach (DataGridViewRow r in dataGridView1.Rows) { | ||||
|                 r.Cells["colCheck"].Value = ((CheckBox)sender).Checked; | ||||
|             } | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 SeungHo Yang
					SeungHo Yang