C# 클래스 ImageGlass.ImageListView.ImageListView.ImageListViewItemAdaptor

Represents the abstract case class for adaptors.
상속: IDisposable
파일 보기 프로젝트 열기: d2phap/ImageGlass 1 사용 예제들

공개 메소드들

메소드 설명
Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

GetDetails ( object key, bool useWIC ) : Utility.Tuple[]

Returns the details for the given item.

GetSourceImage ( object key ) : string

Returns the path to the source image for use in drag operations.

GetThumbnail ( object key, Size size, UseEmbeddedThumbnails useEmbeddedThumbnails, bool useExifOrientation, bool useWIC ) : Image

Returns the thumbnail image for the given item.

메소드 상세

Dispose() 공개 추상적인 메소드

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public abstract Dispose ( ) : void
리턴 void

GetDetails() 공개 추상적인 메소드

Returns the details for the given item.
public abstract GetDetails ( object key, bool useWIC ) : Utility.Tuple[]
key object Item key.
useWIC bool true to use Windows Imaging Component; otherwise false.
리턴 Utility.Tuple[]

GetSourceImage() 공개 추상적인 메소드

Returns the path to the source image for use in drag operations.
public abstract GetSourceImage ( object key ) : string
key object Item key.
리턴 string

GetThumbnail() 공개 추상적인 메소드

Returns the thumbnail image for the given item.
public abstract GetThumbnail ( object key, Size size, UseEmbeddedThumbnails useEmbeddedThumbnails, bool useExifOrientation, bool useWIC ) : Image
key object Item key.
size System.Drawing.Size Requested image size.
useEmbeddedThumbnails UseEmbeddedThumbnails Embedded thumbnail usage.
useExifOrientation bool true to automatically rotate images based on Exif orientation; otherwise false.
useWIC bool true to use Windows Imaging Component; otherwise false.
리턴 Image