본문 바로가기
백엔드/C#

아이템을 삭제한 경우 BindingSource에 DataSource에 무엇을 넣나?

by 1005ptr 2019. 5. 23.
반응형

아이템 클래스를 BindingSource.DataSource에 바인딩해서 썼는데

아이템이 삭제되서 초기화하려는데 null을 넣으니까 BindingSource.DataSource에는 null을 넣을 수 없었다.

 

Microsoft의 답변은 아래와 같이 처리하는 것

BindingSource.DataSource = typeof(클래스명);

 

초기화할때 썼던 클래스타입지정 문장을 다시 써주는것.

 

참고 : https://stackoverflow.com/questions/28743511/how-to-clear-a-binding-source

 

How to clear a binding source?

I have this model: public class CustomerType { public int Id {get; set;} public string Name {get; set;} public string Description {get; set;} } Then, I have a binding source on a WinF...

stackoverflow.com

 

반응형

댓글