Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- blog
- hackerrank
- rank
- TMS
- python3
- python 3.7
- 중복제거
- pyhcarm
- dbadvgrid
- 백준
- 델파이
- advColumnGrid
- queryset
- HTML
- GIT
- MSSQL
- pythonanywhere
- get_object_or_404
- PyCharm
- Delphi
- Visual Studio
- anaconda3
- templates
- github
- delphi 10.3
- Django
- declare
- c#
- COMMIT
- Push
Archives
- Today
- Total
목록DataGridViewImageColumn (1)
DevHyun
DataGridView 활용
// Row clear dataGridView1.Rows.Clear(); // 컬럼 갯수 지정 this.dataGridView1.ColumnCount = 4; // 컬럼 너비 지정 this.dataGridView1.Columns[0].Width = 20; // 이미지 컬럼 추가 DataGridViewImageColumn iconColumn = new DataGridViewImageColumn(); dataGridView1.Columns.Insert(3, iconColumn); // 리소스 파일의 test_img 참조 Image tempImg = Properties.Resources.test_img; // 지정한 컬럼 갯수 만큼 해당 Row에 add dataGridView1.Rows.Add(value, v..
C#
2023. 11. 9. 11:14