C# 클래스 Server.ContextMenus.ContextMenuEntry

Represents a single entry of a context menu. ContextMenu
파일 보기 프로젝트 열기: brodock/runuo 1 사용 예제들

공개 메소드들

메소드 설명
ContextMenuEntry ( int number ) : System

Instantiates a new ContextMenuEntry with a given Number">localization number (maximum range is used.

ContextMenuEntry ( int number, int range ) : System

Instantiates a new ContextMenuEntry with a given Number">localization number (Range">maximum range (

OnClick ( ) : void

Overridable. Virtual event invoked when the entry is clicked.

메소드 상세

ContextMenuEntry() 공개 메소드

Instantiates a new ContextMenuEntry with a given Number">localization number (maximum range is used.
public ContextMenuEntry ( int number ) : System
number int /// The localization number containing the name of this entry. /// ///
리턴 System

ContextMenuEntry() 공개 메소드

Instantiates a new ContextMenuEntry with a given Number">localization number (Range">maximum range (
public ContextMenuEntry ( int number, int range ) : System
number int /// The localization number containing the name of this entry. /// ///
range int /// The maximum range at which this entry can be used. /// ///
리턴 System

OnClick() 공개 메소드

Overridable. Virtual event invoked when the entry is clicked.
public OnClick ( ) : void
리턴 void