상세 컨텐츠

본문 제목

Color 색상 정보값 처리 방법

C#

by xarfox 2010. 8. 25. 15:49

본문

// Color 오브젝트를 색상정보값 문자열로 처리
System.ComponentModel.TypeConverter converter = System.ComponentModel.TypeDescriptor.GetConverter(colorDlg.Color);
string colorAsString = converter.ConvertToString(colorDlg.Color);
// 일반 색상값은 문자열로 나타난다. ex) Red, Blue, Green
// 사용자 정의 색상값은 RGB 값으로 100, 200, 150 으로 나타난다.

// 색상 정보 문자값을 오브젝트 Color로 변환하기
lbl_Flow_Text.ForeColor = Color.FromArgb(int.Parse(RGB_R), int.Parse(RGB_G), int.Parse(RGB_B));
lbl_Flow_Text.ForeColor = Color.FromName(fontcolor);

관련글 더보기