From 81146213b442f626f9677a2bf7df4ff7d7688c5c Mon Sep 17 00:00:00 2001 From: Rene Modery Date: Tue, 15 Nov 2022 23:17:15 +0800 Subject: [PATCH] Component & Container Icons Added component and container (normal, horizontal, vertical) icons --- PowerDocu.Common/AppControlIcons.cs | 43 +++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/PowerDocu.Common/AppControlIcons.cs b/PowerDocu.Common/AppControlIcons.cs index 7a4b3e1..f263ae1 100644 --- a/PowerDocu.Common/AppControlIcons.cs +++ b/PowerDocu.Common/AppControlIcons.cs @@ -23,6 +23,7 @@ public static string GetControlIcon(string controlname) "checkbox" => CheckboxIcon, "circle" => ShapesIcon, "combobox" => ComboBoxIcon, + "component" => ComponentIcon, "dataTable" => DataGridIcon, "datepicker" => DatePickerIcon, "dropdown" => DropDownIcon, @@ -35,6 +36,7 @@ public static string GetControlIcon(string controlname) "galleryTemplate" => UnknownControlIcon, "group" => GroupIcon, "hexagon" => ShapesIcon, + "horizontalAutoLayoutContainer" => HorizontalLayoutContainerIcon, "htmlViewer" => HtmlViewerIcon, "icon" => IconsIcon, "image" => ImageIcon, @@ -44,6 +46,7 @@ public static string GetControlIcon(string controlname) "legend" => UnknownControlIcon, "lineChart" => LineChartIcon, "listbox" => ListboxIcon, + "manualLayoutContainer" => ManualLayoutContainerIcon, "Map" => MapIcon, "markupInMr" => MarkupInMrIcon, "MeasureInMR" => MeasureInMRIcon, @@ -70,6 +73,7 @@ public static string GetControlIcon(string controlname) "toggleSwitch" => ToggleSwitchIcon, "triangle" => ShapesIcon, "typedDataCard" => UnknownControlIcon, + "verticalAutoLayoutContainer" => VerticalLayoutContainerIcon, "videoPlayback" => VideoIcon, "ViewIn3D" => ViewIn3DIcon, "ViewInMR" => ViewInMRIcon, @@ -643,5 +647,44 @@ public static string TextRecognizerIcon IconFooter; } } + + public static string ManualLayoutContainerIcon + { + get + { + return @"" + + @"" + + IconFooter; + } + } + + public static string HorizontalLayoutContainerIcon + { + get + { + return IconHeader + + @"" + + IconFooter; + } + } + + public static string VerticalLayoutContainerIcon + { + get + { + return IconHeader + + @"" + + IconFooter; + } + } + public static string ComponentIcon + { + get + { + return @"" + + @"" + + IconFooter; + } + } } } \ No newline at end of file