본문 바로가기 메뉴 바로가기

프로그래밍

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

프로그래밍

검색하기 폼
  • 분류 전체보기 (125)
    • C# Programming (47)
    • Python Programming (0)
    • Veranda Plant Factory (22)
    • System Trading (10)
    • Excel & VBA (9)
    • esp32 드론 만들기 (7)
    • Sqlite Database (3)
    • Chrome Extension (0)
    • Stirling Engine Generator (3)
    • 3D Printing (2)
    • Mysql Database (2)
    • Windows Trouble Shooting (2)
    • IT & Computer (2)
    • Book Summary (1)
    • Mathematics (1)
    • Tranggle GPS (1)
    • Recipes (1)
    • OpenOffice (1)
    • Electronic Craft (1)
    • RecordOfReading (3)
    • HTML CSS JAVASCRIPT (1)
  • 방명록

C# Programming (47)
C# 람다식 Thread 시작

new Thread(() => { for (int i = 0; i < 10000000; i++) { items[0].Time = i.ToString(); if(i == 9999999) { dataGridView1.Invalidate(); } } } ).Start();

C# Programming 2019. 9. 27. 22:16
C# datagridview 마우스로 Row 이동

private Rectangle dragBoxFromMouseDown; private int rowIndexFromMouseDown; private int rowIndexOfItemUnderMouseToDrop; private void ItemGrid_MouseMove(object sender, MouseEventArgs e) { if ((e.Button & MouseButtons.Left) == MouseButtons.Left) { if (dragBoxFromMouseDown != Rectangle.Empty && !dragBoxFromMouseDown.Contains(e.X, e.Y)) { DragDropEffects dropEffect = Condition1Grid.DoDragDrop(Conditi..

C# Programming 2019. 9. 25. 02:27
C# 마우스 드래그로 폼 이동하기

private Point mousePoint; // 현재 마우스 포인터의 좌표저장 변수 선언 // 마우스 누를때 현재 마우스 좌표를 저장한다 private void Form1_MouseDown(object sender, MouseEventArgs e) { mousePoint = new Point(e.X, e.Y); //현재 마우스 좌표 저장 } // 마우스 왼쪽 버튼을 누르고 움직이면 폼을 이동시킨다 private void Form1_MouseMove(object sender, MouseEventArgs e) { if ((e.Button & MouseButtons.Left) == MouseButtons.Left) //마우스 왼쪽 클릭 시에만 실행 { //폼의 위치를 드래그중인 마우스의 좌표로 이동 Loc..

C# Programming 2019. 9. 22. 12:31
C# 바인딩된 Datagridview 마우스 드래그로 순서 변경하기

private Rectangle dragBoxFromMouseDown; private int rowIndexFromMouseDown; private int rowIndexOfItemUnderMouseToDrop; private void ItemGrid_MouseMove(object sender, MouseEventArgs e) { if ((e.Button & MouseButtons.Left) == MouseButtons.Left) { if (dragBoxFromMouseDown != Rectangle.Empty && !dragBoxFromMouseDown.Contains(e.X, e.Y)) { DragDropEffects dropEffect = ItemGrid.DoDragDrop(ItemGrid.Rows..

C# Programming 2019. 9. 21. 21:21
C# 프로그레스바 색 변경하기

class NewProgressBar : ProgressBar { private SolidBrush brush = null; public NewProgressBar() { this.SetStyle(ControlStyles.UserPaint, true); } protected override void OnPaint(PaintEventArgs e) { if (brush == null || brush.Color != this.ForeColor) brush = new SolidBrush(this.ForeColor); Rectangle rec = new Rectangle(0, 0, this.Width, this.Height); if (ProgressBarRenderer.IsSupported) ProgressBar..

C# Programming 2019. 7. 19. 12:53
C# combobox 마우스휠 막기

comboBox1.MouseWheel += ConditionBox_MouseWheel; private void ConditionBox_MouseWheel(object sender, MouseEventArgs e) { ((HandledMouseEventArgs)e).Handled = true; }

C# Programming 2019. 7. 8. 23:27
C# 텍스트 읽어주는 SpeechSynthesizer Class

간단 사용법입니다 SpeechSynthesizer synth = new SpeechSynthesizer(); synth.SetOutputToDefaultAudioDevice(); synth.Speak("안녕하세요");

C# Programming 2019. 6. 17. 10:34
C# datagridview 틀고정하기

datagridview1.Columns[1].Frozen = true; datagridview1.Rows[1].Frozen = true;

C# Programming 2019. 6. 13. 04:27
이전 1 2 3 4 5 6 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • 시스템트레이딩
  • 이 행은
  • c# Speech
  • C# 마우스 폼이동
  • framework
  • 인삼키우기
  • NET FRAMEWORK
  • 이베스트
  • MySQL
  • C# textbox 커서 시작
  • 스털링
  • ESP32
  • imemode
  • 앉은뱅이 방울토마토
  • 방울토마토
  • c#
  • ArgumentException
  • 복호화
  • c# 음성
  • 베란타
  • 베란다 방울토마토
  • c# SpeechSynthesizer
  • 스털링엔진
  • Xingapi
  • 베란다 텃밭
  • C# textbox 커서 위치
  • 암호화
  • 드론
  • C# textbox 커서 마지막
  • 코딩
more
«   2025/07   »
일 월 화 수 목 금 토
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
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바