에서 찾아보기 단추를 추가DevExpress의 13.2 - 나는 같은 열이 데이터베이스의 테이블을 treelist 열
CategoryId
CategoryName
ParentCategoryId
CategoryPath
CategoryPath
는 자식 요소 인 경우에만 값을 갖게됩니다. 이제 내가 쓴 다음 코드 treeviewlist을 채우는 다음 CategoryPath
열 들어
DataTable dt = d.CategoryGet(new System.Collections.Hashtable());
treeList1.DataSource = dt;
treeList1.KeyFieldName = info.CategoryParameters.CategoryId.ToString();
treeList1.ParentFieldName = info.CategoryParameters.ParentCategoryId.ToString();
treeList1.PopulateColumns();
treeList1.BestFitColumns();
treeList1.ExpandAll();
treeList1.FocusedNode = treeList1.Nodes[0];
을, 나는 사용자가 파일 이름을 선택할 수 있습니다 특징에서 파일 대화 상자와 그 전체 경로 것 열립니다 이미지를 추가 할 데이터베이스에 저장됩니다.
당신이 그렇게 할 것을 제안 해주십시오 수는 경로를 변경할 수있는 이미지 버튼과 함께 열에 나타납니다 경로가있는 경우; 또한 사용자가 경로가 아직 지정되지 않은 하위 요소에 대한 새 경로를 지정하려는 경우 이미지가 나타납니다.
도움을 주시면 감사하겠습니다.
그냥 호기심, 왜 DevExpress의 지원을 시도 해달라고. 그들은 매우 도움이되고 반응이 좋다. – AnarchistGeek
:) 자신의 사이트에서 해결책을 찾았습니다. – user1254053