Clear 명령이 이상할때 DataGrid 초기화 방법을 알아보자.
이유는 모르겠지만 Component One의 Clear명령이 제대로 작동을 안할때
(C1을 감싸서 프레임워크를 만들어놓고 소스를 안남기고 튄 X자식때문에..)
컬럼명 형태는 그대로 남기면서 DataGrid를 초기화 하고 싶을땐 아래와 같이 Clone()을 사용하여 껍데기만 넣어주면 된다.
if(Grid.DataSource != null)
{
Grid.DataSource = (Grid.DataSource as DataTable).Clone();
}
관련글
날다의 운영환경 | |
---|---|
본체 | MacBook Pro |
O S | Windows7 Ultimate K |
Application | Micorsoft Visual Studio Ultimate 2013 |
Tool | Component One v20171.1.3 |