C# 클래스 APG.CodeHelper.IconHelper.IconListManager

파일 보기 프로젝트 열기: UGTU/UGTUKadrProject

공개 메소드들

메소드 설명
AddFileIcon ( string filePath ) : int

Called publicly to add a file's icon to the ImageList.

ClearLists ( ) : void

Clears any ImageLists that IconListManager is managing.

IconListManager ( System imageList, IconReader iconSize ) : System

Creates an instance of IconListManager that will add icons to a single ImageList using the specified IconSize.

IconListManager ( System smallImageList, System largeImageList ) : System

Creates an instance of IconListManager that will add icons to two ImageList types. The two image lists are intended to be one for large icons, and the other for small icons.

비공개 메소드들

메소드 설명
AddExtension ( string Extension, int ImageListPosition ) : void

Used internally, adds the extension to the hashtable, so that its value can then be returned.

메소드 상세

AddFileIcon() 공개 메소드

Called publicly to add a file's icon to the ImageList.
public AddFileIcon ( string filePath ) : int
filePath string Full path to the file.
리턴 int

ClearLists() 공개 메소드

Clears any ImageLists that IconListManager is managing.
public ClearLists ( ) : void
리턴 void

IconListManager() 공개 메소드

Creates an instance of IconListManager that will add icons to a single ImageList using the specified IconSize.
public IconListManager ( System imageList, IconReader iconSize ) : System
imageList System ImageList to add icons to.
iconSize IconReader Size to use (either 32 or 16 pixels).
리턴 System

IconListManager() 공개 메소드

Creates an instance of IconListManager that will add icons to two ImageList types. The two image lists are intended to be one for large icons, and the other for small icons.
public IconListManager ( System smallImageList, System largeImageList ) : System
smallImageList System The ImageList that will hold small icons.
largeImageList System The ImageList that will hold large icons.
리턴 System