public JasonneteFooterInputLabelButton(string text, JasonetteAction action)
 {
     this.Text   = text;
     this.Action = action;
 }
Exemplo n.º 2
0
 public JasonetteLabelLayer(string text, JasonetteAction action)
 {
     this.Text   = text;
     this.Action = action;
     this.Style  = new Dictionary <string, object>();
 }
Exemplo n.º 3
0
 public JasonetteImageMenu(string image, JasonetteAction action)
 {
     this.Image  = image;
     this.Action = action;
 }
 public JasonetteImageLayer(string url, JasonetteAction action)
 {
     this.Url    = url;
     this.Action = action;
     this.Style  = new Dictionary <string, object>();
 }
 public JasonneteFooterInputImageButton(string url, JasonetteAction action)
 {
     this.Url    = url;
     this.Action = action;
 }
Exemplo n.º 6
0
 public JasonetteLabelMenu(string text, JasonetteAction action)
 {
     this.Text   = text;
     this.Action = action;
 }