コード例 #1
0
ファイル: ButtonDropDown.cs プロジェクト: OsvaldoJ/Sushi
 /// <summary>
 /// Sets the behaviour of the Client Html, can be a <c>Submit</c>, <c>Button</c> or <c>link</c>
 ///  </summary>
 /// <param name="behaviour"></param>
 /// <returns></returns>
 public ButtonDropDown SetBehaviour(HtmlBehaviourType behaviour)
 {
     this.Component.Button.Behaviour = behaviour;
     return this;
 }
コード例 #2
0
ファイル: Button.cs プロジェクト: xareas/Sushi
 /// <summary>
 /// Sets the behaviour of the Client Html, can be a <c>Submit</c>, <c>Button</c> or <c>link</c>
 ///  </summary>
 /// <param name="behaviour"></param>
 /// <returns></returns>
 public Button SetBehaviour(HtmlBehaviourType behaviour)
 {
     this.Component.Behaviour = behaviour;
     return(this);
 }