diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index b23dd6e..dd74a5c 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -254,6 +254,26 @@ namespace RDTKEditor }, }, _ => new() + { + Orientation = Orientation.Horizontal, + Children = + { + new Label(){Content = property.Name}, + new TextBox() { Text = property.Value, } + }, + }, + RDPropertyType.Color => new() + { + AllowDrop = true, + Orientation = Orientation.Horizontal, + FlowDirection = FlowDirection.LeftToRight, + Children = + { + new Label(){Content = property.Name}, + new TextBox() { Text = property.Value, } + }, + }, + _ => new() { Orientation = Orientation.Horizontal, Children =