C# 클래스 Habanero.Faces.Base.ButtonGroupControlManager

This manager groups common logic for IButtonGroupControl objects. Do not use this object in working code - rather call CreateButtonGroupControl in the appropriate control factory.
파일 보기 프로젝트 열기: Chillisoft/habanero.faces 1 사용 예제들

공개 메소드들

메소드 설명
AddButton ( string buttonName ) : IButton

Adds a button with te button name and text equal to buttonName.

AddButton ( string buttonName, string buttonText, EventHandler clickHandler ) : IButton

Adds a new button to the control by the name specified

ButtonGroupControlManager ( IButtonGroupControl buttonGroupControl, IControlFactory controlFactory ) : System

Constructor for the ButtonGroupControlManager

메소드 상세

AddButton() 공개 메소드

Adds a button with te button name and text equal to buttonName.
public AddButton ( string buttonName ) : IButton
buttonName string
리턴 IButton

AddButton() 공개 메소드

Adds a new button to the control by the name specified
public AddButton ( string buttonName, string buttonText, EventHandler clickHandler ) : IButton
buttonName string The name that the button is created with
buttonText string The text to appear on the button
clickHandler EventHandler The event handler to be triggered on the button click
리턴 IButton

ButtonGroupControlManager() 공개 메소드

Constructor for the ButtonGroupControlManager
public ButtonGroupControlManager ( IButtonGroupControl buttonGroupControl, IControlFactory controlFactory ) : System
buttonGroupControl IButtonGroupControl
controlFactory IControlFactory
리턴 System