Exemplo n.º 1
0
 public void OnOptionSelected(DropDownOption option, bool call = true)
 {
     if (string.IsNullOrEmpty(this.Label.Value))
     {
         ((ButtonView)FindFirstChildByName("button")).Text = option.Text;
     }
     if (option.OnClicked != null && call)
     {
         option.OnClicked();
     }
     this.LastItemSelected.Value = GetOptionIndex(option.Text);
     this.HideDropDown();
 }
Exemplo n.º 2
0
		public void OnOptionSelected(DropDownOption option, bool call = true)
		{
			if (string.IsNullOrEmpty(this.Label.Value))
				((ButtonView)FindFirstChildByName("button")).Text = option.Text;
			if (option.OnClicked != null && call)
				option.OnClicked();
			this.LastItemSelected.Value = GetOptionIndex(option.Text);
			this.HideDropDown();
		}