Force property update in propertygrid
Programming/C# / 2011. 11. 29. 18:57
특정 이벤트에서 변경 이벤트가 발생할 때,
propertyGrid1.Refresh();
실행
테스트를 해 본 바로는 PropertyValueChanged Event가 적당함.
출처 : Mine
I know this is an OLD thread, but for the next person looking for a response this works quite well for me:
propertyGrid1.Refresh();
실행
테스트를 해 본 바로는 PropertyValueChanged Event가 적당함.
출처 : Mine
I know this is an OLD thread, but for the next person looking for a response this works quite well for me:
Expand|Select|Wrap|Line Numbers
- object Temp = propertyGrid1.SelectedObject;
- propertyGrid1.SelectedObject = null;
- propertyGrid1.SelectedObject = Temp;
Feb 26 '10 #4
출처 : http://bytes.com/topic/c-sharp/answers/436382-force-property-update-propertygrid
반응형
'Programming > C#' 카테고리의 다른 글
문자열이 숫자 값을 나타내는지 확인 (0) | 2011.12.16 |
---|---|
Operator Overloading in C# (2) | 2011.12.05 |
is 비교 연산자, as 연산자 (0) | 2011.11.29 |
effective c# - 1 (0) | 2011.11.29 |
TreeNode Visual C# 도구 설명을 추가하는 방법 (0) | 2011.11.21 |