PropertyGrid 속성 값 가져오기(사용하기)
Programming/C# / 2011. 11. 2. 14:32
-------------------------------------------------------------------------------------------------------------------------
class PropertySettings{
private int index;
[CategoryAttribute("Base"),
DescriptionAttribute("인덱스 입니다."),
DefaultValueAttribute(-1)]
public int Index
{
get { return index; }
set { index = value; }
}
}propertyGrid1.SelectedObject = PropertySettings;
-------------------------------------------------------------------------------------------------------------------------
object obj = propertyGrid1.SelectedObject;PropertySettings settings = (PropertySettings )obj;
int index = settings.Index;
이렇게 하면 되네요.
다른 더 좋은 방법 아시는 분은 알려주세요. =ㅅ=
출처 : Mine
반응형
'Programming > C#' 카테고리의 다른 글
TreeView 이용하기(추가/선택삭제/체크삭제) (0) | 2011.11.14 |
---|---|
TreeView에서 Node 검색 및 카테고리 구현 (0) | 2011.11.14 |
PropertyGrid and Drop Down properties (0) | 2011.11.02 |
[오류] 컨트롤에 최상위 컨트롤을 추가할 수 없습니다. (0) | 2011.10.31 |
표준 Dispose 패턴 (0) | 2011.10.31 |