[C#] 자주썼던 코드 정리

이상윤·2022년 11월 23일
0

c#

목록 보기
2/2

자주썼던 코드들

Invoke

Invoke 사용하기

object.Invoke((MethodInvoker)delegate ()
{
	object.Text += BitConverter.ToString(packet) + "\r\n";
});

ListView

LstvwDataReceive.Columns.Add("주소");
LstvwDataReceive.Columns.Add("값");
LstvwDataReceive.View = View.Details;
LstvwDataReceive.GridLines = true;
LstvwDataReceive.FullRowSelect = true;
LstvwDataReceive.CheckBoxes = false;

0개의 댓글