Notice
- Today
- Total
Recent Posts
Recent Comments
Link
Tags
- mariaDB 설치
- ImageList Icon 변환
- OSHP
- c#
- ubuntu
- RaspberryPi
- ContextMenuStrip
- 자동 닫힘
- usb 인식 불가
- startActivity
- mariaDB 외부접속
- 다중 Filter
- ScrollBarTrackPolicy
- 라즈베리 피이
- 라즈베리파이
- <<<<<<<<
- .mine
- Raspberry Pi
- onPageFinished
- Spread
- node.js 설치
- WebViewClient
- MariaDB
- node.js
- Ribbon
- 동영상 오류
- mp4 재생
- Image icon 변환
- UltraToolbarsManager
- OpenFileDialog
Archives
목록Language (34)
Realman's World
[C#] 점선 그리기
DrawLine을 이용하여 선을 그릴때 일반 실선 외에 점선을 그릴 때가 있다. 이때는 아래와 같이 하면 된다. Graphics e = Graphics.FromImage(pic.Image); Pen pLine = new Pen(Color.Gray,2); pLine.DashStyle = DashStyle.DashDot; Point pt1 = new Point(10, 10); Point pt2 = new Point(100, 100); e.DrawLine(pLine, pt1, pt2); 이때 DashStyle의 맴버 변수 설정에 따라 선의 종류는 달라진다.
Language/C#
2009. 1. 16. 14:24
[C#] Anchor 다중 설정하기
보통 Anchor는 디자인 모드에서 간단히 설정할 수 있다. 이를 소스상에서 설정할 경우 Top, Left, Right, Bottom 을 다중으로 설정하는 방법은 아래와 같다. gateInfo.Anchor = ((AnchorStyles)(((AnchorStyles.Top | AnchorStyles.Left) | AnchorStyles.Right)));
Language/C#
2009. 1. 13. 14:26
[Farpoint Spread] Column Sort 시키기 (SetColumnAllowAutoSort)
Column Header를 클릭했을 때 Sorting 시키려면 SetColumnAllowAutoSort 함수를 이용하면 된다. spsGateDtlInfo.SetColumnAllowAutoSort(i, spsGateDtlInfo.ColumnCount, true); 첫번째 인자는 시작 Column, 두번째 인자는 Column 개수, 세번째 인자는 자동 Sorting 여부를 지정해 준다.
Language/FarPoint Spread
2009. 1. 13. 09:17