Ejemplo n.º 1
0
        void DrawOject(ExtendedJObject s, int depth = 0)
        {
            ///root
            if (s.Depth == 0)
            {
                DrawPoperty(s, s, false, isObject: true, depth: -1);
            }

            foreach (var item in s.Properties)
            {
                bool isArray  = item.JType == JTokenType.Array;
                bool isObject = item.JType == JTokenType.Object && item.Value.Count() > 0;

                DrawPoperty(s, item, isArray: isArray, isObject: isObject, depth: depth);

                if (isObject)
                {
                    DrawOject(s.ObjectKeys[item.Key], depth: depth);
                }
                else if (isArray)
                {
                    var array = item.Value as JArray;
                    if (s.ObjectKeys.ContainsKey(item.Key))
                    {
                        var oject = s.ObjectKeys[item.Key];
                        DrawPoperty(s, oject, depth: depth + 1, isArrayOject: true, isObject: true);
                        DrawOject(oject, depth: depth + 2);
                    }
                }
            }
        }
Ejemplo n.º 2
0
        //Dictionary<String, ExtendedJObject> objects = new Dictionary<string, ExtendedJObject>();

        private string FormatJson(string str)
        {
            if (str == null || str == "")
            {
                return("");
            }

            obj             = null;
            extendedJObject = null;
            ShowProgressRing();
            try
            {
                //格式化json字符串
                JsonSerializer serializer = new JsonSerializer();

                obj = JObject.Parse(str);
                GenerateExtendOject();
                HideProgressRing();
                if (obj != null)
                {
                    StringWriter   textWriter = new StringWriter();
                    JsonTextWriter jsonWriter = new JsonTextWriter(textWriter)
                    {
                        Formatting  = Formatting.Indented,
                        Indentation = 4,
                        IndentChar  = ' '
                    };
                    serializer.Serialize(jsonWriter, obj);
                    return(textWriter.ToString());
                }
                else
                {
                    return(str);
                }
            }
            catch (Exception ex)
            {
                HideProgressRing();
                obj             = null;
                extendedJObject = null;
                sp.Children.Clear();
                MyMessageBox.Show(ex.Message + "\n" + ex.StackTrace);
                return(str);
            }
        }
Ejemplo n.º 3
0
        private void PropertyNameSortingTypeComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            if (extendedJObject != null && obj != null)
            {
                sp.Children.Clear();
                if (ConfigHelper.Instance.Config.PropertyNameSortingType == PropertyNameSortingType.None)
                {
                    extendedJObject = new ExtendedJObject("Root", new KeyValuePair <string, JToken>("Root", obj), 0);
                }
                else
                {
                    extendedJObject.OrderPropeties();
                }


                DrawOject(extendedJObject);
            }
        }
Ejemplo n.º 4
0
 private void GenerateExtendOject()
 {
     try
     {
         extendedJObject = null;
         extendedJObject = new ExtendedJObject("Root", new KeyValuePair <string, JToken>("Root", obj), 0);
         //PrepareOject(extendedJObject);
         sp.Children.Clear();
         DrawOject(extendedJObject);
     }
     catch (Exception ex)
     {
         HideProgressRing();
         obj             = null;
         extendedJObject = null;
         sp.Children.Clear();
         MyMessageBox.Show(ex.Message + "\n" + ex.StackTrace);
     }
 }
Ejemplo n.º 5
0
        private void DrawPoperty(ExtendedJObject s, ExtendedProperty property, bool isArray = false, bool isObject = false, int depth = 0, bool isArrayOject = false)
        {
            var finalDepth = s.Depth + depth + 1;

            double w = 20.0;

            Grid grid = new Grid()
            {
                Height = 40.0,
#if WINDOWS_UWP
                BorderBrush = new SolidColorBrush()
                {
                    Color = Colors.Black
                },
                BorderThickness = new Thickness()
                {
                    Bottom = 1.0
                },
#endif


                HorizontalAlignment = HorizontalAlignment.Stretch,
                VerticalAlignment   = VerticalAlignment.Stretch
            };

            grid.ColumnDefinitions.Add(new ColumnDefinition()
            {
                Width = new GridLength(3, GridUnitType.Star)
            });
            grid.ColumnDefinitions.Add(new ColumnDefinition()
            {
                Width = new GridLength(1, GridUnitType.Star)
            });
            grid.ColumnDefinitions.Add(new ColumnDefinition()
            {
                Width = new GridLength(1, GridUnitType.Star)
            });
            grid.ColumnDefinitions.Add(new ColumnDefinition()
            {
                Width = new GridLength(1, GridUnitType.Star)
            });

            var tb = new TextBlock()
            {
                VerticalAlignment = VerticalAlignment.Center, Text = isArrayOject ? DartType.Object.ToString() : property.Key, Padding = new Thickness()
                {
                    Left = w * finalDepth
                }
            };

            Grid.SetColumn(tb, 0);

            grid.Children.Add(tb);



            if (isArray)
            {
                var    array  = property.Value as JArray;
                Border border = new Border()
                {
                    Padding = new Thickness()
                    {
                        Left = 10.0
                    }, BorderBrush = new SolidColorBrush(Colors.Black), HorizontalAlignment = HorizontalAlignment.Stretch, VerticalAlignment = VerticalAlignment.Stretch, BorderThickness = new Thickness()
                    {
                        Left = 1.0
                    }
                };

                if (s.ObjectKeys.ContainsKey(property.Key))
                {
                    var      oject      = s.ObjectKeys[property.Key];
                    var      typeString = property.GetTypeString(className: oject.ClassName);
                    String[] ss;
                    String   start;
                    String   end;
                    if (oject.ClassName != "")
                    {
                        typeString = typeString.Replace($"<{oject.ClassName}>", "<>");
                    }

                    ss    = typeString.Split(new string[] { "<>" }, StringSplitOptions.None);
                    start = ss[0] + "<";
                    end   = ">" + ss[1];


                    StackPanel sp = new StackPanel()
                    {
                        Orientation = Orientation.Horizontal, VerticalAlignment = VerticalAlignment.Center
                    };
                    sp.Children.Add(new TextBlock()
                    {
                        Text = start
                    });
                    var     temp    = new TextBlock();
                    Binding binding = new Binding();
                    binding.Source = oject;
                    binding.Mode   = BindingMode.OneWay;
                    binding.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
                    binding.Path = new PropertyPath("ClassName");
                    temp.SetBinding(TextBlock.TextProperty, binding);
                    sp.Children.Add(temp);
                    sp.Children.Add(new TextBlock()
                    {
                        Text = end
                    });
                    border.Child = sp;
                }
                else
                {
                    tb = new TextBlock()
                    {
                        Text = property.GetTypeString(), VerticalAlignment = VerticalAlignment.Center
                    };
                    border.Child = tb;
                }


                Grid.SetColumn(border, 1);
                grid.Children.Add(border);
            }
            else if (isObject)
            {
                Border border = new Border()
                {
#if !WINDOWS_UWP
                    Padding = new Thickness()
                    {
                        Left = 8.0
                    },
#endif
                    BorderBrush         = new SolidColorBrush(Colors.Black),
                    HorizontalAlignment = HorizontalAlignment.Stretch,
                    VerticalAlignment   = VerticalAlignment.Stretch,
                    BorderThickness     = new Thickness()
                    {
                        Left = 1.0
                    }
                };
                var textBox = new TextBox()
                {
                    VerticalContentAlignment = VerticalAlignment.Center, HorizontalAlignment = HorizontalAlignment.Stretch, VerticalAlignment = VerticalAlignment.Center, BorderThickness = new Thickness()
                };
                border.Child = textBox;

                Binding binding = new Binding();
                binding.Source = property;
                binding.Mode   = BindingMode.TwoWay;
                binding.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
                binding.Path = new PropertyPath("ClassName");
                textBox.SetBinding(TextBox.TextProperty, binding);

                Binding colorBinding = new Binding();
                colorBinding.Source = property;
                colorBinding.Mode   = BindingMode.TwoWay;
                colorBinding.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
                colorBinding.Path = new PropertyPath("ClassNameColor");
                border.SetBinding(Border.BackgroundProperty, colorBinding);
                textBox.SetBinding(TextBox.BackgroundProperty, colorBinding);

                Grid.SetColumn(border, 1);
                grid.Children.Add(border);
            }
            else
            {
                ComboBox combo = new ComboBox()
                {
                    VerticalContentAlignment = VerticalAlignment.Center, HorizontalAlignment = HorizontalAlignment.Stretch, VerticalAlignment = VerticalAlignment.Stretch, BorderThickness = new Thickness()
                    {
                        Left = 1.0
                    }
                };
                Binding binding = new Binding();
                binding.Source = property;
                binding.Mode   = BindingMode.TwoWay;
                binding.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
                binding.Path = new PropertyPath("Type");
                combo.SetBinding(ComboBox.SelectedItemProperty, binding);
                combo.ItemsSource = DartTypes;
                Grid.SetColumn(combo, 1);
                grid.Children.Add(combo);
            }


            if (finalDepth > 0 && !isArrayOject)
            {
                Border border = new Border()
                {
                    BorderBrush = new SolidColorBrush(Colors.Black), HorizontalAlignment = HorizontalAlignment.Stretch, VerticalAlignment = VerticalAlignment.Stretch, BorderThickness = new Thickness()
                    {
                        Left = 1.0
                    }
                };
                var textBox = new TextBox()
                {
#if !WINDOWS_UWP
                    //Margin = new Thickness() { Left = 10.0 },
#endif
                    VerticalContentAlignment   = VerticalAlignment.Center,
                    HorizontalAlignment        = HorizontalAlignment.Center,
                    VerticalAlignment          = VerticalAlignment.Center,
                    HorizontalContentAlignment = HorizontalAlignment.Center,
                    BorderThickness            = new Thickness()
                };
                border.Child = textBox;
                Binding binding = new Binding();
                binding.Source = property;
                binding.Mode   = BindingMode.TwoWay;
                binding.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
                binding.Path = new PropertyPath("Name");
                textBox.SetBinding(TextBox.TextProperty, binding);

                Binding colorBinding = new Binding();
                colorBinding.Source = property;
                colorBinding.Mode   = BindingMode.TwoWay;
                colorBinding.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
                colorBinding.Path = new PropertyPath("Color");
                border.SetBinding(Border.BackgroundProperty, colorBinding);
                textBox.SetBinding(TextBox.BackgroundProperty, colorBinding);

                Grid.SetColumn(border, 2);

                grid.Children.Add(border);
            }
            else
            {
                Border border = new Border()
                {
                    Background = new SolidColorBrush(Colors.Gray), HorizontalAlignment = HorizontalAlignment.Stretch, VerticalAlignment = VerticalAlignment.Stretch,
                };
                Grid.SetColumn(border, 2);

                grid.Children.Add(border);
            }
            if (finalDepth > 0 && !isArrayOject)
            {
                ComboBox typeCombo = new ComboBox()
                {
                    ItemsSource = PropertyAccessorTypes, VerticalContentAlignment = VerticalAlignment.Center, HorizontalAlignment = HorizontalAlignment.Stretch, VerticalAlignment = VerticalAlignment.Stretch, BorderThickness = new Thickness()
                    {
                        Left = 1.0
                    }, BorderBrush = new SolidColorBrush(Colors.Black)
                };
                Binding typeBinding = new Binding();
                typeBinding.Source = property;
                typeBinding.Mode   = BindingMode.TwoWay;
                typeBinding.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
                typeBinding.Path = new PropertyPath("PropertyAccessorType");
                typeCombo.SetBinding(ComboBox.SelectedItemProperty, typeBinding);
                ToolTipService.SetPlacement(typeCombo,
#if WINDOWS_UWP
                                            Windows.UI.Xaml.Controls.Primitives.PlacementMode.Mouse
#else
                                            System.Windows.Controls.Primitives.PlacementMode.Mouse
#endif

                                            );
                ToolTipService.SetToolTip(typeCombo, new ToolTip()
                {
                    Content = "属性访问器的类型,无,Get,GetSet"
                });
                //oolTipService.se
                Grid.SetColumn(typeCombo, 3);
                grid.Children.Add(typeCombo);
            }
            else
            {
                Border border = new Border()
                {
                    Background = new SolidColorBrush(Colors.Gray), HorizontalAlignment = HorizontalAlignment.Stretch, VerticalAlignment = VerticalAlignment.Stretch,
                };
                Grid.SetColumn(border, 3);

                grid.Children.Add(border);
            }
#if WINDOWS_UWP
            sp.Children.Add(grid);
#else
            sp.Children.Add(new Border()
            {
                Child = grid, BorderBrush = new SolidColorBrush()
                {
                    Color = Colors.Black
                }, BorderThickness = new Thickness()
                {
                    Bottom = 1.0
                },
            });
#endif
        }