C# 클래스 ZForge.Controls.Wizard.PageCollection

Summary description for PanelCollection.
상속: System.Collections.CollectionBase
파일 보기 프로젝트 열기: zhuangyy/Motion 1 사용 예제들

공개 메소드들

메소드 설명
Add ( WizardPage value ) : int

Adds a WizardPage into the Collection

AddRange ( WizardPage pages ) : void

Adds an array of pages into the collection. Used by the Studio Designer generated coed

Contains ( WizardPage value ) : bool

Detects if a given Page is in the Collection

IndexOf ( WizardPage value ) : int

Finds the position of the page in the colleciton

Insert ( int index, WizardPage value ) : void

Adds a new page at a particular position in the Collection

PageCollection ( Wizard parent ) : System

Constructor requires the wizard that owns this collection

Remove ( WizardPage value ) : void

Removes the given page from the collection

this ( int index ) : WizardPage

Finds the Page in the collection

보호된 메소드들

메소드 설명
OnInsertComplete ( int index, object value ) : void

Propgate when a external designer modifies the pages

OnRemoveComplete ( int index, object value ) : void

Propogates when external designers remove items from page

메소드 상세

Add() 공개 메소드

Adds a WizardPage into the Collection
public Add ( WizardPage value ) : int
value WizardPage The page to add
리턴 int

AddRange() 공개 메소드

Adds an array of pages into the collection. Used by the Studio Designer generated coed
public AddRange ( WizardPage pages ) : void
pages WizardPage Array of pages to add
리턴 void

Contains() 공개 메소드

Detects if a given Page is in the Collection
public Contains ( WizardPage value ) : bool
value WizardPage Page to find
리턴 bool

IndexOf() 공개 메소드

Finds the position of the page in the colleciton
public IndexOf ( WizardPage value ) : int
value WizardPage Page to find position of
리턴 int

Insert() 공개 메소드

Adds a new page at a particular position in the Collection
public Insert ( int index, WizardPage value ) : void
index int Position
value WizardPage Page to be added
리턴 void

OnInsertComplete() 보호된 메소드

Propgate when a external designer modifies the pages
protected OnInsertComplete ( int index, object value ) : void
index int
value object
리턴 void

OnRemoveComplete() 보호된 메소드

Propogates when external designers remove items from page
protected OnRemoveComplete ( int index, object value ) : void
index int
value object
리턴 void

PageCollection() 공개 메소드

Constructor requires the wizard that owns this collection
public PageCollection ( Wizard parent ) : System
parent Wizard Wizard
리턴 System

Remove() 공개 메소드

Removes the given page from the collection
public Remove ( WizardPage value ) : void
value WizardPage Page to remove
리턴 void

this() 공개 메소드

Finds the Page in the collection
public this ( int index ) : WizardPage
index int
리턴 WizardPage