C# 클래스 EnterpriseWebLibrary.EnterpriseWebFramework.Controls.ControlStack

Used to stack inline controls vertically. Implemented with div blocks.
상속: System.Web.UI.WebControls.WebControl, ControlTreeDataLoader
파일 보기 프로젝트 열기: enduracode/enterprise-web-library 1 사용 예제들

공개 메소드들

메소드 설명
AddControls ( ) : void

Adds the specified controls to the stack.

AddItem ( ControlListItem item ) : void

Adds an item to the control stack.

AddModificationErrorItem ( EwfValidation validation, ErrorDisplayStyle displayStyle ) : void

Adds an item for the error messages from the specified validation. If there aren't any error messages, the control getter is not called and no item is added.

AddText ( ) : void

Add the given list of strings to the control stack. Do not pass null for any of the strings. If you do, it will be converted to the empty string.

Create ( bool isStandard, IEnumerable tailUpdateRegions = null, IEnumerable itemInsertionUpdateRegions = null ) : ControlStack

Creates a blank vertical stack of controls.

CreateWithControls ( bool isStandard ) : ControlStack

Creates a control stack and adds the specified controls to it.

CreateWithText ( bool isStandard ) : ControlStack

Creates a vertical stack of text controls out of the given list of strings.

비공개 메소드들

메소드 설명
ControlStack ( bool isStandard, IEnumerable tailUpdateRegions, IEnumerable itemInsertionUpdateRegions ) : System
ControlTreeDataLoader ( ) : void
getItemControl ( bool>.Tuple item ) : IEnumerable

메소드 상세

AddControls() 공개 메소드

Adds the specified controls to the stack.
public AddControls ( ) : void
리턴 void

AddItem() 공개 메소드

Adds an item to the control stack.
public AddItem ( ControlListItem item ) : void
item ControlListItem
리턴 void

AddModificationErrorItem() 공개 메소드

Adds an item for the error messages from the specified validation. If there aren't any error messages, the control getter is not called and no item is added.
public AddModificationErrorItem ( EwfValidation validation, ErrorDisplayStyle displayStyle ) : void
validation EwfValidation
displayStyle ErrorDisplayStyle
리턴 void

AddText() 공개 메소드

Add the given list of strings to the control stack. Do not pass null for any of the strings. If you do, it will be converted to the empty string.
public AddText ( ) : void
리턴 void

Create() 공개 정적인 메소드

Creates a blank vertical stack of controls.
public static Create ( bool isStandard, IEnumerable tailUpdateRegions = null, IEnumerable itemInsertionUpdateRegions = null ) : ControlStack
isStandard bool Sets whether or not this control stack will have standard styling.
tailUpdateRegions IEnumerable
itemInsertionUpdateRegions IEnumerable
리턴 ControlStack

CreateWithControls() 공개 정적인 메소드

Creates a control stack and adds the specified controls to it.
public static CreateWithControls ( bool isStandard ) : ControlStack
isStandard bool
리턴 ControlStack

CreateWithText() 공개 정적인 메소드

Creates a vertical stack of text controls out of the given list of strings.
public static CreateWithText ( bool isStandard ) : ControlStack
isStandard bool
리턴 ControlStack