Exemple #1
0
        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);
        }
Exemple #2
0
 public StackPanel Visit(Values.String value)
 {
     throw new ArgumentException("StackPanel cannot be created using Evaluation.Values.String");
 }