Esempio n. 1
0
        private void Init(FrameworkElement editor, PropertyField field)
        {
            VisualEditor = editor;

            Field = field;

            WireEditor();
        }
Esempio n. 2
0
        public void Dispose()
        {
            UnWireEditor();

            VisualEditor = null;

            Field = null;
        }
        public static PropertyEditor GetFieldEditor(PropertyField field)
        {
            if (field == null)
            {
                return(null);
            }

            FrameworkElement element = null;

            if (!field.PropertyInfo.CanWrite)
            {
                var textEditor = new TextBox();
                textEditor.Text            = (field.Value == null) ? string.Empty : field.Value.ToString();
                textEditor.IsReadOnly      = true;
                textEditor.Foreground      = Brushes.Gray;
                textEditor.BorderThickness = new Thickness(0);

                element = textEditor;
            }
            else if (field.PropertyType.IsEnum)
            {
                var comboEditor = new ComboBox();
                comboEditor.ItemsSource     = Enum.GetValues(field.PropertyType);
                comboEditor.SelectedValue   = field.Value;
                comboEditor.BorderThickness = new Thickness(0);

                element = comboEditor;
            }
            else if (field.PropertyType == typeof(Boolean))
            {
                var comboEditor = new ComboBox();
                comboEditor.Items.Add(true);
                comboEditor.Items.Add(false);
                comboEditor.SelectedValue   = field.Value;
                comboEditor.BorderThickness = new Thickness(0);

                element = comboEditor;
            }
            else if (field.PropertyType.IsPrimitive || field.PropertyType == typeof(String))
            {
                var textEditor = new TextBox();
                textEditor.Text            = (field.Value == null) ? string.Empty : field.Value.ToString();
                textEditor.BorderThickness = new Thickness(0);

                element = textEditor;
            }
            else
            {
                var textBlock = new TextBlock();
                textBlock.Text = field.Value == null ? string.Empty : field.Value.ToString();

                element = textBlock;
            }

            return(new PropertyEditor(element, field));
        }
Esempio n. 4
0
 public PropertyEditor(FrameworkElement editor, PropertyField field)
 {
     Init(editor, field);
 }