반응형
PropertyDescriptor descriptor = TypeDescriptor.GetProperties(this.GetType())["속성이름"];
BrowsableAttribute attrib = (BrowsableAttribute)descriptor.Attributes[typeof(BrowsableAttribute)];
FieldInfo isBrow = attrib.GetType().GetField("browsable", BindingFlags.NonPublic | BindingFlags.Instance);
isBrow.SetValue(attrib, True or False);
'Programing > C# ' 카테고리의 다른 글
showWindow 에서 TopMost로 폼창 띄우기 (0) | 2014.04.21 |
---|---|
Custom Button for Image (0) | 2014.04.03 |
한글입력 구분 (0) | 2014.03.26 |
Graphics Text Rotate 글자 회전 (0) | 2013.12.18 |
point , inch, pixel ,mm 단위 관계 (0) | 2013.12.11 |