C\#picturebox 컨트롤 에 그림 선택 상 태 를 추가 하 는 두 가지 방법

방법 1:
간단 한 방법 은 picturebox 컨트롤 의 borderstyle 스타일 을 바 꾸 는 것 입 니 다.
 currentSelectPicBox.BorderStyle = BorderStyle.Fixed3D;            currentSelectPicBox.Refresh();//강제 컨트롤 다시 그리 기
방법 2
picturebox 컨트롤 에 직사각형 상 자 를 추가 합 니 다.  그러나 이런 방법 은 프로그램 에서 반응 이 비교적 느리다.
사각형 상자 추가 방법:            Graphics pictureborder = currentSelectPicBox.CreateGraphics();            Pen pen = new Pen(Color.Red, 2);            pictureborder.DrawRectangle(pen, currentSelectPicBox.ClientRectangle.X, currentSelectPicBox.ClientRectangle.Y, currentSelectPicBox.ClientRectangle.X + currentSelectPicBox.ClientRectangle.Width, currentSelectPicBox.ClientRectangle.Y + currentSelectPicBox.ClientRectangle.Height);직사각형 상 자 를 제거 하 는 방법
currentSelectPicBox.Invalidate();
여러분 이 더 좋 은 방법 이 있다 면 저희 와 함께 나 눌 수 있 었 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기