public UIElement Visit(Evaluation.Values.String value) { CustomTextBox customTextBox = new CustomTextBox(new StringHandler()) { Name = uiElementId, Text = value.GetValue(), IsReadOnly = isReadOnly }; customTextBox.EventUpdateValue += UpdateValue; return(customTextBox); }
public StackPanel Visit(Values.String value) { throw new ArgumentException("StackPanel cannot be created using Evaluation.Values.String"); }