일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- advColumnGrid
- declare
- blog
- python 3.7
- github
- COMMIT
- queryset
- anaconda3
- TMS
- Django
- 중복제거
- MSSQL
- c#
- pyhcarm
- pythonanywhere
- templates
- Push
- PyCharm
- GIT
- dbadvgrid
- get_object_or_404
- 백준
- 델파이
- rank
- hackerrank
- Delphi
- Visual Studio
- delphi 10.3
- python3
- HTML
- Today
- Total
목록C# (7)
DevHyun
// 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..
// dictionary 선언 // CurrentCultureIgnoreCase : 대소문자 구분무시 static Dictionary TestDic= new Dictionary(StringComparer.CurrentCultureIgnoreCase); // dictionary에 직접 key, value 값 추가 TestDic.Add(Key, Value); private void form1_MouseDown(object sender, MouseEventArgs e) { // 기존에 하드코딩했던 dictionary 복제용 변수 var dicOrg = new Dictionary(StringComparer.CurrentCultureIgnoreCase); // 기존 dictionary에서 내부 검색 dicOrg ..
public partial class Form1: Form { public Form1 ( ) { } // form2에서 참조하기 위한 public 메소드 생성 public void testMethod(){ } } public partial class Form2: Form { public Form2 ( Form1, form1 ) { // form1 메소드 참조용 변수 f1 선언 var f1 = Application.OpenForms.OfType().Single(); f1. testMethod(); } }
private Point point = new Point(); // mousedown 이벤트 private void panel2_MouseDown(object sender, MouseEventArgs e) { // 클릭후 드래그로 폼 이동시 사용 point = new Point(e.X, e.Y); } // mousemove 이벤트 // mouseup 이벤트에서 사용시 버벅거림 현상이 생김 private void panel2_MouseMove(object sender, MouseEventArgs e) { // 클릭후 드래그로 폼 이동시 사용 if ((e.Button & MouseButtons.Left) == MouseButtons.Left) { this.Location = new Point(this.Lef..
// filePath 변수생성 및 초기값 지정 const string filePath = @"C:\"; // filePath에 만들고자 하는 파일이 없을때 if (File.Exists(filePath) == false) { try { // 디렉토리 부터 생성 DirectoryInfo di = new DirectoryInfo(DirPath); if (di.Exists == false) { try { di.Create(); } catch { MessageBox.Show("디렉토리 생성 실패"); } } } catch { //MessageBox.Show(""); }
1. dll 활용 // dll 선언 [DllImport("kernel32.dll")] private static extern uint GetPrivateProfileString(string section, string key, string defaultValue, StringBuilder returnedString, uint size, string filePath); [DllImport("kernel32.dll")] private static extern bool WritePrivateProfileString(string section, string key, string value, string filePath); // 사용 // ini파일 구성 // [section] // key : value stri..
1. kill private static void killps(string processName) { // 프로세스 kill 메소드 Process[] process = Process.GetProcessesByName(processName); Process currentProcess = Process.GetCurrentProcess(); foreach (Process p in process) { if (p.Id != currentProcess.Id) p.Kill(); } } processName은 보통 fom 이름일 경우가 많기 때문에 사용은 아래와 같이 하면 됨. killps(this.Text); 2. sendmessage // dll 참조 선언 [DllImportAttribute("User32.dll"..