부모글 보이기/감추기 What is the property system?; http://blogs.msdn.com/benkaras/archive/2006/08/28/729153.aspxVista 에 소개되는 새로운 기능이군요.다음 회에서는 사용예까지 보여준다고 하니 일단 대강 읽어보기만 해도 될 것 같습니다.WinFS 의 일부 기능을 지원한 듯도 보이고. AD BLOCK 해제 요청 이 글에는 광고가 많이 들어가 있지 않습니다. adblock을 해제하셔도 글을 읽는데 그다지 부담이 없으니 해제를 부탁드립니다. Property consumerism ; https://learn.microsoft.com/en-us/archive/blogs/benkaras/property-consumerism 약속대로 코드 예제를 공개했습니다. 별로 많은 내용이 아니니, 여기에 복사해 넣습니다. Reading properties is rather simple. First, bind to the item. SHCreateItemFromIDList and SHCreateItemFromParsingName are appropriate for this. Then read your properties. Be sure to clean up after yourself. IShellItem2 *psi;if (SUCCEEDED(SHCreateItemFromParsingName(L"c:\tortoise.doc", NULL, IID_IShellItem2, (void**)&psi))) { IPropertyStore *pps; if (SUCCEEDED(psi->GetPropertyStore(GPS_DEFAULT, IID_IPropertyStore, (void**)&pps))) { PROPVARIANT propvar = {0}; if (SUCCEEDED(pps->GetValue(PKEY_Title, &propvar))) { wprintf(L"Title: %s\n", PropVariantToStringWithDefault(propvar, L"")); PropVariantClear(&propvar); } pps->Release(); } psi->Release();} Not bad for reading the title of a document! And I even checked the return results. --- Constable Umer walked down the narrow flagstone path, then onto cobblestones and finally gravel stones. Turning a corner, Cons. Umer found a door with a small card pinned to next to it. "Great Flying Tortoise: Purveyor of fine, proper teas." [다음 글] Vista : 8. What is the property system?[이전 글] Vista : 8. The source of property types [최초 등록일: 10/20/2006] [최종 수정일: 4/26/2024] 비밀번호 댓글 작성자 2006-10-06 10시35분 Properties coding expedition #1 - Binding to an item ; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-1-binding-to-an-itemProperties coding expedition #2 - printing the IPropertyStore ; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-2-printing-the-ipropertystoreProperties coding expedition #3 - Printing a value ; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-3-printing-a-valueProperties coding expedition #4 - The output; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-4-the-outputProperties coding expedition #5 - Stripping characters; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-5-stripping-charactersProperties coding expedition #6 - Developer friendly output; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-6-developer-friendly-outputProperties coding expedition #7 - The final output; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-7-the-final-output kevin25 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 ... NoWriterDateCnt.TitleFile(s) 975정성태10/9/200814004.NET : 88. ClickOnce에서 .application 파일을 다운로드 하려고 할 때.974정성태10/8/200814038TFS : 168. MSBuild Extension Pack973정성태10/5/200815749.NET 3.5 : 42. WPF - Web Browser 및 Splash Control 추가972정성태10/2/200814101TFS : 167. TFS Power Tools 다음 버전 소개971정성태9/22/200814338TFS : 166. Index cards and Team System 970정성태9/16/200814201Vista : 53. 설치 디스크를 USB 로 만들기968정성태9/11/200813843XML Conformance Level 에 Fragment 값이 쓰이는 경우.967정성태9/8/200814789.NET : 87. CertEnroll 개체를 이용한 인증서 요청/반환/설치966정성태9/2/200814685.NET : 86. .NET Framework 3.5 SP1 소스 코드 공개965정성태9/2/200816151Vista : 52. SPI(Stateful Packet Inspection) 옵션 제거964정성태8/18/200817067.NET 3.0 : 24. WPF DataGrid969정성태9/16/200815499 .NET 3.0 : 24.1 Editing Tabular Data in WPF - Building a WPF Grid963정성태7/25/200815746.NET : 85. VPL(Visual Programming Language)를 아세요?962정성태7/24/200814963TFS : 165. WorkItem 에 대해 Full Text 검색961정성태7/20/200814706.NET : 84. WCSF Application Architecture960정성태7/14/200813694.NET : 83. Non Paged CLR Host959정성태7/7/200814193.NET : 82. Composite Application Guidance for WPF958정성태7/7/200815412.NET : 81. C# - 왜 모든 함수호출에서 callvirt 를 사용할까?957정성태6/30/200814596GUID956정성태6/27/200813950TFS : 164. 팀 프로젝트 간 WorkItem 이동 방법955정성태6/26/200814400TFS : 163. 삭제된 항목을 소스 컨트롤 탐색기에서 보이도록 하는 방법954정성태6/20/200814015Debug : 37. IDE 디자인 모드에서의 디버깅 기법953정성태6/10/200814808.NET : 80. Unity Application Block 소개(?) [1]952정성태4/28/200814060.NET : 79. IconHandler 2.0951정성태4/28/200814420SDK : 14. STA / MTA 기원950정성태4/24/200813741.NET : 78. Ajax View 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 ...