C# 클래스 Eto.Drawing.IconFrame

상속: IControlObjectSource, IHandlerSource
파일 보기 프로젝트 열기: picoe/Eto 1 사용 예제들

Private Properties

프로퍼티 타입 설명
IconFrame System

공개 메소드들

메소드 설명
FromControlObject ( float scale, object controlObject ) : IconFrame

Creates an instance of the IconFrame with the specified native control object.

This is used by platform implementations to create instances of this class with the appropriate control object. This is not intended to be called directly.

FromResource ( float scale, string resourceName, Assembly assembly = null ) : IconFrame

Creates an instance of the IconFrame from an embedded resource.

IconFrame ( float scale, Bitmap bitmap ) : System

Initializes a new instance of the Eto.Drawing.IconFrame class.

IconFrame ( float scale, Func load ) : System

Initializes a new instance of the Eto.Drawing.IconFrame class.

IconFrame ( float scale, Stream stream ) : System

Initializes a new instance of the Eto.Drawing.IconFrame class.

비공개 메소드들

메소드 설명
IconFrame ( float scale ) : System

메소드 상세

FromControlObject() 공개 정적인 메소드

Creates an instance of the IconFrame with the specified native control object.
This is used by platform implementations to create instances of this class with the appropriate control object. This is not intended to be called directly.
public static FromControlObject ( float scale, object controlObject ) : IconFrame
scale float Scale of logical to physical pixels.
controlObject object Native control object.
리턴 IconFrame

FromResource() 공개 정적인 메소드

Creates an instance of the IconFrame from an embedded resource.
public static FromResource ( float scale, string resourceName, Assembly assembly = null ) : IconFrame
scale float Scale of logical to physical pixels.
resourceName string Name of the embedded resource to load.
assembly System.Reflection.Assembly Assembly to load the embedded resource from, or null to use the calling assembly.
리턴 IconFrame

IconFrame() 공개 메소드

Initializes a new instance of the Eto.Drawing.IconFrame class.
public IconFrame ( float scale, Bitmap bitmap ) : System
scale float Scale of logical to physical pixels.
bitmap Bitmap Bitmap for the frame
리턴 System

IconFrame() 공개 메소드

Initializes a new instance of the Eto.Drawing.IconFrame class.
public IconFrame ( float scale, Func load ) : System
scale float Scale of logical to physical pixels.
load Func Delegate to load the stream when the frame's data is required.
리턴 System

IconFrame() 공개 메소드

Initializes a new instance of the Eto.Drawing.IconFrame class.
public IconFrame ( float scale, Stream stream ) : System
scale float Scale of logical to physical pixels.
stream Stream Stream for the bitmap data.
리턴 System