[C#] Splash와 DB

강서현·2022년 5월 24일
0

C#

목록 보기
8/23

리스트박스의 스크롤기능

lstDB.SelectedIndex = index++;
lstDB.ScrollIntoView(lstDB.SelectedItem);

WPF에서 delay주는 방법

Dispatcher.Invoke((ThreadStart)(() => { }),
	DispatcherPriority.ApplicationIdle);
Thread.Sleep(20); //0.02초 딜레이

DB프로그램 연결 절차

  1. 커넥션 열기
SqlConnection conn = new SqlConnection(connStr);
if (conn.State == ConnectionState.Closed)
	conn.Open();
  1. 명령 수행하기
  2. 커넥션 닫기
conn.Close();
profile
Recording...

0개의 댓글