From e8ccaeeac49a7082f1f54c2fb70b7d560475197e Mon Sep 17 00:00:00 2001 From: Sebastian Muthwill Date: Mon, 11 Oct 2021 21:59:20 +0200 Subject: [PATCH 1/8] initial commit --- .gitignore | 2 + __init__.py | 0 config.yaml | 17 ++++ main.py | 78 ++++++++++++++++ powerapps_docstring/__init__.py | 0 powerapps_docstring/documentation.py | 134 +++++++++++++++++++++++++++ powerapps_docstring/parser.py | 45 +++++++++ powerapps_docstring/powerapp.py | 44 +++++++++ requirements.txt | 2 + 9 files changed, 322 insertions(+) create mode 100644 .gitignore create mode 100644 __init__.py create mode 100644 config.yaml create mode 100644 main.py create mode 100644 powerapps_docstring/__init__.py create mode 100644 powerapps_docstring/documentation.py create mode 100644 powerapps_docstring/parser.py create mode 100644 powerapps_docstring/powerapp.py create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f3e98c5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +src/* +__pycache* diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..56a6d73 --- /dev/null +++ b/config.yaml @@ -0,0 +1,17 @@ +# Holds all objects and their corresponding propperties that are considered +# for documentation (sequence has no influence) +RelevantObjects: + #button: [OnSelect, Text] + #barcodeScanner: [OnScan] + #form: [DataSource, Item] + gallery: [Items, OnSelect] + #image: [Image, OnSelect] + #icon.ArrowsUpDown: [OnSelect, Icon] + #icon.Cancel: [OnSelect, Icon] + #icon.ChevronRight: [OnSelect, Icon] + #icon.Reload: [OnSelect, Icon] + #icon.Settings: [OnSelect, Icon] + #label: [OnSelect, Text] + screen: [OnVisible] + #text: [OnSelect] + #typedDataCard: [DataField, Default, Update] diff --git a/main.py b/main.py new file mode 100644 index 0000000..99904e1 --- /dev/null +++ b/main.py @@ -0,0 +1,78 @@ +import os, sys, getopt +import yaml +from powerapps_docstring.powerapp import PowerApp, UnknownSourceException +from powerapps_docstring.documentation import Docstring + +def main(argv): + """main + + Args: + argv ([type]): [description] + """ + + # define possible arguments + try: + opts, args = getopt.getopt(argv,"hs:o:c:",["source=", "output=", "config="]) + except getopt.GetoptError: + print_help() + sys.exit(2) + + # if programm started without arguments, we end with the help message + if len(opts) == 0: + print_help() + sys.exit(1) + + source_path = None + output_path = None + config_file = "config.yaml" + + # check for args provided + for opt, arg in opts: + if opt in ("-h", "--help"): + print_help() + sys.exit(1) + elif opt in ("-s", "--source"): + source_path = arg + elif opt in ("-o", "--output"): + output_path = arg + elif opt in ("-c", "--config"): + config_file = arg + + if source_path == None or output_path == None: + print("Missing path to PowerApps file or documentation output folder") + print("Refere to the help with -h or --help") + sys.exit(1) + + # check source path + try: + pa_src_path = PowerApp(source_path).get_pa_src_path() + print(pa_src_path) + except UnknownSourceException: + print("The source type is not valid") + print("Refere to the help with -h or --help") + sys.exit(1) + + # check output path + if not os.path.isdir(output_path): + print("The output path is not valid") + print("Refere to the help with -h or --help") + sys.exit(1) + + # check config file + if not os.path.isfile(config_file): + print("The config file is not valid.") + print("Refere to the help with -h or --help") + sys.exit(1) + else: + with open(config_file, "r", encoding='utf8') as file: + config = yaml.safe_load(file) + + + docstring = Docstring(pa_src_path, output_path, config) + docstring.create_documentation() + +def print_help(): + print(main.__doc__) + +if __name__ == "__main__": + main(sys.argv[1:]) \ No newline at end of file diff --git a/powerapps_docstring/__init__.py b/powerapps_docstring/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/powerapps_docstring/documentation.py b/powerapps_docstring/documentation.py new file mode 100644 index 0000000..96286d3 --- /dev/null +++ b/powerapps_docstring/documentation.py @@ -0,0 +1,134 @@ +import os +from mdutils.mdutils import MdUtils +from powerapps_docstring.parser import Parser + +# https://mdutils.readthedocs.io/en/latest/examples/Example_Python.html + + +class Docstring(): + def __init__(self, source, output, config) -> None: + self.source_path = source + self.output_path = output + self.parser = Parser(self.source_path) + self.config = config + self.relevant_objects = self.config["RelevantObjects"] + self.relevant_object_keys = [f" As {x}" for x in self.relevant_objects.keys()] + + def _extract_parts_from_propperty(self, propperty) -> tuple: + """Extracts the parts from a propperty. + + Parts can be: + - docstring + - function + + Args: + propperty (str): The string representation of the propperty + + Returns: + tuple: bool for contains docstring, docstring, function + """ + print(propperty[:3]) + if propperty[:3] == "=/*": + start = propperty.find("/*") + len("/*") + end = propperty.find("*/") + docstring = propperty[start:end] + func = propperty[end+2:] + return True, docstring, func.strip() + else: + return False, None, propperty[1:] + + def _extract_screen_content_to_markdown(self, screen_objects) -> None: + self.md_file.new_header(level=2, title=screen_objects[0]) + self.md_file.new_line("---") + + def _recursive(key, value): + # check for object + rel_obj_key = None + + for rel_obj in self.relevant_objects.keys(): + if f" As {rel_obj}" in key: + rel_obj_key = rel_obj + break + + if rel_obj_key != None: + # we found a header + self.md_file.new_header(level=3, title=key) + + for sub_dict_key, sub_dict_item in value.items(): + if sub_dict_key in self.relevant_objects.get(rel_obj_key): + self.md_file.new_header(level=4, title=sub_dict_key) + self.md_file.insert_code(str(sub_dict_item)) + + elif type(sub_dict_item) == dict: + # we found another dict so start over + for new_key, new_value in sub_dict_item.items(): + _recursive(new_key, new_value) + + for key, value in screen_objects[1].items(): + _recursive(key, value) + + + def create_documentation(self, format=None): + if format == None: + self.format = "markdown" + else: + self.format = format + + # instantiate the md file + # TODO: get title from docstring variable + app_name = self.parser.get_app_name() + self.md_file = MdUtils(file_name=self.output_path + + f'/{app_name}-doc', title='Power App Documentation') + + # # APP # # + # get contents from App.fx.yaml + app_screen = self.parser.get_screen_objects("App.fx.yaml") + on_start = app_screen[1]["App As appinfo"].get("OnStart") + + # create heading for app info + self.md_file.new_line("") + self.md_file.new_line("") + self.md_file.new_header(level=1, title=app_name) + # write app info + if on_start != None: + appinfo = self._extract_parts_from_propperty(on_start) + self.md_file.new_paragraph(appinfo[1], ) + self.md_file.new_line("") + self.md_file.new_header(level=2, title="OnStart") + self.md_file.insert_code(appinfo[2]) + + # # Connections # # + # writing connections header + self.md_file.new_header(level=1, title="Connections") + connections = self.parser.get_connections() + if len(connections) > 0: + for connection in connections.items(): + + self.md_file.new_line(connection[1]["connectionRef"]["displayName"] + + f" ({connection[1]['connectionRef']['apiTier']})", "b") # Header + self.md_file.new_line("") + + for parameter in connection[1]["connectionParameters"].items(): + self.md_file.new_line(f"{parameter[0]}: {parameter[1]}") + + self.md_file.new_line("") + self.md_file.new_line("With following datasources:") + self.md_file.new_line("") + self.md_file.new_list([x for x in connection[1]["dataSources"]]) + self.md_file.new_line("") + + # # Screen # # + self.md_file.new_header(level=1, title="Screens") + # TODO: add screenflow visualization + + # loop thru all screens and create markdown + screens_path = self.source_path + "/Src/" + for file in os.listdir(screens_path): + if os.path.isfile(screens_path + file) & file.endswith(".yaml"): + if file != "App.fx.yaml": + screen_objects = self.parser.get_screen_objects(file) + self._extract_screen_content_to_markdown(screen_objects) + + # write toc + file + self.md_file.new_table_of_contents(table_title='Contents', depth=2) + self.md_file.create_md_file() diff --git a/powerapps_docstring/parser.py b/powerapps_docstring/parser.py new file mode 100644 index 0000000..0c852a1 --- /dev/null +++ b/powerapps_docstring/parser.py @@ -0,0 +1,45 @@ +import os +import json +import yaml + + +class Parser(): + def __init__(self, source) -> None: + self.source_path = source + + def get_connections(self) -> dict: + """Read existing connections + """ + connections = {} # create empty dict + + connections_file = self.source_path + "Connections/Connections.json" + if os.path.isfile(connections_file): + with open(connections_file, "r") as file: + connections = json.load(file) + + return connections + + def _get_screen_content(self, screen_name): + screen_path = self.source_path + "src/" + screen_name + screen_content = {} + + with open(screen_path, "r", encoding='utf8') as file: + screen_content = yaml.load(file, Loader=yaml.BaseLoader) + + return screen_content + + def get_screen_objects(self, screen_name) -> tuple: + screen_content = self._get_screen_content(screen_name) + # print(screen_content) + screen_name = list(screen_content.keys())[0].split(" ")[0] + return screen_name, screen_content + + def get_app_name(self): + app_name = "PowerApp_Documentation" + # get name from CanvasManifest.json + if os.path.isfile(self.source_path + "CanvasManifest.json"): + with open(self.source_path + "CanvasManifest.json", "r", encoding="utf-8") as file: + canvas_manifest = json.load(file) + app_name = canvas_manifest["PublishInfo"]["AppName"] + + return app_name diff --git a/powerapps_docstring/powerapp.py b/powerapps_docstring/powerapp.py new file mode 100644 index 0000000..fbe8c50 --- /dev/null +++ b/powerapps_docstring/powerapp.py @@ -0,0 +1,44 @@ +import os + +class UnknownSourceException(Exception): + pass + +class PowerApp(): + def __init__(self, source) -> None: + self.source = source + self.source_type = self._check_source_type() + + def get_pa_src_path(self): + source_path = None + if self.source_type == "directory": + # TODO: check if directory contains powerapp content + + if self.source[-1] != "/": + self.source = self.source + "/" + + source_path = self.source + elif self.source_type == "zip": + # TODO: unzip and unpack msssap to retrieve src folder + pass + elif self.source_type == "mssap": + # TODO: unpack msssap to retrieve src folder + pass + + return source_path + + def _check_source_type(self) -> str: + if os.path.isdir(self.source): + return "directory" + elif os.path.isfile(self.source) and self.source.endswith(".Zip"): + return "zip" + elif os.path.isfile(self.source) and self.source.endswith(".mssap"): + return "mssap" + else: + raise UnknownSourceException + + + def _unpack_zip(self): + pass + + def _unpack_mssap(self): + pass \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e9d0e13 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +mdutils +pyyaml \ No newline at end of file From 6f43737620af1b724f6628f6c67d735b0c532f7c Mon Sep 17 00:00:00 2001 From: Sebastian Muthwill Date: Tue, 12 Oct 2021 20:53:04 +0200 Subject: [PATCH 2/8] commented out some objects --- config.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config.yaml b/config.yaml index 56a6d73..0738c71 100644 --- a/config.yaml +++ b/config.yaml @@ -1,11 +1,11 @@ # Holds all objects and their corresponding propperties that are considered # for documentation (sequence has no influence) RelevantObjects: - #button: [OnSelect, Text] - #barcodeScanner: [OnScan] - #form: [DataSource, Item] - gallery: [Items, OnSelect] - #image: [Image, OnSelect] + button: [OnSelect, Text] + barcodeScanner: [OnScan] + form: [DataSource, Item] + gallery: [OnSelect, Items] + image: [OnSelect, Image] #icon.ArrowsUpDown: [OnSelect, Icon] #icon.Cancel: [OnSelect, Icon] #icon.ChevronRight: [OnSelect, Icon] @@ -13,5 +13,5 @@ RelevantObjects: #icon.Settings: [OnSelect, Icon] #label: [OnSelect, Text] screen: [OnVisible] - #text: [OnSelect] + text: [OnSelect] #typedDataCard: [DataField, Default, Update] From 890f484f80cf23cd4ffec3232b6277f658546560 Mon Sep 17 00:00:00 2001 From: Sebastian Muthwill Date: Tue, 12 Oct 2021 20:54:12 +0200 Subject: [PATCH 3/8] fix: NoneType exception when no docstring available --- powerapps_docstring/documentation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/powerapps_docstring/documentation.py b/powerapps_docstring/documentation.py index 96286d3..edc1df4 100644 --- a/powerapps_docstring/documentation.py +++ b/powerapps_docstring/documentation.py @@ -92,7 +92,8 @@ def create_documentation(self, format=None): # write app info if on_start != None: appinfo = self._extract_parts_from_propperty(on_start) - self.md_file.new_paragraph(appinfo[1], ) + if appinfo[1] != None: + self.md_file.new_paragraph(appinfo[1]) self.md_file.new_line("") self.md_file.new_header(level=2, title="OnStart") self.md_file.insert_code(appinfo[2]) From 9e670916774c7b6053f167a7454e76806b23c2e0 Mon Sep 17 00:00:00 2001 From: Sebastian Muthwill Date: Wed, 13 Oct 2021 10:13:53 +0200 Subject: [PATCH 4/8] feat: add screenflow creation based on navigate() #12 --- powerapps_docstring/documentation.py | 84 +++++++++++++++++++++++++++- 1 file changed, 83 insertions(+), 1 deletion(-) diff --git a/powerapps_docstring/documentation.py b/powerapps_docstring/documentation.py index edc1df4..308dfd3 100644 --- a/powerapps_docstring/documentation.py +++ b/powerapps_docstring/documentation.py @@ -1,4 +1,5 @@ import os +import re from mdutils.mdutils import MdUtils from powerapps_docstring.parser import Parser @@ -14,6 +15,16 @@ def __init__(self, source, output, config) -> None: self.relevant_objects = self.config["RelevantObjects"] self.relevant_object_keys = [f" As {x}" for x in self.relevant_objects.keys()] + def _get_screen_files(self): + screen_files = [] + screens_path = self.source_path + "/Src/" + for file in os.listdir(screens_path): + if os.path.isfile(screens_path + file) & file.endswith(".yaml"): + if file != "App.fx.yaml": + screen_files.append(file) + + return screen_files + def _extract_parts_from_propperty(self, propperty) -> tuple: """Extracts the parts from a propperty. @@ -67,7 +78,74 @@ def _recursive(key, value): for key, value in screen_objects[1].items(): _recursive(key, value) - + def _create_mermaid_screenflow(self): + + # from https://stackoverflow.com/a/20254842 + def get_recursively(search_dict, field): + """ + Takes a dict with nested lists and dicts, + and searches all dicts for a key of the field + provided. + """ + fields_found = [] + + for key, value in search_dict.items(): + + if key == field: + fields_found.append(value) + + elif isinstance(value, dict): + results = get_recursively(value, field) + for result in results: + fields_found.append(result) + + elif isinstance(value, list): + for item in value: + if isinstance(item, dict): + more_results = get_recursively(item, field) + for another_result in more_results: + fields_found.append(another_result) + + return fields_found + + # create header for mermaid graph + screenflow_list = [":::mermaid", "graph LR"] + + screen_files = self._get_screen_files() + screens_path = self.source_path + "/Src/" + for screen in screen_files: + screen_obj = self.parser.get_screen_objects(screen) + from_screen = screen_obj[0] + list_of_onselects = get_recursively(screen_obj[1], "OnSelect") + + for item in list_of_onselects: + if "Navigate(" in item: + + item = item.strip().replace("\n", "").replace("\t", "").replace(" ", "") + navigate_occurences = [m.start() for m in re.finditer('Navigate\(', item)] + + for occurence in navigate_occurences: + #print(occurence) + start = occurence + len("Navigate(") + #print(start) + end = item[start:].find(",") + if end == -1: + end = item[start:].find(")") + end = end + start + to_screen = item[start:end] + print(start, end) + print(to_screen) + if to_screen != None and to_screen != "" and not to_screen.startswith("[@"): + to_screen = to_screen.replace("\n", "").replace("\t", "").replace(" ", "").replace(")", "") + screenflow_list.append(from_screen + " ==> " + to_screen.replace("\n", "").replace("\t", "").replace(" ", "")) + + + #print(screenflow_list) + screenflow_list.append(":::") + return screenflow_list #"\n".join(screenflow_list) + + + def create_documentation(self, format=None): if format == None: self.format = "markdown" @@ -122,6 +200,10 @@ def create_documentation(self, format=None): self.md_file.new_header(level=1, title="Screens") # TODO: add screenflow visualization + #self.md_file.new_paragraph(self._create_mermaid_screenflow()) + for scr_flow in self._create_mermaid_screenflow(): + self.md_file.new_line(scr_flow) + # loop thru all screens and create markdown screens_path = self.source_path + "/Src/" for file in os.listdir(screens_path): From e83c1ce38ee6064fa7d1c722333e4e236387cd91 Mon Sep 17 00:00:00 2001 From: Sebastian Muthwill Date: Wed, 13 Oct 2021 10:42:09 +0200 Subject: [PATCH 5/8] fix: removes print to console --- powerapps_docstring/documentation.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/powerapps_docstring/documentation.py b/powerapps_docstring/documentation.py index 308dfd3..475760d 100644 --- a/powerapps_docstring/documentation.py +++ b/powerapps_docstring/documentation.py @@ -38,7 +38,6 @@ def _extract_parts_from_propperty(self, propperty) -> tuple: Returns: tuple: bool for contains docstring, docstring, function """ - print(propperty[:3]) if propperty[:3] == "=/*": start = propperty.find("/*") + len("/*") end = propperty.find("*/") @@ -133,8 +132,6 @@ def get_recursively(search_dict, field): end = item[start:].find(")") end = end + start to_screen = item[start:end] - print(start, end) - print(to_screen) if to_screen != None and to_screen != "" and not to_screen.startswith("[@"): to_screen = to_screen.replace("\n", "").replace("\t", "").replace(" ", "").replace(")", "") screenflow_list.append(from_screen + " ==> " + to_screen.replace("\n", "").replace("\t", "").replace(" ", "")) From e91c839371625d605ed476e6e6447d12ae479a3a Mon Sep 17 00:00:00 2001 From: Sebastian Muthwill Date: Wed, 13 Oct 2021 14:40:16 +0200 Subject: [PATCH 6/8] add example src files and documentation result file --- example/Meeting Capture Demo-doc.md | 1223 ++ .../meetingcapturedemo/Assets/Basel_Add.json | 12 + .../Assets/Basel_ArrowLeft.json | 12 + .../Assets/Basel_ArrowRight.json | 12 + .../Assets/Basel_Attachment.json | 12 + .../Assets/Basel_Cancel.json | 12 + .../Assets/Basel_Check.json | 12 + .../Assets/Basel_ChevronRight.json | 12 + .../meetingcapturedemo/Assets/Basel_Mail.json | 12 + .../meetingcapturedemo/Assets/Basel_Note.json | 12 + .../Assets/Basel_Person.json | 12 + .../meetingcapturedemo/Assets/Basel_Save.json | 12 + .../Assets/Basel_Search.json | 12 + .../Assets/Basel_Trash.json | 12 + .../Assets/Basel_Warning.json | 12 + .../Assets/Basel_eventsignup_calendar.json | 12 + .../Assets/Images/MeetingCaptureBkg.png | Bin 0 -> 114720 bytes .../Assets/Images/MeetingCaptureExportBkg.png | Bin 0 -> 195704 bytes .../Assets/Images/attachments-camera.svg | 17 + .../Assets/Images/attachments-sketch.svg | 17 + .../Assets/Images/attendees.svg | 14 + .../Assets/Images/calendar.png | Bin 0 -> 1281 bytes .../Assets/Images/default-profile.png | Bin 0 -> 2869 bytes .../Assets/Images/export.svg | 14 + .../Images/meeting-capture-logo-full%403x.png | Bin 0 -> 12033 bytes .../Assets/Images/nav-camera.svg | 14 + .../Assets/Images/nav-logo.svg | 14 + .../Assets/Images/nav-notes.svg | 14 + .../Assets/Images/nav-sketch.svg | 14 + .../Assets/Images/notes.svg | 14 + .../Assets/Images/one-note.png | Bin 0 -> 1077 bytes .../Assets/Images/outlook.png | Bin 0 -> 559 bytes .../Assets/Images/planner.png | Bin 0 -> 15422 bytes .../Assets/Images/tasks.svg | 14 + .../Assets/Images/unable-to-attend.png | Bin 0 -> 634 bytes .../Assets/SampleImage.json | 12 + .../src/meetingcapturedemo/Assets/logo.jpg | Bin 0 -> 2177 bytes .../meetingcapturedemo/CanvasManifest.json | 107 + .../ComponentReferences.json | 1 + .../Connections/Connections.json | 80 + .../meetingcapturedemo/ControlTemplates.json | 805 + .../DataSources/AllFutureEvents.json | 9 + .../DataSources/CalendarLocalizedLabel.json | 9 + .../DataSources/CustomGallerySample.json | 17 + .../DataSources/DropDownSample.json | 15 + .../DataSources/EmailAttachments.json | 9 + .../DataSources/EmailRecipients.json | 9 + .../DataSources/FollowUpMeetingAttendees.json | 9 + .../DataSources/HoursList.json | 9 + .../DataSources/Indexes.json | 9 + .../DataSources/LegendSample.json | 15 + .../DataSources/LineChartSample.json | 18 + .../DataSources/ListboxSample.json | 15 + .../DataSources/MeetingAttendeeEmails.json | 9 + .../DataSources/MeetingAttendees.json | 9 + .../DataSources/MeetingAttendeesTemp.json | 9 + .../DataSources/MeetingDurations.json | 9 + .../DataSources/MeetingTimes.json | 9 + .../DataSources/MeetingsOnly.json | 9 + .../DataSources/Office365Outlook.json | 8 + .../DataSources/Office365Users.json | 8 + .../DataSources/OneNote%28Business%29.json | 8 + .../DataSources/OneNoteBooks.json | 9 + .../DataSources/OneNoteSections.json | 9 + .../DataSources/Photos.json | 9 + .../DataSources/Planner.json | 8 + .../DataSources/PlannerBuckets.json | 9 + .../DataSources/PlannerPlans.json | 9 + .../DataSources/Sketches.json | 9 + .../meetingcapturedemo/DataSources/Tasks.json | 9 + .../DataSources/TemplateData.json | 9 + .../DataSources/Templates.json | 9 + .../Entropy/AppCheckerResult.sarif | 4478 ++++++ .../meetingcapturedemo/Entropy/Entropy.json | 1112 ++ .../meetingcapturedemo/Entropy/checksum.json | 96 + .../src/meetingcapturedemo/Src/App.fx.yaml | 40 + .../Src/AttachmentsScreen.fx.yaml | 462 + .../Src/CameraScreen.fx.yaml | 258 + .../Src/CollectionsAndVariables.fx.yaml | 133 + .../Src/ConfirmScreen.fx.yaml | 222 + .../Src/EditorState/App.editorstate.json | 98 + .../AttachmentsScreen.editorstate.json | 5668 +++++++ .../EditorState/CameraScreen.editorstate.json | 2963 ++++ .../CollectionsAndVariables.editorstate.json | 1072 ++ .../ConfirmScreen.editorstate.json | 2236 +++ .../EditorState/EmailScreen.editorstate.json | 4403 ++++++ .../ExportPopUpsScreen.editorstate.json | 4823 ++++++ .../EditorState/ExportScreen.editorstate.json | 12670 ++++++++++++++++ .../FollowUpScreen.editorstate.json | 6213 ++++++++ .../FollowUpTimesScreen.editorstate.json | 7178 +++++++++ .../HomePopUpsScreen.editorstate.json | 8450 +++++++++++ .../EditorState/HomeScreen.editorstate.json | 10672 +++++++++++++ .../EditorState/SketchScreen.editorstate.json | 2485 +++ .../WelcomeScreen.editorstate.json | 3048 ++++ .../Src/EmailScreen.fx.yaml | 330 + .../Src/ExportPopUpsScreen.fx.yaml | 357 + .../Src/ExportScreen.fx.yaml | 999 ++ .../Src/FollowUpScreen.fx.yaml | 466 + .../Src/FollowUpTimesScreen.fx.yaml | 553 + .../Src/HomePopUpsScreen.fx.yaml | 670 + .../meetingcapturedemo/Src/HomeScreen.fx.yaml | 860 ++ .../Src/SketchScreen.fx.yaml | 212 + .../src/meetingcapturedemo/Src/Themes.json | 2865 ++++ .../Src/WelcomeScreen.fx.yaml | 269 + .../pkgs/Wadl/Office365Outlook.xml | 4594 ++++++ .../pkgs/Wadl/Office365Users.xml | 508 + .../pkgs/Wadl/OneNote%28Business%29.xml | 371 + .../meetingcapturedemo/pkgs/Wadl/Planner.xml | 482 + .../meetingcapturedemo/pkgs/button_2.1.0.xml | 229 + .../meetingcapturedemo/pkgs/camera_2.4.0.xml | 144 + .../pkgs/checkbox_2.1.0.xml | 282 + .../meetingcapturedemo/pkgs/circle_2.2.0.xml | 148 + .../pkgs/datepicker_2.5.0.xml | 362 + .../pkgs/dropdown_2.3.0.xml | 425 + .../pkgs/gallery_2.12.0.xml | 728 + .../pkgs/htmlViewer_2.1.0.xml | 143 + .../meetingcapturedemo/pkgs/icon_2.4.0.xml | 1068 ++ .../meetingcapturedemo/pkgs/image_2.2.0.xml | 309 + .../pkgs/inkControl_2.2.0.xml | 455 + .../meetingcapturedemo/pkgs/label_2.4.0.xml | 335 + .../pkgs/rectangle_2.2.0.xml | 144 + .../meetingcapturedemo/pkgs/text_2.3.1.xml | 366 + .../meetingcapturedemo/pkgs/timer_2.1.0.xml | 283 + 123 files changed, 100601 insertions(+) create mode 100644 example/Meeting Capture Demo-doc.md create mode 100644 example/src/meetingcapturedemo/Assets/Basel_Add.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_ArrowLeft.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_ArrowRight.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_Attachment.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_Cancel.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_Check.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_ChevronRight.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_Mail.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_Note.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_Person.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_Save.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_Search.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_Trash.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_Warning.json create mode 100644 example/src/meetingcapturedemo/Assets/Basel_eventsignup_calendar.json create mode 100644 example/src/meetingcapturedemo/Assets/Images/MeetingCaptureBkg.png create mode 100644 example/src/meetingcapturedemo/Assets/Images/MeetingCaptureExportBkg.png create mode 100644 example/src/meetingcapturedemo/Assets/Images/attachments-camera.svg create mode 100644 example/src/meetingcapturedemo/Assets/Images/attachments-sketch.svg create mode 100644 example/src/meetingcapturedemo/Assets/Images/attendees.svg create mode 100644 example/src/meetingcapturedemo/Assets/Images/calendar.png create mode 100644 example/src/meetingcapturedemo/Assets/Images/default-profile.png create mode 100644 example/src/meetingcapturedemo/Assets/Images/export.svg create mode 100644 example/src/meetingcapturedemo/Assets/Images/meeting-capture-logo-full%403x.png create mode 100644 example/src/meetingcapturedemo/Assets/Images/nav-camera.svg create mode 100644 example/src/meetingcapturedemo/Assets/Images/nav-logo.svg create mode 100644 example/src/meetingcapturedemo/Assets/Images/nav-notes.svg create mode 100644 example/src/meetingcapturedemo/Assets/Images/nav-sketch.svg create mode 100644 example/src/meetingcapturedemo/Assets/Images/notes.svg create mode 100644 example/src/meetingcapturedemo/Assets/Images/one-note.png create mode 100644 example/src/meetingcapturedemo/Assets/Images/outlook.png create mode 100644 example/src/meetingcapturedemo/Assets/Images/planner.png create mode 100644 example/src/meetingcapturedemo/Assets/Images/tasks.svg create mode 100644 example/src/meetingcapturedemo/Assets/Images/unable-to-attend.png create mode 100644 example/src/meetingcapturedemo/Assets/SampleImage.json create mode 100644 example/src/meetingcapturedemo/Assets/logo.jpg create mode 100644 example/src/meetingcapturedemo/CanvasManifest.json create mode 100644 example/src/meetingcapturedemo/ComponentReferences.json create mode 100644 example/src/meetingcapturedemo/Connections/Connections.json create mode 100644 example/src/meetingcapturedemo/ControlTemplates.json create mode 100644 example/src/meetingcapturedemo/DataSources/AllFutureEvents.json create mode 100644 example/src/meetingcapturedemo/DataSources/CalendarLocalizedLabel.json create mode 100644 example/src/meetingcapturedemo/DataSources/CustomGallerySample.json create mode 100644 example/src/meetingcapturedemo/DataSources/DropDownSample.json create mode 100644 example/src/meetingcapturedemo/DataSources/EmailAttachments.json create mode 100644 example/src/meetingcapturedemo/DataSources/EmailRecipients.json create mode 100644 example/src/meetingcapturedemo/DataSources/FollowUpMeetingAttendees.json create mode 100644 example/src/meetingcapturedemo/DataSources/HoursList.json create mode 100644 example/src/meetingcapturedemo/DataSources/Indexes.json create mode 100644 example/src/meetingcapturedemo/DataSources/LegendSample.json create mode 100644 example/src/meetingcapturedemo/DataSources/LineChartSample.json create mode 100644 example/src/meetingcapturedemo/DataSources/ListboxSample.json create mode 100644 example/src/meetingcapturedemo/DataSources/MeetingAttendeeEmails.json create mode 100644 example/src/meetingcapturedemo/DataSources/MeetingAttendees.json create mode 100644 example/src/meetingcapturedemo/DataSources/MeetingAttendeesTemp.json create mode 100644 example/src/meetingcapturedemo/DataSources/MeetingDurations.json create mode 100644 example/src/meetingcapturedemo/DataSources/MeetingTimes.json create mode 100644 example/src/meetingcapturedemo/DataSources/MeetingsOnly.json create mode 100644 example/src/meetingcapturedemo/DataSources/Office365Outlook.json create mode 100644 example/src/meetingcapturedemo/DataSources/Office365Users.json create mode 100644 example/src/meetingcapturedemo/DataSources/OneNote%28Business%29.json create mode 100644 example/src/meetingcapturedemo/DataSources/OneNoteBooks.json create mode 100644 example/src/meetingcapturedemo/DataSources/OneNoteSections.json create mode 100644 example/src/meetingcapturedemo/DataSources/Photos.json create mode 100644 example/src/meetingcapturedemo/DataSources/Planner.json create mode 100644 example/src/meetingcapturedemo/DataSources/PlannerBuckets.json create mode 100644 example/src/meetingcapturedemo/DataSources/PlannerPlans.json create mode 100644 example/src/meetingcapturedemo/DataSources/Sketches.json create mode 100644 example/src/meetingcapturedemo/DataSources/Tasks.json create mode 100644 example/src/meetingcapturedemo/DataSources/TemplateData.json create mode 100644 example/src/meetingcapturedemo/DataSources/Templates.json create mode 100644 example/src/meetingcapturedemo/Entropy/AppCheckerResult.sarif create mode 100644 example/src/meetingcapturedemo/Entropy/Entropy.json create mode 100644 example/src/meetingcapturedemo/Entropy/checksum.json create mode 100644 example/src/meetingcapturedemo/Src/App.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/AttachmentsScreen.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/CameraScreen.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/CollectionsAndVariables.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/ConfirmScreen.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/EditorState/App.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/AttachmentsScreen.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/CameraScreen.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/CollectionsAndVariables.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/ConfirmScreen.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/EmailScreen.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/ExportPopUpsScreen.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/ExportScreen.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/FollowUpScreen.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/FollowUpTimesScreen.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/HomePopUpsScreen.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/HomeScreen.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/SketchScreen.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EditorState/WelcomeScreen.editorstate.json create mode 100644 example/src/meetingcapturedemo/Src/EmailScreen.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/ExportPopUpsScreen.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/ExportScreen.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/FollowUpScreen.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/FollowUpTimesScreen.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/HomePopUpsScreen.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/HomeScreen.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/SketchScreen.fx.yaml create mode 100644 example/src/meetingcapturedemo/Src/Themes.json create mode 100644 example/src/meetingcapturedemo/Src/WelcomeScreen.fx.yaml create mode 100644 example/src/meetingcapturedemo/pkgs/Wadl/Office365Outlook.xml create mode 100644 example/src/meetingcapturedemo/pkgs/Wadl/Office365Users.xml create mode 100644 example/src/meetingcapturedemo/pkgs/Wadl/OneNote%28Business%29.xml create mode 100644 example/src/meetingcapturedemo/pkgs/Wadl/Planner.xml create mode 100644 example/src/meetingcapturedemo/pkgs/button_2.1.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/camera_2.4.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/checkbox_2.1.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/circle_2.2.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/datepicker_2.5.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/dropdown_2.3.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/gallery_2.12.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/htmlViewer_2.1.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/icon_2.4.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/image_2.2.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/inkControl_2.2.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/label_2.4.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/rectangle_2.2.0.xml create mode 100644 example/src/meetingcapturedemo/pkgs/text_2.3.1.xml create mode 100644 example/src/meetingcapturedemo/pkgs/timer_2.1.0.xml diff --git a/example/Meeting Capture Demo-doc.md b/example/Meeting Capture Demo-doc.md new file mode 100644 index 0000000..9692e62 --- /dev/null +++ b/example/Meeting Capture Demo-doc.md @@ -0,0 +1,1223 @@ + +Power App Documentation +======================= + +Contents +======== + +* [Meeting Capture Demo](#meeting-capture-demo) + * [OnStart](#onstart) +* [Connections](#connections) +* [Screens](#screens) + * [AttachmentsScreen](#attachmentsscreen) + * [CameraScreen](#camerascreen) + * [CollectionsAndVariables](#collectionsandvariables) + * [ConfirmScreen](#confirmscreen) + * [EmailScreen](#emailscreen) + * [ExportPopUpsScreen](#exportpopupsscreen) + * [ExportScreen](#exportscreen) + * [FollowUpScreen](#followupscreen) + * [FollowUpTimesScreen](#followuptimesscreen) + * [HomePopUpsScreen](#homepopupsscreen) + * [HomeScreen](#homescreen) + * [SketchScreen](#sketchscreen) + * [WelcomeScreen](#welcomescreen) + + + +# Meeting Capture Demo + + + An all-in-one meeting capture tool. +![](src\meetingcapturedemo\Assets\Images\meeting-capture-logo-full%403x.png) + +This +tool helps you to keep everythin in one place during your meetings. + +Key features are: +- View meeting details +- capture +notes and pictures of whiteboards +- assign tasks +- send meeeting notes to all attendees in one click + + + +## OnStart + + +``` +Collect(CalendarLocalizedLabel, {Value:"Calendar"},{Value:"Kalender"}, +{Value:"Təqvim"},{Value:"Kalendar"},{Value:"Calendari"},{Value:"Kalendář"},{Value:"Calendr"},{Value:"Calendario"}, +{Value:"Egutegia"},{Value:"Kalendaryo"},{Value:"Calendrier"},{Value:"Féilire"},{Value:"Am mìosachan"},{Value:"Kalanda"}, +{Value:"Dagbók"},{Value:"Kalenda"},{Value:"Kalendārs"},{Value:"Kalenner"},{Value:"Kalendorius"},{Value:"Naptár"}, +{Value:"Kalendarju"},{Value:"Agenda"},{Value:"Taqvim"},{Value:"Kalendarz"},{Value:"Calendário"},{Value:"Intiwatana"}, +{Value:"Kalendari"},{Value:"Kalendár"},{Value:"Koledar"},{Value:"Kalenteri"},{Value:"Maramataka"},{Value:"Lịch"}, +{Value:"Takvim"},{Value:"Senenama"},{Value:"Ημερολόγιο"},{Value:"კალენდარი"},{Value:"לוח שנה"},{Value:"کیلنڈر"}, +{Value:"التقويم"},{Value:"कैलेंडर"},{Value:"दिनदर्शिका"},{Value:"ক্যালেন্ডার"},{Value:"કૅલેન્ડર"},{Value:"予定表"}, +{Value:"行事曆"},{Value:"日历"},{Value:"క్యాలెండర్"}); + +Concurrent(Set(MyCalendarID,LookUp(Office365Outlook.CalendarGetTables().value,DisplayName=LookUp(CalendarLocalizedLabel,Value=DisplayName).Value).Name);ClearCollect(AllFutureEvents,Office365Outlook.GetEventsCalendarView(MyCalendarID,Text(Today(),UTC),Text(DateAdd(Today(),2,Days),UTC)).Values),Set(MyUserProfile,Office365Users.MyProfile().Id), + /*used to determine if meeting attendees are in app user's org*/ +Set(MyDomain,Last(Split(User().Email,"@")).Result), + /*used to determine countdown to end of selected meeting*/ +Set(HomeTimerStart,Now())); +/*Meetings are defined to be calendar events less than 6 hours in length*/ +ClearCollect(MeetingsOnly,Filter(AddColumns(AllFutureEvents,"isCurrent",DateDiff(Start,Now(),Seconds)>0&&DateDiff(Now(),End,Seconds)>0),DateDiff(Start,End,Hours)<6));Set(NumberOfCurrentMeetings,CountRows(Filter(MeetingsOnly,isCurrent))); +/*If a single meeting is happening now, autoselect it*/ +If(NumberOfCurrentMeetings=1,Set(AutoSelectMeeting, true );Set(SelectedMeeting,LookUp(MeetingsOnly,isCurrent))) +``` +# Connections + +**OneNote (Business) (Standard)** + +sku: Enterprise + +With following datasources: + +- OneNote(Business) + + +**Planner (Standard)** + +sku: Enterprise + +With following datasources: + +- Planner + + +**Office 365 Users (Standard)** + +sku: Enterprise + +With following datasources: + +- Office365Users + + +**Office 365 Outlook** + +sku: Enterprise + +With following datasources: + +- Office365Outlook + + +# Screens + +:::mermaid +graph LR +CameraScreen ==> HomeScreen +CameraScreen ==> SketchScreen +ConfirmScreen ==> HomeScreen +ConfirmScreen ==> FollowUpScreen +ConfirmScreen ==> WelcomeScreen +ConfirmScreen ==> WelcomeScreen +EmailScreen ==> ConfirmScreen +ExportPopUpsScreen ==> ExportScreen +ExportPopUpsScreen ==> ExportScreen +ExportPopUpsScreen ==> ExportScreen +ExportPopUpsScreen ==> ConfirmScreen +ExportScreen ==> HomeScreen +ExportScreen ==> ExportPopUpsScreen +ExportScreen ==> ExportPopUpsScreen +ExportScreen ==> ExportPopUpsScreen +FollowUpScreen ==> FollowUpTimesScreen +FollowUpTimesScreen ==> ConfirmScreen +HomePopUpsScreen ==> HomeScreen +HomePopUpsScreen ==> HomeScreen +HomePopUpsScreen ==> HomeScreen +HomeScreen ==> SketchScreen +HomeScreen ==> CameraScreen +HomeScreen ==> EmailScreen +HomeScreen ==> EmailScreen +HomeScreen ==> AttachmentsScreen +HomeScreen ==> ExportScreen +HomeScreen ==> HomePopUpsScreen +SketchScreen ==> HomeScreen +SketchScreen ==> CameraScreen +WelcomeScreen ==> HomePopUpsScreen +::: +## AttachmentsScreen + +--- +### AttachmentsScreen As screen + + +See attachments created during meeting +### AppLogo5 As image + +#### Image + + +``` +='nav-logo' +``` +### PhotosIcon As image + +#### Image + + +``` +='attachments-camera' +``` +### PhotosGallery As gallery.galleryHorizontal + +#### Items + + +``` +=Photos +``` +#### OnSelect + + +``` +=Set(ShowOverlay, true); +Set(SelectedImage, ThisItem) +``` +### SketchesIcon As image + +#### Image + + +``` +='attachments-sketch' +``` +### SketchesGallery As gallery.galleryHorizontal + +#### Items + + +``` +=Sketches +``` +#### OnSelect + + +``` +=Set(ShowOverlay, true); +Set(SelectedImage, ThisItem) +``` +### AttachmentToDelete As image + +#### Image + + +``` +=SelectedImage.Image +``` +### CancelDeleteAttach As button + +#### OnSelect + + +``` +=Set(AttachmentDeleteConfirm, false); +Set(ShowOverlay, false) +``` +#### Text + + +``` +=If(TaskSelected, "Delete", "Cancel") +``` +### ConfirmDeleteAttach As button + +#### OnSelect + + +``` +=Set(ShowOverlay, false); +Set(AttachmentDeleteConfirm, false); +RemoveIf(Sketches, SelectedImage.Name = Name); +RemoveIf(Photos, SelectedImage.Name = Name) + +``` +#### Text + + +``` +="Yes, delete" +``` +## CameraScreen + +--- +### CameraScreen As screen + + +Take picture during a meeting +#### OnVisible + + +``` +Set(ShowImageSaved, false); +Set(ShowTakenImage, false) +``` +### AppLogo3 As image + +#### Image + + +``` +='nav-logo' +``` +### NavHome3 As image + +#### Image + + +``` +='nav-notes' +``` +#### OnSelect + + +``` +=Navigate(HomeScreen, None) +``` +### NavSketch3 As image + +#### Image + + +``` +='nav-sketch' +``` +#### OnSelect + + +``` +=Navigate(SketchScreen, None) +``` +### NavPhotos3 As image + +#### Image + + +``` +='nav-camera' +``` +## CollectionsAndVariables + +--- +### CollectionsAndVariables As screen + + +This screen lists all collections and variables used inside the app + +## ConfirmScreen + +--- +### ConfirmScreen As screen + + +Export confirmation screen +Once the export is completed another meeting can be scheduled with the attendees. + +#### OnVisible + + +``` +If(ExportConfirmed, + Set(Loading, true); + + /*Collects the dynamic data which will be substituted into the Email/OneNote templates and associates it to the {placeholder} values in the templates + At {Field: "{1}" at changed to because OneNote stopped displaying the export content with the inline style content present + */ + If(CheckEmail.Value || CheckOneNote.Value, + ClearCollect(TemplateData, {Field:"{MeetingName}", Data:SelectedMeeting.Subject}, {Field: "{MeetingStartDate}", Data: Text(SelectedMeeting.Start, "[$-en-US]mmm. dd, yyyy")}, + {Field: "{MeetingStartTime}", Data: Lower(Text(SelectedMeeting.Start, "[$-en-US]hh:mm am/pm"))}, {Field: "{MeetingEndTime}", Data: Lower(Text(SelectedMeeting.End, "[$-en-US]hh:mm am/pm"))}, + {Field: "{MeetingMinutes}", Data: Text(SelectedMeetingDuration/60)}, {Field: "{MeetingAttendeeNum}", Data: Text(CountRows(MeetingAttendees))}, + {Field: "{1}", + Data: Concat( + GroupBy( + ForAll(MeetingAttendees, + Collect(Indexes, {Index:Last(Indexes).Index + 1}); + {Page:RoundDown(Last(Indexes).Index / 3,0), + Id:Id, + DisplayName:DisplayName, + JobTitle:JobTitle} + ), + "Page","Attendees"),"" & Concat(Attendees,"" & DisplayName & "") & If(CountRows(Attendees)=2,"",CountRows(Attendees)=1, + "") & "" & Concat(Attendees,"" & JobTitle & "") & If(CountRows(Attendees)=2, + "",CountRows(Attendees)=1,"") & "")}, + {Field: "{MeetingDetails}", Data:MeetingBody.HtmlText}, {Field: "{MeetingNotes}", Data: Substitute(NotesInput.Text, Char(10), "
")}, + {Field: "{2}", Data: Concat(Tasks,"
" & Name & "" & If(IsBlank(DueDate),"","Due " & If(IsToday(DueDate),"Today",Text(DueDate,"[$-en-US]mmm d"))) & "
" & AssignToUser.DisplayName & "
")}) + ); + + /*Creates planner tasks based on the Tasks collection*/ + If(CheckPlanner.Value,ForAll(Tasks,Planner.CreateTask(SelectedPlan.'data-ADB4D7A662F548B49FAC2B986E348A1Bid',Name,{bucketId:SelectedBucket.'data-ADB4D7A662F548B49FAC2B986E348A1Bid',dueDateTime:AssnTaskDueDate_1,assignments:AssignToUser.Id}))); + /*combines photos and sketches into a single email attachments collection*/ + If(CheckEmail.Value, + ForAll(Photos, Collect(EmailAttachments, {ContentBytes: Image, Image: Image, Name: Name})); + ForAll(Sketches, Collect(EmailAttachments, {ContentBytes: Image, Image: Image, Name: Name})); + /*replaces {placeholder} values for Email template with dynamic data collected from user's input as they progress through app*/ + ForAll(TemplateData, Patch(Templates, LookUp(Templates, Template="Email"), {Value: Substitute(LookUp(Templates, Template="Email").Value, Field, Data)})); + Office365Outlook.SendEmail(Concat(EmailRecipients, UserPrincipalName & ";"), SelectedMeeting.Subject, LookUp(Templates, Template="Email").Value, {Attachments: EmailAttachments, Importance: "Normal", IsHtml: true} + ) + ); + If(CheckOneNote.Value, + /*replaces {placeholder} values for OneNote template with dynamic data collected from user's input as they progress through app*/ + ForAll(TemplateData, Patch(Templates, LookUp(Templates, Template="OneNote"), {Value: Substitute(LookUp(Templates, Template="OneNote").Value, Field, Data)})); + 'OneNote(Business)'.CreatePageInSection(SelectedNoteBook.'data-ADB4D7A662F548B49FAC2B986E348A1BKey', SelectedSection.'data-ADB4D7A662F548B49FAC2B986E348A1BpagesUrl', LookUp(Templates, Template="OneNote").Value) + ); + + Set(Loading, false) +) +``` +## EmailScreen + +--- +### EmailScreen As screen + + +Email meeting notes to attendees +### AppLogo4 As image + +#### Image + + +``` +='nav-logo' +``` +### SendEmail As button + +#### OnSelect + + +``` +=Office365Outlook.SendEmail(Concat(EmailRecipients, UserPrincipalName & ";"), EmailSubject.Text, EmailMessage.Text, {Importance: "Normal"}); +/*Sets text to display email confirmation info*/ +Set(EmailConfirmed, true); +Navigate(ConfirmScreen, None) +``` +#### Text + + +``` +="Send" +``` +### GalleryBkg As button + +#### Text + + +``` +="" +``` +### EmailRecipientGallery As gallery.galleryHorizontal + +#### Items + + +``` +=EmailRecipients +``` +### EmailSubject As text + +### EmailMessage As text + +## ExportPopUpsScreen + +--- +### ExportPopUpsScreen As screen + +### ExportCancel_1 As button + +#### OnSelect + + +``` +=Set(ShowOneNote, false); +Set(ShowPlanner, false); +Set(ShowOverlay, false); +Navigate(ExportScreen, None) +``` +#### Text + + +``` +=If(TaskSelected, "Delete", "Cancel") +``` +### ExportConfirm_1 As button + +#### OnSelect + + +``` +=If(ShowOneNote, + Set(ShowOneNote, false); + Set(SelectedNoteBook, OneNoteBookSelect_1.SelectedText); + Set(SelectedSection, SectionsSelect_1.SelectedText); + Navigate(ExportScreen, None), + ShowPlanner, + Set(ShowPlanner, false); + Set(SelectedPlan, PlannerPlanSelect_1.SelectedText); + Set(SelectedBucket, PlannerBucketSelect_1.SelectedText); + Navigate(ExportScreen, None), + ShowOverlay, + Set(ShowOverlay, false); + Set(ExportConfirmed, true); + Navigate(ConfirmScreen, None) +) + +``` +#### Text + + +``` +=If(ShowOverlay, "Yes, continue", "OK") +``` +## ExportScreen + +--- +### ExportScreen As screen + + +Export creation screen +Select where to export to. +Possible exports: +- OneNote +- Office Planner +- Email + +#### OnVisible + + +``` +If(IsEmpty(EmailRecipients), + ClearCollect(EmailRecipients, AttendeeGallery1.AllItems) +); +If(IsEmpty(OneNoteBooks), ClearCollect(OneNoteBooks,'OneNote(Business)'.GetNotebooks())); +If(!IsEmpty(OneNoteBooks),ClearCollect(OneNoteSections,'OneNote(Business)'.GetSectionsInNotebook(OneNoteBookSelect_1.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BKey').value)); +If(IsEmpty(PlannerPlans), ClearCollect(PlannerPlans, Planner.ListMyPlans().value)); +If(!IsEmpty(PlannerPlans),ClearCollect(PlannerBuckets,Planner.ListBuckets(PlannerPlanSelect_1.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1Bid').value)) +``` +### AppLogo7 As image + +#### Image + + +``` +='nav-logo' +``` +### ExportButton As button + +#### OnSelect + + +``` +=Set(ShowOverlay, true); +Navigate(ExportPopUpsScreen, None) +``` +#### Text + + +``` +="Export" +``` +### ExportIcon As image + +#### Image + + +``` +=export +``` +#### OnSelect + + +``` +=Select(ExportButton) +``` +### OneNoteIcon As image + +#### Image + + +``` +='one-note' +``` +### ShowOneNoteSelection As button + +#### OnSelect + + +``` +=Set(ShowOneNote, true); +Navigate(ExportPopUpsScreen, None); +/*retrieves OneNote sections of (pre)selected OneNote book (if user hasn't selected one yet)*/ +ClearCollect(OneNoteSections, 'OneNote(Business)'.GetSectionsInNotebook(OneNoteBookSelect_1.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BKey').value) +``` +#### Text + + +``` +=If(ExportToOneNote.Height > 0, "Select new location", "Select Location") +``` +### EmailIcon As image + +#### Image + + +``` +=outlook +``` +### RecipientGalleryBkg As button + +#### Text + + +``` +="" +``` +### EmailRecipientsGallery As gallery.galleryVertical + +#### Items + + +``` +=EmailRecipients +``` +### AssnTaskSearchUser_1 As text + +### UserSearchResults As gallery.galleryVertical + +#### Items + + +``` +=If(!IsBlank(AssnTaskSearchUser_1.Text), Office365Users.SearchUser({searchTerm:Trim(AssnTaskSearchUser_1.Text), top:15})) +``` +#### OnSelect + + +``` +=If(Not(ThisItem.Id in EmailRecipients.Id), Collect(EmailRecipients, ThisItem)) +``` +### PlannerIcon As image + +#### Image + + +``` +=planner +``` +### ShowPlannerSelection As button + +#### OnSelect + + +``` +=Set(ShowPlanner, true); +Navigate(ExportPopUpsScreen, None) +``` +#### Text + + +``` +=If(PlannerExportTo.Height > 0, "Select new location", "Select Location") +``` +## FollowUpScreen + +--- +### FollowUpScreen As screen + + +Schedule follow up for this meeting +#### OnVisible + + +``` +Set(ExportConfirmed, false); +ClearCollect(FollowUpMeetingAttendees, MeetingAttendees) +``` +### AppIcon7 As image + +#### Image + + +``` +='nav-logo' +``` +### FindAvailableTimesButton As button + +#### OnSelect + + +``` +=Navigate(FollowUpTimesScreen, None) +``` +#### Text + + +``` +="Find Available Times" +``` +### FollowUpGallBkg As button + +#### Text + + +``` +="" +``` +### FollowUpAttendeesGall As gallery.galleryVertical + +#### Items + + +``` +=FollowUpMeetingAttendees +``` +### FollowUpSearchText As text + +### FollowUpSearchUserResults As gallery.galleryVertical + +#### Items + + +``` +=If(!IsBlank(FollowUpSearchText.Text), Office365Users.SearchUser({searchTerm:Trim(FollowUpSearchText.Text), top:15})) +``` +#### OnSelect + + +``` +=If(Not(ThisItem.Id in FollowUpMeetingAttendees.Id), Collect(FollowUpMeetingAttendees, ThisItem)) +``` +### FollowUpSubject As text + +### FollowUpMessage As text + +## FollowUpTimesScreen + +--- +### FollowUpTimesScreen As screen + + +Collections used in galleries and drop downs on this screen +- MeetingDurations +- HoursList + +#### OnVisible + + +``` +ClearCollect(MeetingDurations, +{Name:"30 minutes", Minutes:30},{Name:"1 hour", Minutes:60},{Name:"90 minutes", Minutes:90},{Name:"2 hours", Minutes:120}, +{Name:"2.5 hours", Minutes:150},{Name:"3 hours", Minutes:180},{Name:"3.5 hours", Minutes:210},{Name:"4 hours", Minutes:240}); + +ClearCollect(HoursList, {Name:"12:00 am",Minutes:0}, {Name:"12:30 am",Minutes:30}, {Name:"01:00 am",Minutes:60}, {Name:"01:30 am",Minutes:90}, {Name:"02:00 am",Minutes:120}, {Name:"02:30 am",Minutes:150}, {Name:"03:00 am",Minutes:180}, {Name:"03:30 am",Minutes:210}, {Name:"04:00 am",Minutes:240, Short: "4 am"}, {Name:"04:30 am",Minutes:270}, {Name:"05:00 am",Minutes:300}, {Name:"05:30 am",Minutes:330}, {Name:"06:00 am",Minutes:360}, {Name:"06:30 am",Minutes:390}, {Name:"07:00 am",Minutes:420}, {Name:"07:30 am",Minutes:450}, {Name:"08:00 am",Minutes:480, Short: "8 am"}, {Name:"08:30 am",Minutes:510}, {Name:"09:00 am",Minutes:540}, {Name:"09:30 am",Minutes:570}, {Name:"10:00 am",Minutes:600}, {Name:"10:30 am",Minutes:630}, {Name:"11:00 am",Minutes:660}, {Name:"11:30 am",Minutes:690}, {Name:"12:00 pm",Minutes:720, Short: "12 pm" +}, {Name:"12:30 pm",Minutes:750}, {Name:"01:00 pm",Minutes:780}, {Name:"01:30 pm",Minutes:810}, {Name:"02:00 pm",Minutes:840}, {Name:"02:30 pm",Minutes:870}, {Name:"03:00 pm",Minutes:900}, {Name:"03:30 pm",Minutes:930}, {Name:"04:00 pm",Minutes:960, Short: "4 pm"}, {Name:"04:30 pm",Minutes:990}, {Name:"05:00 pm",Minutes:1020}, {Name:"05:30 pm",Minutes:1050}, {Name:"06:00 pm",Minutes:1080}, {Name:"06:30 pm",Minutes:1110}, {Name:"07:00 pm",Minutes:1140}, {Name:"07:30 pm",Minutes:1170}, {Name:"08:00 pm",Minutes:1200, Short: "8 pm"}, {Name:"08:30 pm",Minutes:1230}, {Name:"09:00 pm",Minutes:1260}, {Name:"09:30 pm",Minutes:1290}, {Name:"10:00 pm",Minutes:1320}, {Name:"10:30 pm",Minutes:1350}, {Name:"11:00 pm",Minutes:1380}, {Name:"11:30 pm",Minutes:1410}) +``` +### AppIcon8 As image + +#### Image + + +``` +='nav-logo' +``` +### SendInvite As button + +#### OnSelect + + +``` +=/*creates calendar event for meeting*/ +UpdateContext({requiredAttendees:Concat(FollowUpMeetingAttendees, UserPrincipalName & ";")}); +UpdateContext({requiredAttendees:Left(requiredAttendees, Len(requiredAttendees)-1)}); +Office365Outlook.V4CalendarPostItem(MyCalendarID, FollowUpSubject.Text, FollowUpStart, FollowUpEnd, "UTC",{importance:"Normal", body:FollowUpMessage.Text, showAs:"busy", requiredAttendees:requiredAttendees}); +Set(FollowUpConfirmed, true); +Navigate(ConfirmScreen,None) +``` +#### Text + + +``` +="Send Invite" +``` +### LoadAvailableTimes As button + +#### OnSelect + + +``` +=Set(Loading, true); +/* +Collects available meeting times for attendees based on user determined data from this page. Adds 'StartTime' and 'EndTime' columns to the collection as a means of simplifying the MeetingTimeSlot column +*/ +ClearCollect(MeetingTimes,AddColumns(Office365Outlook.FindMeetingTimes({MaxCandidates:15,MinimumAttendeePercentage: 1, MeetingDuration: MeetingDurationSelection.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes',Start:Text(DateAdd(DatePicker1.SelectedDate,MeetingStartRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes', Minutes), UTC),End:Text(DateAdd(DatePicker1.SelectedDate, MeetingEndRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes', Minutes), UTC),RequiredAttendees:Concat(FollowUpMeetingAttendees,UserPrincipalName & ";")}).MeetingTimeSuggestions,"StartTime",MeetingTimeSlot.Start.DateTime, +"EndTime",MeetingTimeSlot.End.DateTime)); +Set(ShowMeetingTimes, true); +Set(Loading, false) +``` +#### Text + + +``` +="Find Available Times" +``` +### TimeLine As gallery.galleryHorizontal + +#### Items + + +``` +=HoursList +``` +### AvailableTimesGall As gallery.galleryVertical + +#### Items + + +``` +=SortByColumns(MeetingTimes,"Confidence",Descending,"StartTime",Ascending) +``` +## HomePopUpsScreen + +--- +### HomePopUpsScreen As screen + + +Gathers and stores the Office 365 profiles of the meeting attendees if they are within the app user's org +#### OnVisible + + +``` +If(IsEmpty(MeetingAttendees), + Set(Loading, true); + ClearCollect(MeetingAttendeeEmails, Filter(Split(Concatenate(SelectedMeeting.RequiredAttendees, + SelectedMeeting.OptionalAttendees), ";"), Result <> "")); + ClearCollect(MeetingAttendeesTemp, ForAll(MeetingAttendeeEmails, If(Lower(MyDomain) = Lower(Last(Split(Result, "@")).Result), Office365Users.UserProfileV2(Result), {displayName: Result, id: "", image: Blank(), jobTitle: "", userPrincipalName: Result}))); + ClearCollect(MeetingAttendees, RenameColumns(MeetingAttendeesTemp, "id", "Id", "jobTitle", "JobTitle", "displayName", "DisplayName", "userPrincipalName", "UserPrincipalName")); + Set(SelectedMeetingDuration, DateDiff(SelectedMeeting.Start, SelectedMeeting.End, Seconds)); + Set(Loading, false) +) +``` +### AssnTaskDescription_1 As text + +### AssnTaskGallery_2 As gallery.galleryVertical + +#### Items + + +``` +=/* +In-org attendee gallery for task assignment +If the attendee DisplayName is an actual name and not an email address, then they are in the app user's org, so we can assign them a task. +Tasks are stored in an 0365 tenant, so cannot be assigned to external users +*/ +Filter(AttendeeGallery1.AllItems, Not(".com" in DisplayName)) +``` +#### OnSelect + + +``` +=If(AssnTaskGallery_2.Visible, + Set(UserSelected, true); + Set(SelectedUser, {DisplayName:AssnTaskGallery_2.Selected.DisplayName, Id:AssnTaskGallery_2.Selected.Id, Image: AssnTaskGallery_2.Selected.AssnTaskUserImg_3.Image, JobTitle:AssnTaskGallery_2.Selected.JobTitle}) +) +``` +### AssnTaskSearchUser_2 As text + +### CancelAssnTask_1 As button + +#### OnSelect + + +``` +=Navigate(HomeScreen, None); +Set(ShowOverlay, !ShowOverlay); +If(TaskSelected, RemoveIf(Tasks, Id = SelectedTask.Id)); +Set(UserSelected, false); +Set(UserSelectedFromTasks, false); +Set(TaskSelected, false); +Reset(AssnTaskSearchUser_2); +Reset(AssnTaskDueDate_1); +Reset(AssnTaskDescription_1); +Reset(TaskTitle) +``` +#### Text + + +``` +=If(TaskSelected, "Delete", "Cancel") +``` +### SaveAssnTask_1 As button + +#### OnSelect + + +``` +=Navigate(HomeScreen, None); +Set(ShowOverlay, !ShowOverlay); +/*If user is making a new task, collect the information from form, otherwise, revise the task the user is editing*/ +If(!TaskSelected, + Collect(Tasks, {Id: CountRows(Tasks)+1, Name:AssnTaskDescription_1.Text, DueDate: AssnTaskDueDate_1.SelectedDate, +AssignToUser: SelectedUser}), + Patch(Tasks, LookUp(Tasks, Id=SelectedTask.Id), {Name:AssnTaskDescription_1.Text, DueDate: AssnTaskDueDate_1.SelectedDate, AssignToUser: SelectedUser})); +Set(UserSelected, false); +Set(UserSelectedFromTasks, false); +Set(TaskSelected, false); +Reset(AssnTaskSearchUser_2); +Reset(AssnTaskDueDate_1); +Reset(AssnTaskDescription_1); +Reset(TaskTitle) +``` +#### Text + + +``` +="Save task" +``` +### AssnTaskGallery_3 As gallery.galleryVertical + +#### Items + + +``` +=/*User search gallery*/ +If(!IsBlank(AssnTaskSearchUser_2.Text), Office365Users.SearchUser({searchTerm:Trim(AssnTaskSearchUser_2.Text), top:15})) +``` +#### OnSelect + + +``` +=Set(SelectedUser, {DisplayName:AssnTaskGallery_3.Selected.DisplayName, Id:AssnTaskGallery_3.Selected.Id, Image: AssnTaskGallery_3.Selected.AssnTaskUserImg_4.Image, JobTitle:AssnTaskGallery_3.Selected.JobTitle}); +Set(UserSelected, true) +``` +### AssnTaskUserImg_5 As image + +#### Image + + +``` +=If(UserSelectedFromTasks,SelectedUserTasks.Image,SelectedUser.Image) +``` +#### OnSelect + + +``` += +``` +### DataWarningAccept_1 As button + +#### OnSelect + + +``` +=Set(ShowDataLossWarning, false); +Navigate(HomeScreen, None) +``` +#### Text + + +``` +="Got it!" +``` +## HomeScreen + +--- +### HomeScreen As screen + + +The main screen for meeting captures during a meeting. + +- create meeting notes +- create tasks +- see meeting details + +#### OnVisible + + +``` +/*if any additional meeting is captured in the same session, guarantees no confirmation screens are shown in error*/ +Set(FollowUpConfirmed, false); +Set(EmailConfirmed, false); +Set(ExportConfirmed, false) +``` +### AppLogo1 As image + +#### Image + + +``` +='nav-logo' +``` +### NavHome1 As image + +#### Image + + +``` +='nav-notes' +``` +### NavSketch1 As image + +#### Image + + +``` +='nav-sketch' +``` +#### OnSelect + + +``` +=Navigate(SketchScreen, None) +``` +### NavPhotos1 As image + +#### Image + + +``` +='nav-camera' +``` +#### OnSelect + + +``` +=Navigate(CameraScreen, None) +``` +### AttendeesBannerImage As image + +#### Image + + +``` +=attendees +``` +### AttendeeGallery1 As gallery.galleryVertical + +#### Items + + +``` +=MeetingAttendees +``` +### MailAllButton As button + +#### OnSelect + + +``` +=Navigate(EmailScreen, None); +Set(MultiRecipients, true); +ClearCollect(EmailRecipients, AttendeeGallery1.AllItems) +``` +#### Text + + +``` +="Email" +``` +### NotesIcon As image + +#### Image + + +``` +=notes +``` +### NotesInput As text + +### Finish_SaveButton As button + +#### OnSelect + + +``` +=Navigate(ExportScreen, None) +``` +#### Text + + +``` +="Finish & Save" +``` +### Finish_SaveIcon As image + +#### Image + + +``` +=export +``` +#### OnSelect + + +``` +=Select(Finish_SaveButton) +``` +### TasksIcon As image + +#### Image + + +``` +=tasks +``` +### TaskGallery As gallery.galleryVertical + +#### Items + + +``` +=Tasks +``` +#### OnSelect + + +``` +=If(CountRows(Tasks) > 0, +Set(SelectedTask, ThisItem); +Set(TaskSelected, true); +Set(UserSelected, true); +Set(UserSelectedFromTasks, true); +Set(SelectedUserTasks, ThisItem.AssignToUser); +Set(ShowOverlay, true) +) +``` +### TaskTitle As text + +## SketchScreen + +--- +### SketchScreen As screen + + +Create a sketch during a meeting. +#### OnVisible + + +``` +Set(ShowSketchSaved, false) +``` +### AppLogo2 As image + +#### Image + + +``` +='nav-logo' +``` +### NavHome2 As image + +#### Image + + +``` +='nav-notes' +``` +#### OnSelect + + +``` +=Navigate(HomeScreen, None) +``` +### NavSketch2 As image + +#### Image + + +``` +='nav-sketch' +``` +### NavPhotos2 As image + +#### Image + + +``` +='nav-camera' +``` +#### OnSelect + + +``` +=Navigate(CameraScreen, None) +``` +### SaveSketch As button + +#### OnSelect + + +``` +=/*store sketches in sketch collection*/ +Set(SketchNumber, SketchNumber + 1); +Collect(Sketches, {Image:SketchCanvas.Image, Name: "Sketch" & SketchNumber & ".jpg"}); +Reset(SketchCanvas); +Set(ShowSketchSaved, true) +``` +#### Text + + +``` +="Save sketch" +``` +## WelcomeScreen + +--- +### WelcomeScreen As screen + + +if any additional meeting is captured in the same session, guarantees all collections are empty +#### OnVisible + + +``` +Clear(MeetingAttendees); +Clear(MeetingTimes); +Clear(EmailRecipients); +Clear(FollowUpMeetingAttendees); +Clear(Tasks); +Clear(Photos); +Clear(Sketches); +Clear(EmailAttachments); +Reset(NotesInput); +Reset(AssnTaskSearchUser_1); +Set(FollowUpConfirmed, false); +Set(EmailConfirmed, false); +Set(ExportConfirmed, false); + +/*Email and OneNote templates with {placeholder} values for dynamic information*/ + +ClearCollect(Templates, +{Template: "Email", Value: "" & "{MeetingName}" & "
[ Meeting Capture ]
" & "{MeetingName}" & "
" & "{MeetingStartDate}" &" | " & "{MeetingStartTime}" & " - "& "{MeetingEndTime}" & " (" & "{MeetingMinutes}" & " Minutes)
+
" & "{1}" & "
Attendees (" & "{MeetingAttendeeNum}" & ")
Meeting details
" & "{MeetingDetails}" & "
Meeting Notes
" & "{MeetingNotes}" & "
" & "{2}" & "
Tasks
"}, +{Template: "OneNote", Value: "" & "{MeetingName}" & "
 
[ Meeting Capture ]
 
 
" & "{MeetingName}" & "
" & "{MeetingStartDate}" &" | " & "{MeetingStartTime}"&" - "& "{MeetingEndTime}" & " (" & "{MeetingMinutes}" & " Minutes)
 
" & "{1}" & "
Attendees (" & "{MeetingAttendeeNum}" & ")
 
 
Meeting NotesTasks
" & "{MeetingNotes}" & "" & "{2}" & "
 
 
"}) +``` +### MeetingsGalleryBkg As button + +#### OnSelect + + +``` +=Select(Parent) +``` +#### Text + + +``` +="" +``` +### BtnChangeAuto As button + +#### OnSelect + + +``` +=Set(AutoSelectMeeting, false) +``` +#### Text + + +``` +="Change" +``` \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_Add.json b/example/src/meetingcapturedemo/Assets/Basel_Add.json new file mode 100644 index 0000000..184b202 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_Add.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "/ctrllib/icon/images/Basel_Add.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_Add", + "Path": "/ctrllib/icon/images/Basel_Add.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_Add.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_ArrowLeft.json b/example/src/meetingcapturedemo/Assets/Basel_ArrowLeft.json new file mode 100644 index 0000000..80f1e58 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_ArrowLeft.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "/ctrllib/icon/images/Basel_ArrowLeft.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_ArrowLeft", + "Path": "/ctrllib/icon/images/Basel_ArrowLeft.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_ArrowLeft.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_ArrowRight.json b/example/src/meetingcapturedemo/Assets/Basel_ArrowRight.json new file mode 100644 index 0000000..a733046 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_ArrowRight.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "/ctrllib/icon/images/Basel_ArrowRight.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_ArrowRight", + "Path": "/ctrllib/icon/images/Basel_ArrowRight.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_ArrowRight.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_Attachment.json b/example/src/meetingcapturedemo/Assets/Basel_Attachment.json new file mode 100644 index 0000000..087f597 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_Attachment.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "/ctrllib/icon/images/Basel_Attachment.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_Attachment", + "Path": "/ctrllib/icon/images/Basel_Attachment.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_Attachment.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_Cancel.json b/example/src/meetingcapturedemo/Assets/Basel_Cancel.json new file mode 100644 index 0000000..f6d8aa2 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_Cancel.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "Basel_Cancel.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_Cancel", + "Path": "Assets\\Images\\Basel_Cancel.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_Cancel.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_Check.json b/example/src/meetingcapturedemo/Assets/Basel_Check.json new file mode 100644 index 0000000..a930cea --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_Check.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "/ctrllib/icon/images/Basel_Check.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_Check", + "Path": "/ctrllib/icon/images/Basel_Check.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_Check.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_ChevronRight.json b/example/src/meetingcapturedemo/Assets/Basel_ChevronRight.json new file mode 100644 index 0000000..67ee2d2 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_ChevronRight.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "Basel_ChevronRight.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_ChevronRight", + "Path": "Assets\\Images\\Basel_ChevronRight.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_ChevronRight.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_Mail.json b/example/src/meetingcapturedemo/Assets/Basel_Mail.json new file mode 100644 index 0000000..b4bf303 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_Mail.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "/ctrllib/icon/images/Basel_Mail.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_Mail", + "Path": "/ctrllib/icon/images/Basel_Mail.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_Mail.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_Note.json b/example/src/meetingcapturedemo/Assets/Basel_Note.json new file mode 100644 index 0000000..bf3238f --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_Note.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "Basel_Note.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_Note", + "Path": "Assets\\Images\\Basel_Note.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_Note.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_Person.json b/example/src/meetingcapturedemo/Assets/Basel_Person.json new file mode 100644 index 0000000..9c1e9cc --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_Person.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "/ctrllib/icon/images/Basel_Person.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_Person", + "Path": "/ctrllib/icon/images/Basel_Person.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_Person.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_Save.json b/example/src/meetingcapturedemo/Assets/Basel_Save.json new file mode 100644 index 0000000..25307b5 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_Save.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "Basel_Save.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_Save", + "Path": "Assets\\Images\\Basel_Save.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_Save.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_Search.json b/example/src/meetingcapturedemo/Assets/Basel_Search.json new file mode 100644 index 0000000..e73168d --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_Search.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "/ctrllib/icon/images/Basel_Search.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_Search", + "Path": "/ctrllib/icon/images/Basel_Search.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_Search.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_Trash.json b/example/src/meetingcapturedemo/Assets/Basel_Trash.json new file mode 100644 index 0000000..6cdd8af --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_Trash.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "/ctrllib/icon/images/Basel_Trash.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_Trash", + "Path": "/ctrllib/icon/images/Basel_Trash.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_Trash.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_Warning.json b/example/src/meetingcapturedemo/Assets/Basel_Warning.json new file mode 100644 index 0000000..18a7457 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_Warning.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "Basel_Warning.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_Warning", + "Path": "Assets\\Images\\Basel_Warning.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_Warning.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Basel_eventsignup_calendar.json b/example/src/meetingcapturedemo/Assets/Basel_eventsignup_calendar.json new file mode 100644 index 0000000..bf46066 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Basel_eventsignup_calendar.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "/ctrllib/icon/images/Basel_eventsignup_calendar.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "Basel_eventsignup_calendar", + "Path": "/ctrllib/icon/images/Basel_eventsignup_calendar.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/icon/images/Basel_eventsignup_calendar.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Images/MeetingCaptureBkg.png b/example/src/meetingcapturedemo/Assets/Images/MeetingCaptureBkg.png new file mode 100644 index 0000000000000000000000000000000000000000..deb016f566d739866450a78ab972bdcb1a544526 GIT binary patch literal 114720 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
o6VvYIZh^>WDs`?>)s%X{v{ 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 literal 0 HcmV?d00001 diff --git a/example/src/meetingcapturedemo/Assets/Images/MeetingCaptureExportBkg.png b/example/src/meetingcapturedemo/Assets/Images/MeetingCaptureExportBkg.png new file mode 100644 index 0000000000000000000000000000000000000000..8cdd9e1fc9db6bc27ed1d8aeacef56c21f62fd7e GIT binary patch literal 195704 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%0De0!fJ&|}U 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 P`?IHQPnB9+x&40u(W@Ot literal 0 HcmV?d00001 diff --git a/example/src/meetingcapturedemo/Assets/Images/attachments-camera.svg b/example/src/meetingcapturedemo/Assets/Images/attachments-camera.svg new file mode 100644 index 0000000..f734b80 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Images/attachments-camera.svg @@ -0,0 +1,17 @@ + + + + 8068CB17-991D-4867-B71A-5A0711A891EB + Created with sketchtool. + + + + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Images/attachments-sketch.svg b/example/src/meetingcapturedemo/Assets/Images/attachments-sketch.svg new file mode 100644 index 0000000..d7039fd --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Images/attachments-sketch.svg @@ -0,0 +1,17 @@ + + + + D854CD57-52E4-480F-9043-F099C17345DD + Created with sketchtool. + + + + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Images/attendees.svg b/example/src/meetingcapturedemo/Assets/Images/attendees.svg new file mode 100644 index 0000000..85fa081 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Images/attendees.svg @@ -0,0 +1,14 @@ + + + + CC50C5F1-0F54-450F-ABD1-1F29012D9397 + Created with sketchtool. + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Images/calendar.png b/example/src/meetingcapturedemo/Assets/Images/calendar.png new file mode 100644 index 0000000000000000000000000000000000000000..084dbf855919a3c97a5de9e28a8fbfd7293b53b6 GIT binary patch literal 1281 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 TGdG=+00000NkvXXu0mjfU5RYH literal 0 HcmV?d00001 diff --git a/example/src/meetingcapturedemo/Assets/Images/export.svg b/example/src/meetingcapturedemo/Assets/Images/export.svg new file mode 100644 index 0000000..40059a4 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Images/export.svg @@ -0,0 +1,14 @@ + + + + D2B13758-E94B-46E7-B009-6243C2517017 + Created with sketchtool. + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Images/meeting-capture-logo-full%403x.png b/example/src/meetingcapturedemo/Assets/Images/meeting-capture-logo-full%403x.png new file mode 100644 index 0000000000000000000000000000000000000000..66b3f5427a4f7368068d1aaa0c01b19d544aa5ab GIT binary patch literal 12033 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 j=igNNSGGO2_YD!bbCFW@cuMG + + + 93A8E8CF-096B-4A61-9009-C2C7AA400853 + Created with sketchtool. + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Images/nav-logo.svg b/example/src/meetingcapturedemo/Assets/Images/nav-logo.svg new file mode 100644 index 0000000..37a99c4 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Images/nav-logo.svg @@ -0,0 +1,14 @@ + + + + FFE58A74-3DD7-4247-AE83-B02B09463F32 + Created with sketchtool. + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Images/nav-notes.svg b/example/src/meetingcapturedemo/Assets/Images/nav-notes.svg new file mode 100644 index 0000000..0707e34 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Images/nav-notes.svg @@ -0,0 +1,14 @@ + + + + 17DA38C4-827D-4E40-9E62-D9EA3BB22582 + Created with sketchtool. + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Images/nav-sketch.svg b/example/src/meetingcapturedemo/Assets/Images/nav-sketch.svg new file mode 100644 index 0000000..e9584b7 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Images/nav-sketch.svg @@ -0,0 +1,14 @@ + + + + 81E1C0A9-AC10-49B9-A323-B4CFC7C3EACF + Created with sketchtool. + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Images/notes.svg b/example/src/meetingcapturedemo/Assets/Images/notes.svg new file mode 100644 index 0000000..96a8617 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Images/notes.svg @@ -0,0 +1,14 @@ + + + + AB85A79C-0BD6-408E-854C-82221147C3EE + Created with sketchtool. + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Images/one-note.png b/example/src/meetingcapturedemo/Assets/Images/one-note.png new file mode 100644 index 0000000000000000000000000000000000000000..0825efaa10ab5461415b213c8142dd099c56c59d GIT binary patch literal 1077 zcmV-51j_q~P)Px&?@2^KR7ef2R?lx6MHGH-X6&`=Ku97uL}_uGRwQxdxHXVMQ4a`-asg2eNQhez z;=ln3scKcJ5`O?(K;puM0}?mH5lVzOK?82{gG~jP%9IKrs#YPCcx~_QHl5Fdc&Z zh-Y#um>=KC*XdG#@$u@ek&(Dan##oLAs9SN#51gD)ESe|O=cPumQ7iz+28fx8g-o;Ago&uRV$~ER>180#n34=+awMI;e5cE5LsrKYR2Pkqu zpxG;Eu)iJ?z3*(5P!?i?0n)YtkVB@S{EIV-M83GZT)XJ@rAqY? ztoPdeCVB1l#*kerhE|OWTQY7qF3Xf@|JVa%x_Frs(Y016ClnY zyBoUD>iYp?x_tNuj^&%M`je<}9KAV(#7>xec%GWgA2~miK{M=_*t}N zT=jE*^k;w!C9;NK&YH8&z`>Tp#X|NRBft<0jys{E_%l&S>8#@g*q;Q^-TU{iJ+}qG zIf3alB=HnNUr%M-MFx2FP8hx5|cawh- zq63EeGFpA=05am81)*k7q8${gZS?~I!2Svjgk}4p3zW<_;HYB@rK+cLp*5mdrKQAo z0W&X(BHjW3M{OCS1;B_uB2xbVfEfMdU!gng061>{AUb!{?L~MVG*;2S_ErF)tB8C7 z;cu-==kvR?w+_I&jfqug6DJPQzxo4 zl}h@m@3&{lhfW~%xv<5*weoqL5wUm64Fvqq0pL_EkfNuNw>_rd!*AOrqeSEV0L~}! zeLu3B)#Xc;X~NcCjN%mxj`Ednmujy%V>_2-4?l~#CL)wEz@lmIxlI83iQ5X?X27U} z4DLTTTYb0J6yC>r_ik-$r?nwmC;UKZw)zR22VU1fE*BMuV}Oi-?JF*box9wzK#35; zV4q3k|M!D)i^9cRq$aiEyuU>Fs{bDD$rQr}ZBrrcKACtToel1%?vqKf+yhiB00000NkvXXu0mjf`O*d% literal 0 HcmV?d00001 diff --git a/example/src/meetingcapturedemo/Assets/Images/outlook.png b/example/src/meetingcapturedemo/Assets/Images/outlook.png new file mode 100644 index 0000000000000000000000000000000000000000..d2b0f8bc17ad6534d379e1a6b94965ef8442adca GIT binary patch literal 559 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 literal 0 HcmV?d00001 diff --git a/example/src/meetingcapturedemo/Assets/Images/tasks.svg b/example/src/meetingcapturedemo/Assets/Images/tasks.svg new file mode 100644 index 0000000..6514e30 --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/Images/tasks.svg @@ -0,0 +1,14 @@ + + + + 2E218130-092B-4DF4-83AE-48446EEFD3E9 + Created with sketchtool. + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/Images/unable-to-attend.png b/example/src/meetingcapturedemo/Assets/Images/unable-to-attend.png new file mode 100644 index 0000000000000000000000000000000000000000..f4179dcf227b6bc7396927facf8cdc3a9e554162 GIT binary patch literal 634 zcmV-=0)_pFP)Px%G)Y83R5%fxR7+?SK@hF#UWXhq;7L&k$wkQ}h+h05DDg`W5d=N?nT-Jj_plQT zn@F5pH=8IXB0|=K8xhID6;J*T5(V)Cfv5*}7d$AEgBKCR!?H77)&zQIFzp8$hN^z= zb#--B_aMYZxm=bHUsqiOI0Qti2(f~MH%jAYCJ~WhQll$0N<{eRRrMav4@jVlWm#Pu zC{I8qlKr`9t^1Ren*97DktBj$tsP4@6o&_Dv(KM=n|nD^TeoHRO`u?O?dGkY=3YFl zYQ4!eGXq6EDDd)?RH_~qPF)!I&PObQf}S{T@}pn~9RgwABvL^0fY@&0;#d?6s2V8R z7$>zafHnb8MbCd{qhL}_AkoQV{kipVaj%=*p$HEPDT;C2Q^!b(M5D~hNS)W_z zY(V1~N1g`T&X>IOS1suq99hw*`=h+WHep%arLoKh%`LK?cfG}Nb04`@sYPTA;1XPP z(z!RDHLkB)op6d!Eg)cEjrO`2@@LRkA21YVMsc%bV3EJ(Ru`d|eZ+(O%4 z!(FF?An5O%3QLDDiKM!(6^6bbU>5w~u@Aw0CNg1Z5?tI)3&cB9Hosz={Z+=okM|ev z15``6=n8~bcxHUHIPO3E5#oV+2S=8xdQjm+Qi7mG0gMT|HSGTXjpOM;bFub+0)x}a U^*XA0IsgCw07*qoM6N<$f(fD+vH$=8 literal 0 HcmV?d00001 diff --git a/example/src/meetingcapturedemo/Assets/SampleImage.json b/example/src/meetingcapturedemo/Assets/SampleImage.json new file mode 100644 index 0000000..6e5d92a --- /dev/null +++ b/example/src/meetingcapturedemo/Assets/SampleImage.json @@ -0,0 +1,12 @@ +{ + "Content": "Image", + "FileName": "SampleImage.svg", + "IsSampleData": true, + "IsWritable": false, + "Name": "SampleImage", + "Path": "Assets\\Images\\SampleImage.svg", + "ResourceKind": "Uri", + "RootPath": "ms-appx:///ctrllib/image/images/SampleImage.svg", + "Schema": "i", + "Type": "ResourceInfo" +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Assets/logo.jpg b/example/src/meetingcapturedemo/Assets/logo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..803f56e3302234c74beb90c1200caa385ddec5b6 GIT binary patch literal 2177 zcmeAS@N?(olHy`uVBq!ia0vp^CqS5k4M?tyST~P>fy2Yo#WAEJ?(LlO-Jz)x$LANH zpZog!e+MBg!^w4Byb)KN)*g#haOFwK`^6n{=Kq1EitE_#dgZbSDik35INgL=*o zjzeh<2}X=8iPj1Rtqe^Ycrs4r8&#+wxGj=vO7Cg3ovm6 zd0gzd*~ied?YGG&+2{K9ErreF|zv{*d1H1Xn6 z5x$Fx8(uyUylr8he$_|ZQNShLFm#ea$IP|g<9&ay1V)DcmjOEbU-a|~oj{s%?dtjv zp!5H)^?u>P;y9t@+Esh4CWVgw*HlZCniM>oUcZtTbrd*K|60gO&{05TVd>ZYE(MN9 z`%5|Jb|`R6y0Gh)yQ=`p$NRfl{9FWBJTqedE>_}b`jH>&qziyTh ztle35{MYt(R*DZKM461))7S1!pMEo93a9(+v+=2>}l$J7Kl8@ z%fy~3aHHf?NA8^Yo3oZ#8(uio>b;5c#7MdDr`t$VJZt)|_JOBGtR=nvkot|GIKl@l^vLm$ktrR@6lZ$00lZ>O! zyVI-Z{xtv=R+-lA3VV`#@A2C?{$P11+~O}_=eP`5V*$%Emdx*~W!FdiTOYC4d42TX zGuz5qZ5wxot-rJ7;re=;M)mX$Csu9xbyW6R^=HwUiNCzRuid%t$+Y8tr0&&DateDiff(Now(),End,Seconds)>0),DateDiff(Start,End,Hours)<6));Set(NumberOfCurrentMeetings,CountRows(Filter(MeetingsOnly,isCurrent))); + /*If a single meeting is happening now, autoselect it*/ + If(NumberOfCurrentMeetings=1,Set(AutoSelectMeeting, true );Set(SelectedMeeting,LookUp(MeetingsOnly,isCurrent))) + + AppConditional0 As AppConditional0: + App_INTERNAL_PROPERTY_NAME_0: =true + App_INTERNAL_PROPERTY_NAME_1: =true + diff --git a/example/src/meetingcapturedemo/Src/AttachmentsScreen.fx.yaml b/example/src/meetingcapturedemo/Src/AttachmentsScreen.fx.yaml new file mode 100644 index 0000000..05e63a2 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/AttachmentsScreen.fx.yaml @@ -0,0 +1,462 @@ +AttachmentsScreen As screen: + Height: =Max(App.Height, App.DesignHeight) + OnVisible: =/*See attachments created during meeting*/ + Orientation: =If(AttachmentsScreen.Width < AttachmentsScreen.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= AttachmentsScreen.Width) + Width: =Max(App.Width, App.DesignWidth) + + AttachmentsBanner As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =24 + + Rectangle2_5 As rectangle: + DisabledFill: =Rectangle2_5.Fill + Fill: =RGBA(234, 237, 239, 1) + FocusedBorderColor: =Rectangle2_5.BorderColor + Height: =66 + HoverFill: =Rectangle2_5.Fill + PressedFill: =Rectangle2_5.Fill + Width: =1366 + ZIndex: =1 + + AppLogo5 As image: + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =AppLogo5.BorderColor + Height: =66 + HoverBorderColor: =ColorFade(AppLogo5.BorderColor, 20%) + HoverFill: =ColorFade(AppLogo5.Fill, 20%) + Image: ='nav-logo' + ImagePosition: =ImagePosition.Center + PressedBorderColor: =ColorFade(AppLogo5.BorderColor, -20%) + PressedFill: =ColorFade(AppLogo5.Fill, -20%) + Width: =75 + ZIndex: =2 + + AttachmentsHeader As label: + FocusedBorderColor: =AttachmentsHeader.BorderColor + FontWeight: =Lighter + Height: =49 + HoverBorderColor: =AttachmentsHeader.BorderColor + HoverColor: =AttachmentsHeader.Color + HoverFill: =AttachmentsHeader.Fill + PressedBorderColor: =AttachmentsHeader.BorderColor + PressedColor: =AttachmentsHeader.Color + PressedFill: =AttachmentsHeader.Fill + Size: =27 + Text: ="Meeting Attachments" + Width: =1251 + X: =70+0 + Y: =91 + ZIndex: =3 + + Rectangle6_2 As rectangle: + DisabledFill: =Rectangle6_2.Fill + Fill: =RGBA(227, 227, 227, 1) + FocusedBorderColor: =Rectangle6_2.BorderColor + FocusedBorderThickness: =0 + Height: =1 + HoverFill: =Rectangle6_2.Fill + PressedFill: =Rectangle6_2.Fill + Width: =AttachmentsHeader.Width + X: =AttachmentsHeader.X + Y: =155 + ZIndex: =4 + + AttachmentsPrevScreen As icon.ArrowLeft: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =AttachmentsPrevScreen.Fill + FocusedBorderColor: =AttachmentsPrevScreen.BorderColor + FocusedBorderThickness: =0 + Height: =40 + HoverBorderColor: =ColorFade(AttachmentsPrevScreen.BorderColor, 20%) + HoverColor: =ColorFade(AttachmentsPrevScreen.Color, 20%) + HoverFill: =AttachmentsPrevScreen.Fill + Icon: =Icon.ArrowLeft + OnSelect: =Back() + PaddingBottom: =9 + PaddingLeft: =9 + PaddingRight: =9 + PaddingTop: =9 + PressedBorderColor: =ColorFade(AttachmentsPrevScreen.BorderColor, -20%) + PressedColor: =ColorFade(AttachmentsPrevScreen.Color, -20%) + PressedFill: =AttachmentsPrevScreen.Fill + Width: =40 + X: =93+0 + Y: =13+0 + ZIndex: =14 + + AttachmentsPhotos As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =24 + + PhotosIcon As image: + FocusedBorderColor: =PhotosIcon.BorderColor + Height: =54 + HoverBorderColor: =ColorFade(PhotosIcon.BorderColor, 20%) + HoverFill: =ColorFade(PhotosIcon.Fill, 20%) + Image: ='attachments-camera' + PressedBorderColor: =ColorFade(PhotosIcon.BorderColor, -20%) + PressedFill: =ColorFade(PhotosIcon.Fill, -20%) + Width: =54 + X: =74 + Y: =189 + ZIndex: =5 + + PhotosHeader As label: + FocusedBorderColor: =PhotosHeader.BorderColor + FontWeight: =Semibold + HoverBorderColor: =PhotosHeader.BorderColor + HoverColor: =PhotosHeader.Color + HoverFill: =PhotosHeader.Fill + PressedBorderColor: =PhotosHeader.BorderColor + PressedColor: =PhotosHeader.Color + PressedFill: =PhotosHeader.Fill + Size: =15 + Text: ="Photos" + X: =153 + Y: =196 + ZIndex: =7 + + PhotosGallery As gallery.galleryHorizontal: + DisabledBorderColor: =PhotosGallery.BorderColor + DisabledFill: =PhotosGallery.Fill + Height: =200 + HoverBorderColor: =PhotosGallery.BorderColor + HoverFill: =PhotosGallery.Fill + Items: =Photos + LoadingSpinnerColor: =PhotosGallery.BorderColor + OnSelect: |- + =Set(ShowOverlay, true); + Set(SelectedImage, ThisItem) + PressedBorderColor: =PhotosGallery.BorderColor + PressedFill: =PhotosGallery.Fill + TemplatePadding: =10 + TemplateSize: =203 + Width: =1168 + X: =153 + Y: =253 + ZIndex: =8 + + AttachmentPhoto As image: + FocusedBorderColor: =AttachmentPhoto.BorderColor + Height: =190 + HoverBorderColor: =ColorFade(AttachmentPhoto.BorderColor, 20%) + HoverFill: =ColorFade(AttachmentPhoto.Fill, 20%) + Image: =ThisItem.Image + OnSelect: =Select(Parent) + PressedBorderColor: =ColorFade(AttachmentPhoto.BorderColor, -20%) + PressedFill: =ColorFade(AttachmentPhoto.Fill, -20%) + Width: =203 + ZIndex: =1 + + PhotosCount As label: + FocusedBorderColor: =PhotosCount.BorderColor + Height: =20 + HoverBorderColor: =PhotosCount.BorderColor + HoverColor: =PhotosCount.Color + HoverFill: =PhotosCount.Fill + PressedBorderColor: =PhotosCount.BorderColor + PressedColor: =PhotosCount.Color + PressedFill: =PhotosCount.Fill + Size: =10.5 + Text: =CountRows(Photos) & If(CountRows(Photos) = 1, " photo has", " photos have") & " been attached to this meeting" + Width: =397 + X: =153 + Y: =233 + ZIndex: =11 + + AttachmentsSketches As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =24 + + SketchesIcon As image: + FocusedBorderColor: =SketchesIcon.BorderColor + Height: =54 + HoverBorderColor: =ColorFade(SketchesIcon.BorderColor, 20%) + HoverFill: =ColorFade(SketchesIcon.Fill, 20%) + Image: ='attachments-sketch' + PressedBorderColor: =ColorFade(SketchesIcon.BorderColor, -20%) + PressedFill: =ColorFade(SketchesIcon.Fill, -20%) + Width: =54 + X: =74 + Y: =494 + ZIndex: =6 + + Rectangle6_3 As rectangle: + DisabledFill: =Rectangle6_3.Fill + Fill: =RGBA(227, 227, 227, 1) + FocusedBorderColor: =Rectangle6_3.BorderColor + FocusedBorderThickness: =0 + Height: =1 + HoverFill: =Rectangle6_3.Fill + PressedFill: =Rectangle6_3.Fill + Width: =AttachmentsHeader.Width + X: =AttachmentsHeader.X + Y: =464 + ZIndex: =9 + + SketchesHeader As label: + FocusedBorderColor: =SketchesHeader.BorderColor + FontWeight: =Semibold + HoverBorderColor: =SketchesHeader.BorderColor + HoverColor: =SketchesHeader.Color + HoverFill: =SketchesHeader.Fill + PressedBorderColor: =SketchesHeader.BorderColor + PressedColor: =SketchesHeader.Color + PressedFill: =SketchesHeader.Fill + Size: =15 + Text: ="Sketches" + X: =153 + Y: =500 + ZIndex: =10 + + SketchCount As label: + FocusedBorderColor: =SketchCount.BorderColor + Height: =20 + HoverBorderColor: =SketchCount.BorderColor + HoverColor: =SketchCount.Color + HoverFill: =SketchCount.Fill + PressedBorderColor: =SketchCount.BorderColor + PressedColor: =SketchCount.Color + PressedFill: =SketchCount.Fill + Size: =10.5 + Text: =CountRows(Sketches) & If(CountRows(Sketches) = 1, " sketch has", " sketches have") & " been attached to this meeting" + Width: =397 + X: =153 + Y: =540 + ZIndex: =12 + + SketchesGallery As gallery.galleryHorizontal: + DisabledBorderColor: =SketchesGallery.BorderColor + DisabledFill: =SketchesGallery.Fill + Height: =200 + HoverBorderColor: =SketchesGallery.BorderColor + HoverFill: =SketchesGallery.Fill + Items: =Sketches + LoadingSpinnerColor: =SketchesGallery.BorderColor + OnSelect: |- + =Set(ShowOverlay, true); + Set(SelectedImage, ThisItem) + PressedBorderColor: =SketchesGallery.BorderColor + PressedFill: =SketchesGallery.Fill + TemplatePadding: =10 + TemplateSize: =203 + Width: =1168 + X: =153 + Y: =568 + ZIndex: =13 + + SketchImage As image: + FocusedBorderColor: =SketchImage.BorderColor + Height: =180 + HoverBorderColor: =ColorFade(SketchImage.BorderColor, 20%) + HoverFill: =ColorFade(SketchImage.Fill, 20%) + Image: =ThisItem.Image + OnSelect: =Select(Parent) + PressedBorderColor: =ColorFade(SketchImage.BorderColor, -20%) + PressedFill: =ColorFade(SketchImage.Fill, -20%) + Width: =203 + ZIndex: =1 + + AttachmentsModal As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =24 + + ModalOverlay_1 As rectangle: + DisabledFill: =ModalOverlay_1.Fill + Fill: =RGBA(0,0,0,.7) + FocusedBorderColor: =ModalOverlay_1.BorderColor + Height: =768 + HoverFill: =ModalOverlay_1.Fill + PressedFill: =ModalOverlay_1.Fill + Visible: =ShowOverlay + Width: =1366 + ZIndex: =15 + + AttachmentToDelete As image: + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =AttachmentToDelete.BorderColor + Height: =600 + HoverBorderColor: =ColorFade(AttachmentToDelete.BorderColor, 20%) + HoverFill: =ColorFade(AttachmentToDelete.Fill, 20%) + Image: =SelectedImage.Image + PressedBorderColor: =ColorFade(AttachmentToDelete.BorderColor, -20%) + PressedFill: =ColorFade(AttachmentToDelete.Fill, -20%) + Visible: =ShowOverlay + Width: =907 + X: =230 + Y: =81 + ZIndex: =16 + + DeleteAttachment1 As circle: + DisabledFill: =DeleteAttachment1.Fill + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =DeleteAttachment1.BorderColor + Height: =45 + HoverFill: =DeleteAttachment1.Fill + PressedFill: =DeleteAttachment1.Fill + Visible: =ShowOverlay && !AttachmentDeleteConfirm + Width: =45 + X: =661 + Y: =708 + ZIndex: =17 + + HideDelete2 As circle: + BorderColor: =RGBA(255, 255, 255, 1) + BorderThickness: =2 + DisabledFill: =HideDelete2.Fill + Fill: =RGBA(0, 0, 0, 0) + FocusedBorderColor: =HideDelete2.BorderColor + Height: =45 + HoverFill: =HideDelete2.Fill + OnSelect: |- + =Set(ShowOverlay, false); + Set(AttachmentDeleteConfirm, false) + PressedFill: =HideDelete2.Fill + Visible: =ShowOverlay + Width: =45 + X: =1147 + Y: =28 + ZIndex: =18 + + HideDelete1 As icon.Cancel: + Color: =White + DisabledFill: =HideDelete1.Fill + FocusedBorderColor: =HideDelete1.BorderColor + Height: =HideDelete2.Height + HoverBorderColor: =ColorFade(HideDelete1.BorderColor, 20%) + HoverColor: =ColorFade(HideDelete1.Color, 20%) + HoverFill: =HideDelete1.Fill + Icon: =Icon.Cancel + OnSelect: |- + =Set(ShowOverlay, false); + Set(AttachmentDeleteConfirm, false) + PaddingBottom: =7 + PaddingLeft: =7 + PaddingRight: =7 + PaddingTop: =7 + PressedBorderColor: =ColorFade(HideDelete1.BorderColor, -20%) + PressedColor: =ColorFade(HideDelete1.Color, -20%) + PressedFill: =HideDelete1.Fill + Visible: =ShowOverlay + Width: =HideDelete2.Width + X: =HideDelete2.X + Y: =HideDelete2.Y + ZIndex: =19 + + icon15 As icon.Trash: + Color: =White + DisabledFill: =icon15.Fill + FocusedBorderColor: =icon15.BorderColor + Height: =DeleteAttachment1.Height + HoverBorderColor: =ColorFade(icon15.BorderColor, 20%) + HoverColor: =ColorFade(icon15.Color, 20%) + HoverFill: =icon15.Fill + Icon: =Icon.Trash + OnSelect: =Set(AttachmentDeleteConfirm, true) + PaddingBottom: =9 + PaddingLeft: =9 + PaddingRight: =9 + PaddingTop: =9 + PressedBorderColor: =ColorFade(icon15.BorderColor, -20%) + PressedColor: =ColorFade(icon15.Color, -20%) + PressedFill: =icon15.Fill + Visible: =ShowOverlay && !AttachmentDeleteConfirm + Width: =DeleteAttachment1.Width + X: =DeleteAttachment1.X + Y: =DeleteAttachment1.Y + ZIndex: =20 + + DeleteCertaintyText As label: + Align: =Right + Color: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =DeleteCertaintyText.BorderColor + HoverBorderColor: =DeleteCertaintyText.BorderColor + HoverColor: =DeleteCertaintyText.Color + HoverFill: =DeleteCertaintyText.Fill + PressedBorderColor: =DeleteCertaintyText.BorderColor + PressedColor: =DeleteCertaintyText.Color + PressedFill: =DeleteCertaintyText.Fill + Size: =10.5 + Text: ="Are you sure you want to delete?" + Visible: =ShowOverlay && AttachmentDeleteConfirm + Width: =318 + X: =230 + Y: =703 + ZIndex: =21 + + CancelDeleteAttach As button: + BorderColor: =White + BorderThickness: =1 + Color: =White + DisabledBorderColor: =ColorFade(CancelDeleteAttach.BorderColor, 70%) + Fill: =RGBA(255, 255, 255, 0) + FocusedBorderColor: =CancelDeleteAttach.BorderColor + FocusedBorderThickness: =1 + Height: =44 + HoverBorderColor: =ColorFade(CancelDeleteAttach.BorderColor, 20%) + HoverColor: =CancelDeleteAttach.Color + HoverFill: =ColorFade(CancelDeleteAttach.Fill, 20%) + OnSelect: |- + =Set(AttachmentDeleteConfirm, false); + Set(ShowOverlay, false) + PressedBorderColor: =CancelDeleteAttach.Fill + PressedColor: =CancelDeleteAttach.Fill + PressedFill: =CancelDeleteAttach.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =10.5 + Text: =If(TaskSelected, "Delete", "Cancel") + Visible: =ShowOverlay && AttachmentDeleteConfirm + Width: =100 + X: =577 + Y: =699 + ZIndex: =22 + + ConfirmDeleteAttach As button: + BorderColor: =RGBA(237, 41, 85, 1) + BorderThickness: =1 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =ColorFade(ConfirmDeleteAttach.BorderColor, 70%) + DisplayMode: =Edit + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =ConfirmDeleteAttach.BorderColor + FocusedBorderThickness: =1 + Height: =44 + HoverBorderColor: =ColorFade(ConfirmDeleteAttach.BorderColor, 20%) + HoverColor: =ConfirmDeleteAttach.Color + HoverFill: =ColorFade(ConfirmDeleteAttach.Fill, 20%) + OnSelect: | + =Set(ShowOverlay, false); + Set(AttachmentDeleteConfirm, false); + RemoveIf(Sketches, SelectedImage.Name = Name); + RemoveIf(Photos, SelectedImage.Name = Name) + PressedBorderColor: =ConfirmDeleteAttach.Fill + PressedColor: =ConfirmDeleteAttach.Fill + PressedFill: =ConfirmDeleteAttach.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =10.5 + Text: ="Yes, delete" + Visible: =ShowOverlay && AttachmentDeleteConfirm + Width: =100 + X: =689 + Y: =699 + ZIndex: =23 + diff --git a/example/src/meetingcapturedemo/Src/CameraScreen.fx.yaml b/example/src/meetingcapturedemo/Src/CameraScreen.fx.yaml new file mode 100644 index 0000000..b1b4223 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/CameraScreen.fx.yaml @@ -0,0 +1,258 @@ +CameraScreen As screen: + Height: =Max(App.Height, App.DesignHeight) + OnVisible: |- + =/*Take picture during a meeting*/ + Set(ShowImageSaved, false); + Set(ShowTakenImage, false) + Orientation: =If(CameraScreen.Width < CameraScreen.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= CameraScreen.Width) + Width: =Max(App.Width, App.DesignWidth) + + Camera1 As camera: + Camera: =0 + FocusedBorderColor: =Camera1.BorderColor + FocusedBorderThickness: =0 + Height: =704 + OnSelect: |- + =Set(ShowTakenImage, true); + Set(ShowImageSaved, false) + Width: =1291 + X: =75 + Y: =64 + ZIndex: =7 + + TakenPhoto As image: + FocusedBorderColor: =TakenPhoto.BorderColor + FocusedBorderThickness: =0 + Height: =704 + HoverBorderColor: =ColorFade(TakenPhoto.BorderColor, 20%) + HoverFill: =ColorFade(TakenPhoto.Fill, 20%) + Image: =Camera1.Photo + PressedBorderColor: =ColorFade(TakenPhoto.BorderColor, -20%) + PressedFill: =ColorFade(TakenPhoto.Fill, -20%) + Visible: =ShowTakenImage + Width: =1291 + X: =75 + Y: =64 + ZIndex: =8 + + CameraNavBar As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =16 + + AppLogo3 As image: + DisplayMode: =DisplayMode.View + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =AppLogo3.BorderColor + Height: =66 + HoverBorderColor: =ColorFade(AppLogo3.BorderColor, 20%) + HoverFill: =ColorFade(AppLogo3.Fill, 20%) + Image: ='nav-logo' + ImagePosition: =ImagePosition.Center + PressedBorderColor: =ColorFade(AppLogo3.BorderColor, -20%) + PressedFill: =ColorFade(AppLogo3.Fill, -20%) + Width: =75 + ZIndex: =2 + + HomeMenuBkg_3 As rectangle: + DisabledFill: =HomeMenuBkg_3.Fill + Fill: =RGBA(74, 91, 104, 1) + FocusedBorderColor: =HomeMenuBkg_3.BorderColor + Height: =702 + HoverFill: =HomeMenuBkg_3.Fill + PressedFill: =HomeMenuBkg_3.Fill + Width: =75 + Y: =66 + ZIndex: =3 + + NavHome3 As image: + Fill: =RGBA(44, 48, 52, 0) + FocusedBorderColor: =NavHome3.BorderColor + Height: =NavHome3.Width + HoverBorderColor: =ColorFade(NavHome3.BorderColor, 20%) + HoverFill: =ColorFade(HomeMenuBkg_3.Fill, 20%) + Image: ='nav-notes' + ImagePosition: =ImagePosition.Center + OnSelect: =Navigate(HomeScreen, None) + PressedBorderColor: =ColorFade(NavHome3.BorderColor, -20%) + PressedFill: =ColorFade(NavHome3.Fill, -20%) + Width: =HomeMenuBkg_3.Width + Y: =66 + ZIndex: =4 + + NavSketch3 As image: + FocusedBorderColor: =NavSketch3.BorderColor + Height: =NavSketch3.Width + HoverBorderColor: =ColorFade(NavSketch3.BorderColor, 20%) + HoverFill: =ColorFade(HomeMenuBkg_3.Fill, 20%) + Image: ='nav-sketch' + ImagePosition: =ImagePosition.Center + OnSelect: =Navigate(SketchScreen, None) + PressedBorderColor: =ColorFade(NavSketch3.BorderColor, -20%) + PressedFill: =ColorFade(NavSketch3.Fill, -20%) + Width: =HomeMenuBkg_3.Width + Y: =141 + ZIndex: =5 + + NavPhotos3 As image: + Fill: =RGBA(44, 48, 52, 1) + FocusedBorderColor: =NavPhotos3.BorderColor + Height: =NavPhotos3.Width + HoverBorderColor: =ColorFade(NavPhotos3.BorderColor, 20%) + HoverFill: =NavPhotos3.Fill + Image: ='nav-camera' + ImagePosition: =ImagePosition.Center + PressedBorderColor: =ColorFade(NavPhotos3.BorderColor, -20%) + PressedFill: =ColorFade(NavPhotos3.Fill, -20%) + Width: =HomeMenuBkg_3.Width + Y: =216 + ZIndex: =6 + + CameraBanner As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =16 + + BannerBackground1 As rectangle: + DisabledFill: =BannerBackground1.Fill + Fill: =RGBA(234, 237, 239, 1) + FocusedBorderColor: =BannerBackground1.BorderColor + Height: =66 + HoverFill: =BannerBackground1.Fill + PressedFill: =BannerBackground1.Fill + Width: =1366 + ZIndex: =1 + + BannerText As label: + Align: =Center + FocusedBorderColor: =BannerText.BorderColor + FontWeight: =Semibold + Height: =23 + HoverBorderColor: =BannerText.BorderColor + HoverColor: =BannerText.Color + HoverFill: =BannerText.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =BannerText.BorderColor + PressedColor: =BannerText.Color + PressedFill: =BannerText.Fill + Text: =If(ShowTakenImage, "Keep or discard this image?", ShowImageSaved, "Saved!", "Tap the image to take a photo") + Width: =315 + X: =If(ShowTakenImage, 440, Parent.Width/2 - BannerText.Width/2) + Y: =19 + ZIndex: =9 + + SaveConfirm1 As icon.Check: + Color: =RGBA(96, 181, 2, 1) + DisabledFill: =SaveConfirm1.Fill + FocusedBorderColor: =SaveConfirm1.BorderColor + Height: =22 + HoverBorderColor: =ColorFade(SaveConfirm1.BorderColor, 20%) + HoverColor: =ColorFade(SaveConfirm1.Color, 20%) + HoverFill: =SaveConfirm1.Fill + Icon: =Icon.Check + PressedBorderColor: =ColorFade(SaveConfirm1.BorderColor, -20%) + PressedColor: =ColorFade(SaveConfirm1.Color, -20%) + PressedFill: =SaveConfirm1.Fill + Visible: =ShowTakenImage + Width: =22 + X: =SaveConfirm2.X+7 + Y: =SaveConfirm2.Y+6 + ZIndex: =10 + + SaveConfirm2 As circle: + BorderColor: =SaveConfirm1.Color + BorderThickness: =2 + DisabledFill: =SaveConfirm2.Fill + Fill: =RGBA(62,96,170,0) + FocusedBorderColor: =SaveConfirm2.BorderColor + Height: =36 + HoverFill: =SaveConfirm2.Fill + OnSelect: |- + =/*Store photos in Photos collection*/ + Set(PhotoNumber, PhotoNumber + 1); + Collect(Photos, {Image:Camera1.Photo, Name: "Photo" & PhotoNumber & ".jpg"}); + Set(ShowImageSaved, true); + Set(ShowTakenImage,false) + PressedFill: =SaveConfirm2.Fill + Visible: =ShowTakenImage + Width: =36 + X: =BannerText.X + BannerText.Width+9 + Y: =15 + ZIndex: =11 + + DiscardConfirm1 As icon.Cancel: + Color: =RGBA(208, 5, 30, 1) + DisabledFill: =DiscardConfirm1.Fill + FocusedBorderColor: =DiscardConfirm1.BorderColor + Height: =22 + HoverBorderColor: =ColorFade(DiscardConfirm1.BorderColor, 20%) + HoverColor: =ColorFade(DiscardConfirm1.Color, 20%) + HoverFill: =DiscardConfirm1.Fill + Icon: =Icon.Cancel + PressedBorderColor: =ColorFade(DiscardConfirm1.BorderColor, -20%) + PressedColor: =ColorFade(DiscardConfirm1.Color, -20%) + PressedFill: =DiscardConfirm1.Fill + Visible: =ShowTakenImage + Width: =22 + X: =834 + Y: =23 + ZIndex: =12 + + DiscardConfirm2 As circle: + BorderColor: =DiscardConfirm1.Color + BorderThickness: =2 + DisabledFill: =DiscardConfirm2.Fill + Fill: =RGBA(62,96,170,0) + FocusedBorderColor: =DiscardConfirm2.BorderColor + Height: =36 + HoverFill: =DiscardConfirm2.Fill + OnSelect: =Set(ShowTakenImage, false) + PressedFill: =DiscardConfirm2.Fill + Visible: =ShowTakenImage + Width: =36 + X: =827 + Y: =15 + ZIndex: =13 + + SavedIndicator3 As icon.Check: + Color: =RGBA(96, 181, 2, 1) + DisabledFill: =SavedIndicator3.Fill + FocusedBorderColor: =SavedIndicator3.BorderColor + Height: =22 + HoverBorderColor: =ColorFade(SavedIndicator3.BorderColor, 20%) + HoverColor: =ColorFade(SavedIndicator3.Color, 20%) + HoverFill: =SavedIndicator3.Fill + Icon: =Icon.Check + PressedBorderColor: =ColorFade(SavedIndicator3.BorderColor, -20%) + PressedColor: =ColorFade(SavedIndicator3.Color, -20%) + PressedFill: =SavedIndicator3.Fill + Visible: =ShowImageSaved + Width: =22 + X: =614 + Y: =20 + ZIndex: =14 + + SavedIndicator4 As circle: + BorderColor: =SavedIndicator3.Color + BorderThickness: =2 + DisabledFill: =SavedIndicator4.Fill + Fill: =RGBA(62,96,170,0) + FocusedBorderColor: =SavedIndicator4.BorderColor + Height: =36 + HoverFill: =SavedIndicator4.Fill + OnSelect: = + PressedFill: =SavedIndicator4.Fill + Visible: =ShowImageSaved + Width: =36 + X: =607 + Y: =14 + ZIndex: =15 + diff --git a/example/src/meetingcapturedemo/Src/CollectionsAndVariables.fx.yaml b/example/src/meetingcapturedemo/Src/CollectionsAndVariables.fx.yaml new file mode 100644 index 0000000..dc2111f --- /dev/null +++ b/example/src/meetingcapturedemo/Src/CollectionsAndVariables.fx.yaml @@ -0,0 +1,133 @@ +CollectionsAndVariables As screen: + Height: =Max(App.Height, App.DesignHeight) + OnVisible: |- + =/*This screen lists all collections and variables used inside the app + */ + Orientation: =If(CollectionsAndVariables.Width < CollectionsAndVariables.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= CollectionsAndVariables.Width) + Width: =Max(App.Width, App.DesignWidth) + + Label1 As label: + Align: =Center + Fill: =RGBA(236, 236, 236, 1) + FocusedBorderColor: =Label1.BorderColor + FontWeight: =Semibold + Height: =80 + HoverBorderColor: =Label1.BorderColor + HoverColor: =Label1.Color + HoverFill: =Label1.Fill + PressedBorderColor: =Label1.BorderColor + PressedColor: =Label1.Color + PressedFill: =Label1.Fill + Text: ="Collections and Variables" + Width: =1366 + ZIndex: =1 + + Label2 As label: + Align: =Center + FocusedBorderColor: =Label2.BorderColor + FontWeight: =Bold + HoverBorderColor: =Label2.BorderColor + HoverColor: =Label2.Color + HoverFill: =Label2.Fill + PressedBorderColor: =Label2.BorderColor + PressedColor: =Label2.Color + PressedFill: =Label2.Fill + Text: ="Collections" + Width: =1366 + Y: =80 + ZIndex: =2 + + HtmlText1 As htmlViewer: + Height: =(Parent.Height-160)/2 + HoverBorderColor: =HtmlText1.BorderColor + HtmlText: |- + ="

MeetingsOnly - Events less than 6 hours in length (over next two days)

" & + "

AllFutureEvents - All Events in the next two days

" & + "

MeetingAttendees - List of meeting's attendees

" & + "

MeetingAttendeesTemp - Temporary collection of meeting attendees with improper schema

" & + "

MeetingAttendeeEmails - Email addresses of meeting attendees

" & + "

PlannerBuckets - List of Buckets of selected Plan in Planner

" & + "

PlannerPlans - List of Plans in Planner

" & + "

Tasks - Tasks created during a meeting

" & + "

Sketches - Sketches created during a meeting

" & + "

Photos - Photos captured during a meeting

" & + "

EmailRecipients - List of users who will receive an email about a meeting

" & + "

OneNoteSections - List of Sections of selected NoteBook in OneNote

" & + "

OneNoteBooks - List of NoteBooks in OneNote

" & + "

EmailAttachments - All images taken in app that are attached to exported emails (Photo + Sketches)

"& + "

FollowUpMeetingAttendees - List of attendees for the follow up meeting

" & + "

HoursList - List of times for dropdown menu

" & + "

MeetingDurations - Duration of the meeting

" & + "

TemplateData - Data to be injected into the OneNote and Email templates

" & + "

Templates - OneNote and Email templates

" & + "

MeetingTimes - List of available times for meeting

" & + "

Indexes - Temporary list to mark indexes of attendees list in Export screen

" + PressedBorderColor: =HtmlText1.BorderColor + Width: =1342 + X: =24 + Y: =120 + ZIndex: =3 + + Label2_1 As label: + Align: =Center + FocusedBorderColor: =Label2_1.BorderColor + FontWeight: =Bold + HoverBorderColor: =Label2_1.BorderColor + HoverColor: =Label2_1.Color + HoverFill: =Label2_1.Fill + PressedBorderColor: =Label2_1.BorderColor + PressedColor: =Label2_1.Color + PressedFill: =Label2_1.Fill + Text: ="Variables" + Width: =1366 + Y: =424 + ZIndex: =4 + + HtmlText1_1 As htmlViewer: + Height: =(Parent.Height-160)/2 + HoverBorderColor: =HtmlText1_1.BorderColor + HtmlText: |- + ="

MyCalendarID - ID of user's Outlook calendar

" & + "

MyUserProfile - Id of the user who opened the PowerApp

" & + "

MyDomain - Email domain of signed in user

" & + "

HomeTimerStart - When app is opened

" & + "

NumberOfCurrentMeetings - Number of meetings in progress

" & + "

AutoSelectMeeting - Whether meeting has been autoselected (if user has 1 meeting that is current, true, else false)

" & + "

SelectedMeeting - All meeting details for the currently selected meeting

" & + "

ExportConfirmed - true/false. Whether user confirmed meeting capture export

" & + "

FollowUpConfirmed - true/false. Whether user confirmed a follow up appointment

" & + "

EmailConfirmed - true/false. Whether user confirmed sending an email from app.

" & + "

ShowDataLossWarning - true/false. Whether to display first entry modal dialogue.

" & + "

Loading - true/false. Triggers 'loading' messages while retrieving user data.

" & + "

ShowOverlay - true/false. Whether to show modal overlay.

" & + "

AttachmentDeleteConfirm - true/false. Whether user confirmed attachment deletion.

" & + "

SelectedImage - The currently selected image.

" & + "

ShowImageSaved - true/false. Triggers 'save successful' dialogue for photo screen

" & + "

ShowTakenImage - true/false. Whether to show the user the most recently captured image on photo screen.

" & + "

PhotoNumber - The current count of photos taken.

" & + "

ShowSketchSavedtrue/false. Triggers 'save successful' dialogue for sketch screen.

" & + "

SketchNumber - The current count of sketches taken.

" & + "

SelectedMeetingDuration - Duration of selected meeting in seconds.

" & + "

SecondsRemain - Time from now until meeting ends in seconds

" & + "

ProgressBarPosition - Calculated value to determine progress bar's width.

" & + "

MultiRecipients - true/false. Whether email taken from home screen has multiple recipients. Determines visibility of elements on email screen

" & + "

SelectedUserTasks - The user assigned the selected task from the task gallery on home page

" & + "

UserSelectedFromTasks - true/false. Whether the selected user comes from the tasks gallery.

" & + "

SelectedTask - Task selected from task gallery.

" & + "

SelectedUser - User selected from modal on home page.

" & + "

SelectedNoteBook - The selected OneNote book

" & + "

SelectedSection - The selected OneNote section

" & + "

ShowOneNote - true/false. Whether the OneNote dialogue should be shown in export modal.

" & + "

SelectedPlan - The selected Planner plan

" & + "

SelectedBucket - The selected Planner bucket

" & + "

ShowPlanner - true/false. Whether planner dialogue should be shown in export modal.

" & + "

FollowUpStart - Start time of selected follow up meeting

" & + "

FollowUpEnd - End time of selected follow up meeting

" & + "

ShowMeetingTimes - true/false. Whether to show available meeting times.

" + PressedBorderColor: =HtmlText1_1.BorderColor + Width: =1342 + X: =24 + Y: =464 + ZIndex: =5 + diff --git a/example/src/meetingcapturedemo/Src/ConfirmScreen.fx.yaml b/example/src/meetingcapturedemo/Src/ConfirmScreen.fx.yaml new file mode 100644 index 0000000..2f3dde2 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/ConfirmScreen.fx.yaml @@ -0,0 +1,222 @@ +ConfirmScreen As screen: + Height: =Max(App.Height, App.DesignHeight) + OnVisible: |- + =/*Export confirmation screen + Once the export is completed another meeting can be scheduled with the attendees. + */ + If(ExportConfirmed, + Set(Loading, true); + + /*Collects the dynamic data which will be substituted into the Email/OneNote templates and associates it to the {placeholder} values in the templates + At {Field: "{1}" at changed to because OneNote stopped displaying the export content with the inline style content present + */ + If(CheckEmail.Value || CheckOneNote.Value, + ClearCollect(TemplateData, {Field:"{MeetingName}", Data:SelectedMeeting.Subject}, {Field: "{MeetingStartDate}", Data: Text(SelectedMeeting.Start, "[$-en-US]mmm. dd, yyyy")}, + {Field: "{MeetingStartTime}", Data: Lower(Text(SelectedMeeting.Start, "[$-en-US]hh:mm am/pm"))}, {Field: "{MeetingEndTime}", Data: Lower(Text(SelectedMeeting.End, "[$-en-US]hh:mm am/pm"))}, + {Field: "{MeetingMinutes}", Data: Text(SelectedMeetingDuration/60)}, {Field: "{MeetingAttendeeNum}", Data: Text(CountRows(MeetingAttendees))}, + {Field: "{1}", + Data: Concat( + GroupBy( + ForAll(MeetingAttendees, + Collect(Indexes, {Index:Last(Indexes).Index + 1}); + {Page:RoundDown(Last(Indexes).Index / 3,0), + Id:Id, + DisplayName:DisplayName, + JobTitle:JobTitle} + ), + "Page","Attendees"),"" & Concat(Attendees,"" & DisplayName & "") & If(CountRows(Attendees)=2,"",CountRows(Attendees)=1, + "") & "" & Concat(Attendees,"" & JobTitle & "") & If(CountRows(Attendees)=2, + "",CountRows(Attendees)=1,"") & "")}, + {Field: "{MeetingDetails}", Data:MeetingBody.HtmlText}, {Field: "{MeetingNotes}", Data: Substitute(NotesInput.Text, Char(10), "
")}, + {Field: "{2}", Data: Concat(Tasks,"
" & Name & "" & If(IsBlank(DueDate),"","Due " & If(IsToday(DueDate),"Today",Text(DueDate,"[$-en-US]mmm d"))) & "
" & AssignToUser.DisplayName & "
")}) + ); + + /*Creates planner tasks based on the Tasks collection*/ + If(CheckPlanner.Value,ForAll(Tasks,Planner.CreateTask(SelectedPlan.'data-ADB4D7A662F548B49FAC2B986E348A1Bid',Name,{bucketId:SelectedBucket.'data-ADB4D7A662F548B49FAC2B986E348A1Bid',dueDateTime:AssnTaskDueDate_1,assignments:AssignToUser.Id}))); + /*combines photos and sketches into a single email attachments collection*/ + If(CheckEmail.Value, + ForAll(Photos, Collect(EmailAttachments, {ContentBytes: Image, Image: Image, Name: Name})); + ForAll(Sketches, Collect(EmailAttachments, {ContentBytes: Image, Image: Image, Name: Name})); + /*replaces {placeholder} values for Email template with dynamic data collected from user's input as they progress through app*/ + ForAll(TemplateData, Patch(Templates, LookUp(Templates, Template="Email"), {Value: Substitute(LookUp(Templates, Template="Email").Value, Field, Data)})); + Office365Outlook.SendEmail(Concat(EmailRecipients, UserPrincipalName & ";"), SelectedMeeting.Subject, LookUp(Templates, Template="Email").Value, {Attachments: EmailAttachments, Importance: "Normal", IsHtml: true} + ) + ); + If(CheckOneNote.Value, + /*replaces {placeholder} values for OneNote template with dynamic data collected from user's input as they progress through app*/ + ForAll(TemplateData, Patch(Templates, LookUp(Templates, Template="OneNote"), {Value: Substitute(LookUp(Templates, Template="OneNote").Value, Field, Data)})); + 'OneNote(Business)'.CreatePageInSection(SelectedNoteBook.'data-ADB4D7A662F548B49FAC2B986E348A1BKey', SelectedSection.'data-ADB4D7A662F548B49FAC2B986E348A1BpagesUrl', LookUp(Templates, Template="OneNote").Value) + ); + + Set(Loading, false) + ) + Orientation: =If(ConfirmScreen.Width < ConfirmScreen.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= ConfirmScreen.Width) + Width: =Max(App.Width, App.DesignWidth) + + ConfirmHeader As label: + Align: =Center + Fill: =RGBA(234, 237, 239, 1) + FocusedBorderColor: =ConfirmHeader.BorderColor + FontWeight: =Semibold + Height: =AppLogo4.Height + 1 + HoverBorderColor: =ConfirmHeader.BorderColor + HoverColor: =ConfirmHeader.Color + HoverFill: =ConfirmHeader.Fill + PressedBorderColor: =ConfirmHeader.BorderColor + PressedColor: =ConfirmHeader.Color + PressedFill: =ConfirmHeader.Fill + Size: =12 + Text: =SelectedMeeting.Subject + Width: =1366 + ZIndex: =1 + + AppLogo6 As image: + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =AppLogo6.BorderColor + Height: =66 + HoverBorderColor: =ColorFade(AppLogo6.BorderColor, 20%) + HoverFill: =ColorFade(AppLogo6.Fill, 20%) + Image: ='nav-logo' + ImagePosition: =ImagePosition.Center + PressedBorderColor: =ColorFade(AppLogo6.BorderColor, -20%) + PressedFill: =ColorFade(AppLogo6.Fill, -20%) + Width: =75 + ZIndex: =2 + + ConfirmPrev As icon.ArrowLeft: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =ConfirmPrev.Fill + FocusedBorderColor: =ConfirmPrev.BorderColor + Height: =40 + HoverBorderColor: =ColorFade(ConfirmPrev.BorderColor, 20%) + HoverColor: =ColorFade(ConfirmPrev.Color, 20%) + HoverFill: =ConfirmPrev.Fill + Icon: =Icon.ArrowLeft + OnSelect: =Navigate(HomeScreen, None) + PaddingBottom: =9 + PaddingLeft: =9 + PaddingRight: =9 + PaddingTop: =9 + PressedBorderColor: =ColorFade(ConfirmPrev.BorderColor, -20%) + PressedColor: =ColorFade(ConfirmPrev.Color, -20%) + PressedFill: =ConfirmPrev.Fill + Visible: =EmailConfirmed + Width: =40 + X: =93+0 + Y: =13+0 + ZIndex: =3 + + ConfirmSubHeader As label: + FocusedBorderColor: =ConfirmSubHeader.BorderColor + FontWeight: =Lighter + Height: =49 + HoverBorderColor: =ConfirmSubHeader.BorderColor + HoverColor: =ConfirmSubHeader.Color + HoverFill: =ConfirmSubHeader.Fill + PressedBorderColor: =ConfirmSubHeader.BorderColor + PressedColor: =ConfirmSubHeader.Color + PressedFill: =ConfirmSubHeader.Fill + Size: =27 + Text: =If(EmailConfirmed, "Your email has been sent.", FollowUpConfirmed, "Invitations have been sent!", Loading, "Working on export", "Export Complete!") + Width: =1251 + X: =70+0 + Y: =115+0 + ZIndex: =4 + + Rectangle6_1 As rectangle: + DisabledFill: =Rectangle6_1.Fill + Fill: =RGBA(227, 227, 227, 1) + FocusedBorderColor: =Rectangle6_1.BorderColor + FocusedBorderThickness: =0 + Height: =1 + HoverFill: =Rectangle6_1.Fill + PressedFill: =Rectangle6_1.Fill + Width: =ConfirmSubHeader.Width + X: =ConfirmSubHeader.X + Y: =ConfirmSubHeader.Y + ConfirmSubHeader.Height + 20 + ZIndex: =5 + + FollowUpButton As button: + BorderColor: =ColorFade(FollowUpButton.Fill, -15%) + DisabledBorderColor: =ColorFade(FollowUpButton.BorderColor, 70%) + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =FollowUpButton.BorderColor + Height: =44 + HoverBorderColor: =ColorFade(FollowUpButton.BorderColor, 20%) + HoverColor: =FollowUpButton.Color + HoverFill: =ColorFade(FollowUpButton.Fill, 20%) + OnSelect: =Navigate(FollowUpScreen, None) + PaddingBottom: =0 + PaddingLeft: =35 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =FollowUpButton.Fill + PressedColor: =FollowUpButton.Fill + PressedFill: =FollowUpButton.Color + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Size: =11 + Text: ="Schedule a follow up meeting" + Visible: =!FollowUpConfirmed + Width: =350 + X: =70 + Y: =214 + ZIndex: =6 + + FollowUpIcon As image: + FocusedBorderColor: =FollowUpIcon.BorderColor + Height: =28 + HoverBorderColor: =ColorFade(FollowUpIcon.BorderColor, 20%) + HoverFill: =ColorFade(FollowUpIcon.Fill, 20%) + Image: =calendar + OnSelect: =Select(FollowUpButton) + PressedBorderColor: =ColorFade(FollowUpIcon.BorderColor, -20%) + PressedFill: =ColorFade(FollowUpIcon.Fill, -20%) + Visible: =!FollowUpConfirmed + Width: =28 + X: =93 + Y: =FollowUpButton.Y + FollowUpButton.Height/2 - FollowUpIcon.Height/2 + ZIndex: =7 + + NewMeetingText As label: + Color: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =NewMeetingText.BorderColor + Height: =27 + HoverBorderColor: =NewMeetingText.BorderColor + HoverColor: =NewMeetingText.Color + HoverFill: =NewMeetingText.Fill + OnSelect: =Navigate(WelcomeScreen, None) + PressedBorderColor: =NewMeetingText.BorderColor + PressedColor: =NewMeetingText.Color + PressedFill: =NewMeetingText.Fill + Size: =10.5 + Text: ="Capture another meeting" + Visible: =!EmailConfirmed + Width: =300 + X: =70 + Y: =319 + ZIndex: =8 + + NewMeetingIcon As icon.ArrowRight: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =NewMeetingIcon.Fill + FocusedBorderColor: =NewMeetingIcon.BorderColor + FocusedBorderThickness: =0 + Height: =36 + HoverBorderColor: =ColorFade(NewMeetingIcon.BorderColor, 20%) + HoverColor: =ColorFade(NewMeetingIcon.Color, 20%) + HoverFill: =NewMeetingIcon.Fill + Icon: =Icon.ArrowRight + OnSelect: =Navigate(WelcomeScreen, None) + PressedBorderColor: =ColorFade(NewMeetingIcon.BorderColor, -20%) + PressedColor: =ColorFade(NewMeetingIcon.Color, -20%) + PressedFill: =NewMeetingIcon.Fill + Visible: =!EmailConfirmed + Width: =36 + X: =281 + Y: =315 + ZIndex: =9 + diff --git a/example/src/meetingcapturedemo/Src/EditorState/App.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/App.editorstate.json new file mode 100644 index 0000000..6356089 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/App.editorstate.json @@ -0,0 +1,98 @@ +{ + "App": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "MinScreenHeight", + "MinScreenWidth", + "ConfirmExit", + "SizeBreakpoints", + "BackEnabled", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnStart", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "App", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ConfirmExit", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BackEnabled", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "MinScreenHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "MinScreenWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnStart", + "RuleProviderType": "Unknown" + }, + { + "Category": "ConstantData", + "PropertyName": "SizeBreakpoints", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "AppConditional0": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "App_INTERNAL_PROPERTY_NAME_0", + "App_INTERNAL_PROPERTY_NAME_1" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AppConditional0", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "App_INTERNAL_PROPERTY_NAME_0", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "App_INTERNAL_PROPERTY_NAME_1", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/AttachmentsScreen.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/AttachmentsScreen.editorstate.json new file mode 100644 index 0000000..753cc81 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/AttachmentsScreen.editorstate.json @@ -0,0 +1,5668 @@ +{ + "AppLogo5": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AppLogo5", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "AttachmentPhoto": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.ContentBytes", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "OnSelect", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttachmentPhoto", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "AttachmentsBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttachmentsBanner", + "ParentIndex": 23, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "AttachmentsHeader": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttachmentsHeader", + "ParentIndex": 7, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AttachmentsModal": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttachmentsModal", + "ParentIndex": 26, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "AttachmentsPhotos": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttachmentsPhotos", + "ParentIndex": 24, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "AttachmentsPrevScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttachmentsPrevScreen", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "AttachmentsScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Fill", + "ImagePosition", + "Height", + "Width", + "LoadingSpinner", + "LoadingSpinnerColor", + "Size", + "Orientation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnVisible", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttachmentsScreen", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnVisible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + }, + "AttachmentsSketches": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttachmentsSketches", + "ParentIndex": 25, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "AttachmentToDelete": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttachmentToDelete", + "ParentIndex": 6, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "CancelDeleteAttach": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button5.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "674", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "CancelDeleteAttach", + "ParentIndex": 18, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "ConfirmDeleteAttach": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button5_1.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "674", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ConfirmDeleteAttach", + "ParentIndex": 19, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "DeleteAttachment1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DeleteAttachment1", + "ParentIndex": 21, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCircleStyle", + "Type": "ControlInfo" + }, + "DeleteCertaintyText": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DeleteCertaintyText", + "ParentIndex": 20, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "galleryTemplate5": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate5", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "galleryTemplate5_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate5_1", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HideDelete1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "919", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "216", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "64", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "64", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HideDelete1", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "HideDelete2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HideDelete2", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCircleStyle", + "Type": "ControlInfo" + }, + "icon15": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "64", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "64", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "icon15", + "ParentIndex": 22, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "ModalOverlay_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + "Width", + "Height", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ModalOverlay_1", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "PhotosCount": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PhotosCount", + "ParentIndex": 11, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "PhotosGallery": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "TemplateSize", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplatePadding", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate5", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PhotosGallery", + "ParentIndex": 12, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "PhotosHeader": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PhotosHeader", + "ParentIndex": 10, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "PhotosIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PhotosIcon", + "ParentIndex": 9, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "Rectangle2_5": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + "Width", + "Height", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle2_5", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "Rectangle6_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "75", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "164", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "1241", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle6_2", + "ParentIndex": 8, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "Rectangle6_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "75", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "164", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "1241", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle6_3", + "ParentIndex": 13, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "SketchCount": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SketchCount", + "ParentIndex": 16, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "SketchesGallery": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "TemplateSize", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplatePadding", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate5_1", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SketchesGallery", + "ParentIndex": 17, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "SketchesHeader": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SketchesHeader", + "ParentIndex": 15, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "SketchesIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SketchesIcon", + "ParentIndex": 14, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "SketchImage": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.ContentBytes", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "OnSelect", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SketchImage", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/CameraScreen.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/CameraScreen.editorstate.json new file mode 100644 index 0000000..02ee0fb --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/CameraScreen.editorstate.json @@ -0,0 +1,2963 @@ +{ + "AppLogo3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AppLogo3", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "BannerBackground1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + "Width", + "Height", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "BannerBackground1", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "BannerText": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "BannerText", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Camera1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "-1", + "InvariantPropertyName": "Camera", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Camera1", + "ParentIndex": 9, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Camera", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "CameraBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "CameraBanner", + "ParentIndex": 16, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "CameraNavBar": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "CameraNavBar", + "ParentIndex": 15, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "CameraScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Fill", + "ImagePosition", + "Height", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnVisible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LoadingSpinner", + "LoadingSpinnerColor", + "Size", + "Orientation" + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "CameraScreen", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnVisible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + }, + "DiscardConfirm1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DiscardConfirm1", + "ParentIndex": 8, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "DiscardConfirm2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DiscardConfirm2", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCircleStyle", + "Type": "ControlInfo" + }, + "HomeMenuBkg_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + "Width", + "Height", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomeMenuBkg_3", + "ParentIndex": 11, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "NavHome3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Image3_9.Fill, 20%)", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NavHome3", + "ParentIndex": 12, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "NavPhotos3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Image3_11.Fill, 20%)", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NavPhotos3", + "ParentIndex": 14, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "NavSketch3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Image3_10.Fill, 20%)", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NavSketch3", + "ParentIndex": 13, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "SaveConfirm1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SaveConfirm1", + "ParentIndex": 7, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "SaveConfirm2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SaveConfirm2", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCircleStyle", + "Type": "ControlInfo" + }, + "SavedIndicator3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SavedIndicator3", + "ParentIndex": 6, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "SavedIndicator4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SavedIndicator4", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCircleStyle", + "Type": "ControlInfo" + }, + "TakenPhoto": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + "X", + "Y", + "Width", + "Height", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TakenPhoto", + "ParentIndex": 10, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/CollectionsAndVariables.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/CollectionsAndVariables.editorstate.json new file mode 100644 index 0000000..321715f --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/CollectionsAndVariables.editorstate.json @@ -0,0 +1,1072 @@ +{ + "CollectionsAndVariables": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Fill", + "ImagePosition", + "Height", + "Width", + "LoadingSpinner", + "LoadingSpinnerColor", + "Size", + "Orientation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnVisible", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "CollectionsAndVariables", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnVisible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + }, + "HtmlText1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "148", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "X", + "Y", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Show your HTML text here.\"", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HtmlText1", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HtmlText1_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "148", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "X", + "Y", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Show your HTML text here.\"", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HtmlText1_1", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "Label1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "Size", + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label1", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Label2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + "Size", + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label2", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Label2_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + "Size", + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label2_1", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/ConfirmScreen.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/ConfirmScreen.editorstate.json new file mode 100644 index 0000000..9da242a --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/ConfirmScreen.editorstate.json @@ -0,0 +1,2236 @@ +{ + "AppLogo6": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AppLogo6", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "ConfirmHeader": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "53", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ConfirmHeader", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "ConfirmPrev": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ConfirmPrev", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "ConfirmScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Fill", + "ImagePosition", + "Height", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnVisible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LoadingSpinner", + "LoadingSpinnerColor", + "Size", + "Orientation" + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ConfirmScreen", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnVisible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + }, + "ConfirmSubHeader": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ConfirmSubHeader", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "FollowUpButton": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpButton", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "FollowUpIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "222", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpIcon", + "ParentIndex": 6, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "NewMeetingIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NewMeetingIcon", + "ParentIndex": 7, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "NewMeetingText": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NewMeetingText", + "ParentIndex": 8, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Rectangle6_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "75", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "164", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "1241", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle6_1", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/EmailScreen.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/EmailScreen.editorstate.json new file mode 100644 index 0000000..65f0d5f --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/EmailScreen.editorstate.json @@ -0,0 +1,4403 @@ +{ + "AppLogo4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AppLogo4", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "BannerHeader": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "53", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "BannerHeader", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "EmailBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailBanner", + "ParentIndex": 13, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "EmailBannerText": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailBannerText", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "EmailDetails": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailDetails", + "ParentIndex": 14, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "EmailMessage": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text input\"", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "TextMode.SingleLine", + "InvariantPropertyName": "Mode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Format", + "DelayOutput", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VirtualKeyboardMode", + "EnableSpellCheck", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailMessage", + "ParentIndex": 12, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "DelayOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Format", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VirtualKeyboardMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableSpellCheck", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultTextStyle", + "Type": "ControlInfo" + }, + "EmailPrevScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailPrevScreen", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "EmailRecipientGallery": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplatePadding", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Layout", + "Transition", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "613", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "WrapCount", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate4", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailRecipientGallery", + "ParentIndex": 8, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "EmailRecipientImage": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailRecipientImage", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "EmailRecipientName": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "OnSelect", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button5.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Button5.Fill", + "InvariantPropertyName": "PressedColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Button5.Color", + "InvariantPropertyName": "PressedFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "160", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailRecipientName", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "EmailScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Fill", + "ImagePosition", + "Height", + "Width", + "LoadingSpinner", + "LoadingSpinnerColor", + "Size", + "Orientation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnVisible", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailScreen", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnVisible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + }, + "EmailSubject": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text input\"", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Mode", + "Format", + "DelayOutput", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VirtualKeyboardMode", + "EnableSpellCheck", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailSubject", + "ParentIndex": 10, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "DelayOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Format", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VirtualKeyboardMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableSpellCheck", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultTextStyle", + "Type": "ControlInfo" + }, + "GalleryBkg": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button6.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "612", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GalleryBkg", + "ParentIndex": 7, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "galleryTemplate4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate4", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "Label16": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label16", + "ParentIndex": 6, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Label16_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label16_1", + "ParentIndex": 9, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Label16_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label16_2", + "ParentIndex": 11, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Rectangle6": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "75", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "164", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "1241", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle6", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "RemoveEmailRecipient": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Select(Parent)", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "RemoveEmailRecipient", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "SendEmail": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SendEmail", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/ExportPopUpsScreen.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/ExportPopUpsScreen.editorstate.json new file mode 100644 index 0000000..818e731 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/ExportPopUpsScreen.editorstate.json @@ -0,0 +1,4823 @@ +{ + "ExportCancel_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button5.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportCancel_1", + "ParentIndex": 15, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "ExportConfirm_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button5_1.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportConfirm_1", + "ParentIndex": 16, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "ExportConfirmText_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LineHeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportConfirmText_1", + "ParentIndex": 10, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LineHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "ExportForeground_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportForeground_1", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "ExportModals_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportModals_1", + "ParentIndex": 18, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "ExportOverlay_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + "Width", + "Height", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportOverlay_1", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "ExportPopUpsScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Fill", + "ImagePosition", + "Height", + "Width", + "LoadingSpinner", + "LoadingSpinnerColor", + "Size", + "Orientation" + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportPopUpsScreen", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + }, + "Image2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + "X", + "Y", + "Width", + "Height", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Image2", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "Label4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label4", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Label4_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label4_1", + "ParentIndex": 14, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Label4_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label4_2", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Label4_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label4_3", + "ParentIndex": 7, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Label4_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label4_4", + "ParentIndex": 17, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "NotebookOrPlan_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "498", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NotebookOrPlan_1", + "ParentIndex": 6, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "OneNoteBookSelect_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DropDownSample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "SelectionColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronHoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "ChevronBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "ChevronHoverBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledBackground", + "SelectionFill", + "Color", + "HoverColor", + "PressedColor", + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "HoverBorderColor", + "PressedBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "489", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "333", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderThickness", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnChange", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AllowEmptySelection", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "OneNoteBookSelect_1", + "ParentIndex": 8, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "NameMap": "{\"Value\":\"FileName\"}", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AllowEmptySelection", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnChange", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultDropdownStyle", + "Type": "ControlInfo" + }, + "OverlayHeader_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "498", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "237", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "OverlayHeader_1", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "PlannerBucketSelect_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DropDownSample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "SelectionColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronHoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "ChevronBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "ChevronHoverBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledBackground", + "SelectionFill", + "Color", + "HoverColor", + "PressedColor", + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "HoverBorderColor", + "PressedBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderThickness", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AllowEmptySelection", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PlannerBucketSelect_1", + "ParentIndex": 13, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "NameMap": "{\"Value\":\"name\"}", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AllowEmptySelection", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultDropdownStyle", + "Type": "ControlInfo" + }, + "PlannerPlanSelect_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DropDownSample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "SelectionColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronHoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "ChevronBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "ChevronHoverBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledBackground", + "SelectionFill", + "Color", + "HoverColor", + "PressedColor", + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "HoverBorderColor", + "PressedBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "489", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "333", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderThickness", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnChange", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AllowEmptySelection", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PlannerPlanSelect_1", + "ParentIndex": 9, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "NameMap": "{\"Value\":\"title\"}", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AllowEmptySelection", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnChange", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultDropdownStyle", + "Type": "ControlInfo" + }, + "SectionOrBucket_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "498", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SectionOrBucket_1", + "ParentIndex": 11, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "SectionsSelect_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DropDownSample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "SelectionColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronHoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "ChevronBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "ChevronHoverBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledBackground", + "SelectionFill", + "Color", + "HoverColor", + "PressedColor", + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "HoverBorderColor", + "PressedBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderThickness", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AllowEmptySelection", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SectionsSelect_1", + "ParentIndex": 12, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "NameMap": "{\"Value\":\"name\"}", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AllowEmptySelection", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultDropdownStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/ExportScreen.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/ExportScreen.editorstate.json new file mode 100644 index 0000000..a67cd84 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/ExportScreen.editorstate.json @@ -0,0 +1,12670 @@ +{ + "AddAttendee": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AddAttendee", + "ParentIndex": 31, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AddUser": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AddUser", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "AppLogo7": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AppLogo7", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "AssnTaskIcon_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "606", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskIcon_1", + "ParentIndex": 34, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "AssnTaskSearchUser_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text input\"", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "TextMode.SingleLine", + "InvariantPropertyName": "Mode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Format", + "DelayOutput", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "247", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "320", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "BorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"\"", + "InvariantPropertyName": "HintText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VirtualKeyboardMode", + "EnableSpellCheck", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskSearchUser_1", + "ParentIndex": 33, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HintText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "DelayOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Format", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VirtualKeyboardMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableSpellCheck", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultTextStyle", + "Type": "ControlInfo" + }, + "AttendeeCount": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttendeeCount", + "ParentIndex": 22, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "CheckEmail": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "CheckmarkFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "CheckboxBackgroundFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "CheckboxBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Option\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "BorderStyle", + "FocusedBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "Color", + "DisabledColor", + "Fill", + "DisabledFill", + "Font", + "PressedColor", + "HoverColor", + "PressedFill", + "HoverFill", + "FontWeight", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "CheckboxSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "CheckEmail", + "ParentIndex": 12, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CheckboxSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CheckboxBackgroundFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CheckboxBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CheckmarkFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCheckboxStyle", + "Type": "ControlInfo" + }, + "CheckOneNote": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "CheckmarkFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "CheckboxBackgroundFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "CheckboxBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Option\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "BorderStyle", + "FocusedBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "Color", + "DisabledColor", + "Fill", + "DisabledFill", + "Font", + "PressedColor", + "HoverColor", + "PressedFill", + "HoverFill", + "FontWeight", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "268", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "CheckboxSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnUncheck", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "CheckOneNote", + "ParentIndex": 10, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CheckboxSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CheckboxBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CheckboxBackgroundFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CheckmarkFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnUncheck", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCheckboxStyle", + "Type": "ControlInfo" + }, + "CheckPlanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "CheckmarkFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "CheckboxBackgroundFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "CheckboxBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Option\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "BorderStyle", + "FocusedBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "Color", + "DisabledColor", + "Fill", + "DisabledFill", + "Font", + "PressedColor", + "HoverColor", + "PressedFill", + "HoverFill", + "FontWeight", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "443", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "CheckboxSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnUncheck", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "CheckPlanner", + "ParentIndex": 28, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CheckboxSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CheckboxBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CheckboxBackgroundFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CheckmarkFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnUncheck", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCheckboxStyle", + "Type": "ControlInfo" + }, + "DataLossWarnIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DataLossWarnIcon", + "ParentIndex": 9, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "DataLossWarnText": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DataLossWarnText", + "ParentIndex": 8, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "EmailExportDescript": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailExportDescript", + "ParentIndex": 17, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "EmailHeader": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailHeader", + "ParentIndex": 13, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "EmailIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "286", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailIcon", + "ParentIndex": 15, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "EmailRecipientsGallery": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "1", + "InvariantPropertyName": "WrapCount", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplatePadding", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "768", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "385", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate7", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "EmailRecipientsGallery", + "ParentIndex": 25, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "ExportBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportBanner", + "ParentIndex": 42, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "ExportBannerHeader": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportBannerHeader", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "ExportButton": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button8.BorderColor, 70%)", + "InvariantPropertyName": "DisabledBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(47, 41, 43, 1), 70%)", + "InvariantPropertyName": "DisabledColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportButton", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "ExportEmail": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportEmail", + "ParentIndex": 44, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "ExportIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportIcon", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "ExportMeetingSubject": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "53", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportMeetingSubject", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "ExportOneNote": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportOneNote", + "ParentIndex": 43, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "ExportPlanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportPlanner", + "ParentIndex": 45, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "ExportPrev": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportPrev", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "ExportQuestion": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + "Size", + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportQuestion", + "ParentIndex": 7, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "ExportScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Fill", + "ImagePosition", + "Height", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnVisible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LoadingSpinner", + "LoadingSpinnerColor", + "Size", + "Orientation" + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportScreen", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnVisible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + }, + "ExportToOneNote": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "345", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "28", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ExportToOneNote", + "ParentIndex": 18, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "galleryTemplate2_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "TemplateFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate2_3", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "galleryTemplate7": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate7", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "LoadingIndicator2_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "LoadingIndicator2_1", + "ParentIndex": 41, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "OfficePlanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "OfficePlanner", + "ParentIndex": 29, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "OneNoteDataLossDescript": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "OneNoteDataLossDescript", + "ParentIndex": 26, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "OneNoteDataLossWarn": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "OneNoteDataLossWarn", + "ParentIndex": 27, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "OneNoteExportDescript": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "OneNoteExportDescript", + "ParentIndex": 16, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "OneNoteExportLocation": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "206", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "346", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "OneNoteExportLocation", + "ParentIndex": 21, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "OneNoteHeader": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "OneNoteHeader", + "ParentIndex": 11, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "OneNoteIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "283", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "OneNoteIcon", + "ParentIndex": 14, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "PlannerExportDescript": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PlannerExportDescript", + "ParentIndex": 32, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "PlannerExportLocation": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "346", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PlannerExportLocation", + "ParentIndex": 38, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "PlannerExportTo": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "570", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "28", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PlannerExportTo", + "ParentIndex": 35, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "PlannerIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "507", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PlannerIcon", + "ParentIndex": 30, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "RecipientGalleryBkg": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button6_2.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "385", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "RecipientGalleryBkg", + "ParentIndex": 24, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "RecipientName1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "OnSelect", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button5_1.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Button5_1.Fill", + "InvariantPropertyName": "PressedColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Button5_1.Color", + "InvariantPropertyName": "PressedFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "160", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "RecipientName1", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "Rectangle6_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "75", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "1241", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle6_4", + "ParentIndex": 6, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "Rectangle7": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "56", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "98", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle7", + "ParentIndex": 19, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "Rectangle7_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "56", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "98", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle7_1", + "ParentIndex": 20, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "Rectangle7_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "56", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "98", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle7_2", + "ParentIndex": 36, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "Rectangle7_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "56", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "98", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle7_3", + "ParentIndex": 37, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "RemoveIcon1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Select(Parent)", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "RemoveIcon1", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "ResultDisplayName": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.aboutMe", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "VerticalAlign.Middle", + "InvariantPropertyName": "VerticalAlign", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ResultDisplayName", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "ResultImage": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "OnSelect", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ResultImage", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "ResultJobTitle": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.aboutMe", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ResultJobTitle", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "ShowOneNoteSelection": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button5.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "674", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ShowOneNoteSelection", + "ParentIndex": 23, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "ShowPlannerSelection": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button5.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "674", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ShowPlannerSelection", + "ParentIndex": 39, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "UserSearchResults": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "WrapCount", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplatePadding", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "353", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "243", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate2_3", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "UserSearchResults", + "ParentIndex": 40, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/FollowUpScreen.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/FollowUpScreen.editorstate.json new file mode 100644 index 0000000..5e546b1 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/FollowUpScreen.editorstate.json @@ -0,0 +1,6213 @@ +{ + "AddFollowUpAttendee": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AddFollowUpAttendee", + "ParentIndex": 12, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AppIcon7": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AppIcon7", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "FindAvailableTimesButton": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "118", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FindAvailableTimesButton", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "FollowUpAddDisplayName": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.aboutMe", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "VerticalAlign.Middle", + "InvariantPropertyName": "VerticalAlign", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpAddDisplayName", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "FollowUpAddImage": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "OnSelect", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpAddImage", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "FollowUpAddJobTitle": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.aboutMe", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpAddJobTitle", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "FollowUpAddUser": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpAddUser", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "FollowUpAttendee": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "OnSelect", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button5_2.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Button5_2.Fill", + "InvariantPropertyName": "PressedColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Button5_2.Color", + "InvariantPropertyName": "PressedFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "160", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpAttendee", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "FollowUpAttendeeCount": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Visible", + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpAttendeeCount", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "FollowUpAttendees": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpAttendees", + "ParentIndex": 17, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "FollowUpAttendeesGall": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "1", + "InvariantPropertyName": "WrapCount", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplatePadding", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "768", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Visible", + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate7_1", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpAttendeesGall", + "ParentIndex": 8, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "FollowUpBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpBanner", + "ParentIndex": 16, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "FollowUpDetails": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpDetails", + "ParentIndex": 18, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "FollowUpGallBkg": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button6_3.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpGallBkg", + "ParentIndex": 7, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "FollowUpHeader": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpHeader", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "FollowUpMessage": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text input\"", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "TextMode.SingleLine", + "InvariantPropertyName": "Mode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Format", + "DelayOutput", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VirtualKeyboardMode", + "EnableSpellCheck", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpMessage", + "ParentIndex": 11, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "DelayOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Format", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VirtualKeyboardMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableSpellCheck", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultTextStyle", + "Type": "ControlInfo" + }, + "FollowUpScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Fill", + "ImagePosition", + "Height", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnVisible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LoadingSpinner", + "LoadingSpinnerColor", + "Size", + "Orientation" + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpScreen", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnVisible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + }, + "FollowUpSearchIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "606", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + "Visible", + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpSearchIcon", + "ParentIndex": 14, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "FollowUpSearchText": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text input\"", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "TextMode.SingleLine", + "InvariantPropertyName": "Mode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Format", + "DelayOutput", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "247", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "320", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "BorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"\"", + "InvariantPropertyName": "HintText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Visible", + "VirtualKeyboardMode", + "EnableSpellCheck", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpSearchText", + "ParentIndex": 13, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "DelayOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "HintText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Format", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VirtualKeyboardMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableSpellCheck", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultTextStyle", + "Type": "ControlInfo" + }, + "FollowUpSearchUserResults": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "WrapCount", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplatePadding", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "353", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "243", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Visible", + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate2_4", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpSearchUserResults", + "ParentIndex": 15, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "FollowUpSubject": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text input\"", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Mode", + "Format", + "DelayOutput", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VirtualKeyboardMode", + "EnableSpellCheck", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpSubject", + "ParentIndex": 9, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "DelayOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Format", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VirtualKeyboardMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableSpellCheck", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultTextStyle", + "Type": "ControlInfo" + }, + "galleryTemplate2_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate2_4", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "galleryTemplate7_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate7_1", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "Label16_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label16_3", + "ParentIndex": 6, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Label16_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label16_4", + "ParentIndex": 10, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Rectangle2_8": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + "Width", + "Height", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle2_8", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "Rectangle6_5": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "75", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "164", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "1241", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle6_5", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "RemoveFollowUpAttendee": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Select(Parent)", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "RemoveFollowUpAttendee", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/FollowUpTimesScreen.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/FollowUpTimesScreen.editorstate.json new file mode 100644 index 0000000..ca69d68 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/FollowUpTimesScreen.editorstate.json @@ -0,0 +1,7178 @@ +{ + "AppIcon8": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AppIcon8", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "AttendeeAvailabilityText": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.EndTime", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.Color", + "InvariantPropertyName": "PressedColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.Color", + "InvariantPropertyName": "HoverColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.BorderColor", + "InvariantPropertyName": "PressedBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.BorderColor", + "InvariantPropertyName": "HoverBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.BorderColor", + "InvariantPropertyName": "FocusedBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.Fill", + "InvariantPropertyName": "PressedFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.Fill", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + "Size", + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttendeeAvailabilityText", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AvailableTimesGall": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "WrapCount", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "If(Gallery5.Layout = Layout.Horizontal, Min(280, Gallery5.Width - 60), Min(280, Gallery5.Height - 60))", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "TemplatePadding", + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + "Width", + "Height", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate6", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AvailableTimesGall", + "ParentIndex": 8, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "AvailableTimesSelect": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AvailableTimesSelect", + "ParentIndex": 19, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "CantAttend": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.EndTime", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.Color", + "InvariantPropertyName": "PressedColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.Color", + "InvariantPropertyName": "HoverColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.BorderColor", + "InvariantPropertyName": "PressedBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.BorderColor", + "InvariantPropertyName": "HoverBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.BorderColor", + "InvariantPropertyName": "FocusedBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.Fill", + "InvariantPropertyName": "PressedFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "AttendeeAvailability.Fill", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Font", + "FontWeight", + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "VerticalAlign.Middle", + "InvariantPropertyName": "VerticalAlign", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "CantAttend", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "DatePicker1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "DefaultDate", + "DateTimeZone", + "Format", + "StartYear", + "EndYear", + "IconFill", + "SelectedDateFill", + "HoverDateFill", + "CurrentDateFill", + "CalendarHeaderFill", + "MonthColor", + "WeekColor", + "DayColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "PressedBorderColor", + "HoverBorderColor", + "DisabledBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "Font", + "FontWeight", + "Color", + "DisabledColor", + "Width", + "Height", + "X", + "Y", + "DisplayMode", + "ZIndex", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "IsEditable", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "IconBackground", + "InputTextPlaceholder", + "StartOfWeek", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DatePicker1", + "ParentIndex": 7, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "DefaultDate", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "DateTimeZone", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Format", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "StartYear", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "EndYear", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "InputTextPlaceholder", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "StartOfWeek", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "IconFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectedDateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverDateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CurrentDateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CalendarHeaderFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "MonthColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "WeekColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DayColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "IsEditable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "IconBackground", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultDatePickerStyle", + "Type": "ControlInfo" + }, + "DateTimeSelection": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DateTimeSelection", + "ParentIndex": 18, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "FollowUpTimesBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpTimesBanner", + "ParentIndex": 17, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "FollowUpTimesHeader": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpTimesHeader", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "FollowUpTimesScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Fill", + "ImagePosition", + "Height", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnVisible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LoadingSpinner", + "LoadingSpinnerColor", + "Size", + "Orientation" + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "FollowUpTimesScreen", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnVisible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + }, + "galleryTemplate6": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "TemplateFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate6", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "galleryTemplate8": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate8", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HorizontalLine": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HorizontalLine", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "Label20_10": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Visible", + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label20_10", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Label20_12": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Visible", + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label20_12", + "ParentIndex": 9, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "Label20_13": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Visible", + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label20_13", + "ParentIndex": 14, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "LoadAvailableTimes": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button10_3.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "LoadAvailableTimes", + "ParentIndex": 16, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "LoadingIndicator3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "LoadingIndicator3", + "ParentIndex": 13, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "MeetingDurationSelection": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DropDownSample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "SelectionColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronHoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "ChevronBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "ChevronHoverBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledBackground", + "SelectionFill", + "Color", + "HoverColor", + "PressedColor", + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "HoverBorderColor", + "PressedBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderThickness", + "Size", + "Visible", + "AllowEmptySelection", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MeetingDurationSelection", + "ParentIndex": 15, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "NameMap": "{\"Value\":\"Name\"}", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AllowEmptySelection", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultDropdownStyle", + "Type": "ControlInfo" + }, + "MeetingEndRange": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DropDownSample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "SelectionColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronHoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "ChevronBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "ChevronHoverBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledBackground", + "SelectionFill", + "Color", + "HoverColor", + "PressedColor", + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "HoverBorderColor", + "PressedBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "333", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderThickness", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnChange", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Visible", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"1\"", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AllowEmptySelection", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MeetingEndRange", + "ParentIndex": 12, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "NameMap": "{\"Value\":\"Name\"}", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AllowEmptySelection", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnChange", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultDropdownStyle", + "Type": "ControlInfo" + }, + "MeetingStartRange": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DropDownSample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "SelectionColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(255,255,255,1), -5%)", + "InvariantPropertyName": "ChevronHoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "ChevronBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "ChevronHoverBackground", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ChevronDisabledBackground", + "SelectionFill", + "Color", + "HoverColor", + "PressedColor", + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "HoverBorderColor", + "PressedBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderThickness", + "Size", + "Visible", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"1\"", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AllowEmptySelection", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MeetingStartRange", + "ParentIndex": 11, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "NameMap": "{\"Value\":\"Name\"}", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AllowEmptySelection", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronHoverBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChevronDisabledBackground", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectionFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultDropdownStyle", + "Type": "ControlInfo" + }, + "Rectangle2_9": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + "Width", + "Height", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle2_9", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "Rectangle6_6": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "75", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "164", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "1241", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle6_6", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "SelectAvailableTime": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SelectAvailableTime", + "ParentIndex": 6, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "SelectFollowUpTime": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button10_4.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SelectFollowUpTime", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "SendInvite": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SendInvite", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "StartEndIndicator": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "0", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "56", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "StartEndIndicator", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCircleStyle", + "Type": "ControlInfo" + }, + "TimeLine": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplatePadding", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "ZIndex", + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate8", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TimeLine", + "ParentIndex": 10, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "TimeLineTimeText": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.Name", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "0", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "8", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TimeLineTimeText", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "TimeRangeSelected": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "Visible", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TimeRangeSelected", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "TimeTicks": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "41", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "OnSelect", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TimeTicks", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "UnableToAttend": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.EndTime", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "UnableToAttend", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "UnableToAttendIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "OnSelect", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "UnableToAttendIcon", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/HomePopUpsScreen.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/HomePopUpsScreen.editorstate.json new file mode 100644 index 0000000..0288b7d --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/HomePopUpsScreen.editorstate.json @@ -0,0 +1,8450 @@ +{ + "AssnTaskDateHeader_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "346", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskDateHeader_1", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AssnTaskDescription_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text input\"", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "TextMode.SingleLine", + "InvariantPropertyName": "Mode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Format", + "DelayOutput", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "247", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "320", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + "BorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VirtualKeyboardMode", + "EnableSpellCheck", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskDescription_1", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "DelayOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Format", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VirtualKeyboardMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableSpellCheck", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultTextStyle", + "Type": "ControlInfo" + }, + "AssnTaskDueDate_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Today()", + "InvariantPropertyName": "DefaultDate", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DateTimeZone", + "Format", + "StartYear", + "EndYear", + "IconFill", + "SelectedDateFill", + "HoverDateFill", + "CurrentDateFill", + "CalendarHeaderFill", + "MonthColor", + "WeekColor", + "DayColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "PressedBorderColor", + "HoverBorderColor", + "DisabledBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "Font", + "FontWeight", + "Color", + "DisabledColor", + "Width", + "Height", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "524", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "379", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "IsEditable", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "IconBackground", + "InputTextPlaceholder", + "StartOfWeek", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskDueDate_1", + "ParentIndex": 6, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "EndYear", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "StartYear", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Format", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "DateTimeZone", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "DefaultDate", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "InputTextPlaceholder", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "StartOfWeek", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DayColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "WeekColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "MonthColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CalendarHeaderFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CurrentDateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "IconFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "IsEditable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverDateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "SelectedDateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "IconBackground", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultDatePickerStyle", + "Type": "ControlInfo" + }, + "AssnTaskGallery_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "WrapCount", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplatePadding", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "524", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "243", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate2_5", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskGallery_2", + "ParentIndex": 10, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "AssnTaskGallery_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "WrapCount", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplatePadding", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "353", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "243", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate2_6", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskGallery_3", + "ParentIndex": 11, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "AssnTaskHeader_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "469", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "146", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "428", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskHeader_1", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AssnTaskSearchIcon_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "542", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "606", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskSearchIcon_1", + "ParentIndex": 21, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "AssnTaskSearchUser_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text input\"", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "TextMode.SingleLine", + "InvariantPropertyName": "Mode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Format", + "DelayOutput", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "247", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "320", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "BorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"\"", + "InvariantPropertyName": "HintText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VirtualKeyboardMode", + "EnableSpellCheck", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskSearchUser_2", + "ParentIndex": 20, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HintText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "DelayOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Format", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VirtualKeyboardMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableSpellCheck", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultTextStyle", + "Type": "ControlInfo" + }, + "AssnTaskToHeader_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "524", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "432", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskToHeader_1", + "ParentIndex": 8, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AssnTaskUserImg_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "OnSelect", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskUserImg_3", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "AssnTaskUserImg_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "OnSelect", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskUserImg_4", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "AssnTaskUserImg_5": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Select(Parent)", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskUserImg_5", + "ParentIndex": 14, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "AssnTaskUserJob_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.aboutMe", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskUserJob_3", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AssnTaskUserJob_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.aboutMe", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskUserJob_4", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AssnTaskUserJob_5": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.aboutMe", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Select(Parent)", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskUserJob_5", + "ParentIndex": 19, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AssnTaskUserName_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.aboutMe", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "VerticalAlign.Middle", + "InvariantPropertyName": "VerticalAlign", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskUserName_3", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AssnTaskUserName_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.aboutMe", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "VerticalAlign.Middle", + "InvariantPropertyName": "VerticalAlign", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskUserName_4", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AssnTaskUserName_5": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.aboutMe", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "VerticalAlign.Middle", + "InvariantPropertyName": "VerticalAlign", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Select(Parent)", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AssnTaskUserName_5", + "ParentIndex": 16, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "CancelAssnTask_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button5.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "534", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "674", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "CancelAssnTask_1", + "ParentIndex": 22, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "DataWarning_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Width", + "Height", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Show your HTML text here.\"", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DataWarning_1", + "ParentIndex": 9, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "DataWarningAccept_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DataWarningAccept_1", + "ParentIndex": 13, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "DeleteTaskIcon_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "502", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "580", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DeleteTaskIcon_1", + "ParentIndex": 24, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "galleryTemplate2_5": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate2_5", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "galleryTemplate2_6": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate2_6", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HomeModalOverlay_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomeModalOverlay_1", + "ParentIndex": 25, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HomePopUpsScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Fill", + "ImagePosition", + "Height", + "Width", + "LoadingSpinner", + "LoadingSpinnerColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnVisible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Size", + "Orientation" + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomePopUpsScreen", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnVisible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + }, + "Image1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + "X", + "Y", + "Width", + "Height", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Image1", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "Label3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Label3", + "ParentIndex": 7, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "LoadingIndicator2_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "LoadingIndicator2_2", + "ParentIndex": 12, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "ModalForeground_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ModalForeground_1", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "ModalOverlay_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + "Width", + "Height", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ModalOverlay_2", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "OrgAttendees_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "OrgAttendees_1", + "ParentIndex": 15, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "SaveAssnTask_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button5_1.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "674", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SaveAssnTask_1", + "ParentIndex": 23, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "UnassignTask1_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "821", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "464", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Select(Parent)", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "UnassignTask1_1", + "ParentIndex": 18, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "UnassignTask2_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Select(Parent)", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "UnassignTask2_1", + "ParentIndex": 17, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCircleStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/HomeScreen.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/HomeScreen.editorstate.json new file mode 100644 index 0000000..7ac1291 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/HomeScreen.editorstate.json @@ -0,0 +1,10672 @@ +{ + "AddTask": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "530", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AddTask", + "ParentIndex": 29, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "AppLogo1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AppLogo1", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "AttachmentsIcon1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttachmentsIcon1", + "ParentIndex": 6, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "AttachmentsIcon2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttachmentsIcon2", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCircleStyle", + "Type": "ControlInfo" + }, + "AttendeeDisplayName": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.aboutMe", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "VerticalAlign.Middle", + "InvariantPropertyName": "VerticalAlign", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttendeeDisplayName", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AttendeeGallery1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "WrapCount", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplatePadding", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + "Width", + "Height", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate2", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttendeeGallery1", + "ParentIndex": 23, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "AttendeeImage": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "OnSelect", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttendeeImage", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "AttendeeJobTitle": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.aboutMe", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttendeeJobTitle", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AttendeesBackground": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttendeesBackground", + "ParentIndex": 13, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "AttendeesBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttendeesBanner", + "ParentIndex": 14, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "AttendeesBannerImage": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AttendeesBannerImage", + "ParentIndex": 18, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "Circle3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Circle3", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCircleStyle", + "Type": "ControlInfo" + }, + "DetailsBackground": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DetailsBackground", + "ParentIndex": 31, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "DetailsBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DetailsBanner", + "ParentIndex": 32, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "DetailsIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DetailsIcon", + "ParentIndex": 33, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "Finish_SaveButton": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Finish_SaveButton", + "ParentIndex": 7, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "Finish_SaveIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "986", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "59", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Finish_SaveIcon", + "ParentIndex": 8, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "galleryTemplate2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate2", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "galleryTemplate3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate3", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HomeAttendees": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomeAttendees", + "ParentIndex": 36, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HomeBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomeBanner", + "ParentIndex": 39, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HomeMeetingDetails": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomeMeetingDetails", + "ParentIndex": 38, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HomeMenuBkg_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + "Width", + "Height", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomeMenuBkg_1", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "HomeNavBar": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomeNavBar", + "ParentIndex": 35, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HomeNotes": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomeNotes", + "ParentIndex": 37, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HomePlannerTasks": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomePlannerTasks", + "ParentIndex": 40, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HomeScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "Height", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnVisible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LoadingSpinner", + "LoadingSpinnerColor", + "Size", + "Orientation" + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomeScreen", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnVisible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + }, + "HomeTimer": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Text(Time(0, 0, HomeTimer.Value/1000), \"hh:mm:ss\")", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Timer1.Fill", + "InvariantPropertyName": "PressedColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "HomeTimer.Color", + "InvariantPropertyName": "PressedFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "542", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "60000", + "InvariantPropertyName": "Duration", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnTimerEnd", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "Start", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "Repeat", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "AutoStart", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomeTimer", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Duration", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Start", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Repeat", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AutoStart", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnTimerEnd", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultTimerStyle", + "Type": "ControlInfo" + }, + "HomeTimeRange": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoHeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomeTimeRange", + "ParentIndex": 9, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "InitialTaskCount": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "InitialTaskCount", + "ParentIndex": 27, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "LoadingIndicator1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "LoadingIndicator1", + "ParentIndex": 30, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "MailAllButton": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button1.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MailAllButton", + "ParentIndex": 17, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "MailAllIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Select(Parent)", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MailAllIcon", + "ParentIndex": 19, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "MailAttendeeIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Select(Parent)", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MailAttendeeIcon", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "MeetingBody": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Width", + "Height", + "X", + "Y", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Show your HTML text here.\"", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MeetingBody", + "ParentIndex": 34, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "MeetingTitle": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "VerticalAlign.Middle", + "InvariantPropertyName": "VerticalAlign", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MeetingTitle", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "NavHome1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Image3_3.Fill, 20%)", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NavHome1", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "NavPhotos1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Image3_5.Fill, 20%)", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NavPhotos1", + "ParentIndex": 22, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "NavSketch1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Image3_4.Fill, 20%)", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NavSketch1", + "ParentIndex": 10, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "NotesBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NotesBanner", + "ParentIndex": 15, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "NotesIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NotesIcon", + "ParentIndex": 20, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "NotesInput": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text input\"", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "TextMode.SingleLine", + "InvariantPropertyName": "Mode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Format", + "DelayOutput", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "TextInput1.HoverBorderColor", + "InvariantPropertyName": "PressedBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "HoverBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(190, 202, 226, 1), 30%)", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Font", + "FontWeight", + "Align", + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"\"", + "InvariantPropertyName": "HintText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VirtualKeyboardMode", + "EnableSpellCheck", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NotesInput", + "ParentIndex": 24, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "DelayOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "HintText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Format", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VirtualKeyboardMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableSpellCheck", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultTextStyle", + "Type": "ControlInfo" + }, + "Progress": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Progress", + "ParentIndex": 12, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "ProgressBkg": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ProgressBkg", + "ParentIndex": 11, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "Rectangle4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "0", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle4", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "TaskAssignee": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.AssignTo", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "32", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "AutoHeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TaskAssignee", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "TaskDescript": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.AssignTo", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "AutoHeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TaskDescript", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "TaskDue": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.AssignToId", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "AutoHeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TaskDue", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "TaskGallery": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "WrapCount", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "72", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "TemplatePadding", + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate3", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TaskGallery", + "ParentIndex": 26, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "TasksBackground": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "426", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "2", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TasksBackground", + "ParentIndex": 25, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "TasksBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TasksBanner", + "ParentIndex": 16, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "TasksIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TasksIcon", + "ParentIndex": 21, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "TaskTitle": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text input\"", + "InvariantPropertyName": "Default", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Mode", + "Format", + "DelayOutput", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "HoverBorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(RGBA(190, 202, 226, 1), 30%)", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Font", + "FontWeight", + "Align", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "910", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "521", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "320", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"\"", + "InvariantPropertyName": "HintText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VirtualKeyboardMode", + "EnableSpellCheck", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TaskTitle", + "ParentIndex": 28, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Default", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "DelayOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "HintText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Format", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VirtualKeyboardMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableSpellCheck", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultTextStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/SketchScreen.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/SketchScreen.editorstate.json new file mode 100644 index 0000000..50fe117 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/SketchScreen.editorstate.json @@ -0,0 +1,2485 @@ +{ + "AppLogo2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AppLogo2", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "BackgroundBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + "Width", + "Height", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "BackgroundBanner", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "HomeMenuBkg_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + "Width", + "Height", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HomeMenuBkg_2", + "ParentIndex": 8, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "NavHome2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Image3_6.Fill, 20%)", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NavHome2", + "ParentIndex": 9, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "NavPhotos2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Image3_8.Fill, 20%)", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NavPhotos2", + "ParentIndex": 11, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "NavSketch2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(0, 0, 0, 0)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Image3_7.Fill, 20%)", + "InvariantPropertyName": "HoverFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NavSketch2", + "ParentIndex": 10, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "SavedIndicator": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SavedIndicator", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "SavedIndicator1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101, 128, 187, 1)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SavedIndicator1", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultCircleStyle", + "Type": "ControlInfo" + }, + "SavedIndicator2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SavedIndicator2", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "SaveSketch": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button3.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SaveSketch", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "SaveSketchIcon": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SaveSketchIcon", + "ParentIndex": 6, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "SketchBanner": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SketchBanner", + "ParentIndex": 13, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "SketchCanvas": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Mode", + "Color", + "Fill", + "BorderColor", + "BorderStyle", + "DisplayMode", + "Width", + "Height", + "X", + "Y", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SketchCanvas", + "ParentIndex": 7, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultInkControlStyle", + "Type": "ControlInfo" + }, + "SketchNavBar": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": true, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SketchNavBar", + "ParentIndex": 12, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "SketchScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Fill", + "ImagePosition", + "Height", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnVisible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LoadingSpinner", + "LoadingSpinnerColor", + "Size", + "Orientation" + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SketchScreen", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnVisible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EditorState/WelcomeScreen.editorstate.json b/example/src/meetingcapturedemo/Src/EditorState/WelcomeScreen.editorstate.json new file mode 100644 index 0000000..bb83667 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EditorState/WelcomeScreen.editorstate.json @@ -0,0 +1,3048 @@ +{ + "AppLogo": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "AppLogo", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "BtnChangeAuto": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Select(Parent)", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(Button6_1.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "572", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "52", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "BtnChangeAuto", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "BtnStartMeeting": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(166, 166, 166, 1)", + "InvariantPropertyName": "DisabledColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PressedColor", + "HoverColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "DisplayMode.Edit", + "InvariantPropertyName": "DisplayMode", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(244, 244, 244, 1)", + "InvariantPropertyName": "DisabledFill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "10", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "10", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "10", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "10", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "BtnStartMeeting", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "GalleryMeetings": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "WrapCount", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "If(Gallery1.Layout = Layout.Horizontal, Min(280, Gallery1.Width - 60), Min(280, Gallery1.Height - 60))", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "TemplatePadding", + "Layout", + "Transition", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "true", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Reset", + "Selectable", + "TemplateMaximumWidth", + "AutoHeight", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "TabIndex", + "ContentLanguage", + "FocusedBorderColor", + "FocusedBorderThickness" + ], + "GalleryTemplateChildName": "galleryTemplate1", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GalleryMeetings", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Reset", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Selectable", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateMaximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "galleryTemplate1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ItemAccessibleLabel" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate1", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ItemAccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "icon2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Icon", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(101,128,187,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderStyle", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "OnSelect", + "ZIndex", + "Rotation", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "icon2", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Icon", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Rotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultIconStyle", + "Type": "ControlInfo" + }, + "LblMeetTitle": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.Body", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "LblMeetTitle", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "LblStart_End": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ThisItem.Body", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "OnSelect", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "LblStart_End", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "MeetingsGalleryBkg": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "OnSelect", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "ColorFade(MeetingsGalleryBkg.Fill, -15%)", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "0", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "4", + "InvariantPropertyName": "FocusedBorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MeetingsGalleryBkg", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "WelcomeScreen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(255,255,255,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImagePosition", + "Height", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnVisible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LoadingSpinner", + "LoadingSpinnerColor", + "Size", + "Orientation" + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "WelcomeScreen", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Orientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnVisible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultScreenStyle", + "Type": "ControlInfo" + }, + "WelcomeScreenFrgnd": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(62,96,170,1)", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "WelcomeScreenFrgnd", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "WelcomeScreenSubTitle": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Select the meeting you’d like to capture:\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "Align.Left", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "13", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PaddingTop", + "PaddingBottom", + "PaddingRight", + "PaddingLeft", + "AutoHeight", + "LineHeight", + "IsErrorMessage", + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "WelcomeScreenSubTitle", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LineHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "IsErrorMessage", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "WelcomeScreenTitle": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "RGBA(47,41,43,1)", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoHeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Live", + "Role", + "ContentLanguage" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "WelcomeScreenTitle", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + } +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/EmailScreen.fx.yaml b/example/src/meetingcapturedemo/Src/EmailScreen.fx.yaml new file mode 100644 index 0000000..3d5ff6c --- /dev/null +++ b/example/src/meetingcapturedemo/Src/EmailScreen.fx.yaml @@ -0,0 +1,330 @@ +EmailScreen As screen: + Height: =Max(App.Height, App.DesignHeight) + OnVisible: =/*Email meeting notes to attendees*/ + Orientation: =If(EmailScreen.Width < EmailScreen.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= EmailScreen.Width) + Width: =Max(App.Width, App.DesignWidth) + + EmailBanner As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =14 + + BannerHeader As label: + Align: =Center + Fill: =RGBA(234, 237, 239, 1) + FocusedBorderColor: =BannerHeader.BorderColor + FontWeight: =Semibold + Height: =AppLogo4.Height + 1 + HoverBorderColor: =BannerHeader.BorderColor + HoverColor: =BannerHeader.Color + HoverFill: =BannerHeader.Fill + PressedBorderColor: =BannerHeader.BorderColor + PressedColor: =BannerHeader.Color + PressedFill: =BannerHeader.Fill + Size: =12 + Text: =SelectedMeeting.Subject + Width: =1366 + ZIndex: =2 + + AppLogo4 As image: + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =AppLogo4.BorderColor + Height: =66 + HoverBorderColor: =ColorFade(AppLogo4.BorderColor, 20%) + HoverFill: =ColorFade(AppLogo4.Fill, 20%) + Image: ='nav-logo' + ImagePosition: =ImagePosition.Center + PressedBorderColor: =ColorFade(AppLogo4.BorderColor, -20%) + PressedFill: =ColorFade(AppLogo4.Fill, -20%) + Width: =75 + ZIndex: =3 + + EmailPrevScreen As icon.ArrowLeft: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =EmailPrevScreen.Fill + FocusedBorderColor: =EmailPrevScreen.BorderColor + Height: =40 + HoverBorderColor: =ColorFade(EmailPrevScreen.BorderColor, 20%) + HoverColor: =ColorFade(EmailPrevScreen.Color, 20%) + HoverFill: =EmailPrevScreen.Fill + Icon: =Icon.ArrowLeft + OnSelect: =Back() + PaddingBottom: =9 + PaddingLeft: =9 + PaddingRight: =9 + PaddingTop: =9 + PressedBorderColor: =ColorFade(EmailPrevScreen.BorderColor, -20%) + PressedColor: =ColorFade(EmailPrevScreen.Color, -20%) + PressedFill: =EmailPrevScreen.Fill + Width: =40 + X: =93+0 + Y: =13+0 + ZIndex: =4 + + EmailBannerText As label: + FocusedBorderColor: =EmailBannerText.BorderColor + FontWeight: =Lighter + Height: =49 + HoverBorderColor: =EmailBannerText.BorderColor + HoverColor: =EmailBannerText.Color + HoverFill: =EmailBannerText.Fill + PressedBorderColor: =EmailBannerText.BorderColor + PressedColor: =EmailBannerText.Color + PressedFill: =EmailBannerText.Fill + Size: =27 + Text: |- + ="Email attendee" & If(MultiRecipients, "s") & ":" + Width: =1251 + X: =70+0 + Y: =115+0 + ZIndex: =5 + + Rectangle6 As rectangle: + DisabledFill: =Rectangle6.Fill + Fill: =RGBA(227, 227, 227, 1) + FocusedBorderColor: =Rectangle6.BorderColor + FocusedBorderThickness: =0 + Height: =1 + HoverFill: =Rectangle6.Fill + PressedFill: =Rectangle6.Fill + Width: =EmailBannerText.Width + X: =EmailBannerText.X + Y: =EmailBannerText.Y + EmailBannerText.Height + 20 + ZIndex: =6 + + SendEmail As button: + BorderColor: =ColorFade(SendEmail.Fill, -15%) + DisabledBorderColor: =ColorFade(SendEmail.BorderColor, 70%) + DisplayMode: =Edit + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =SendEmail.BorderColor + FocusedBorderThickness: =2 + Height: =44 + HoverBorderColor: =ColorFade(SendEmail.BorderColor, 20%) + HoverColor: =SendEmail.Color + HoverFill: =ColorFade(SendEmail.Fill, 20%) + OnSelect: |- + =Office365Outlook.SendEmail(Concat(EmailRecipients, UserPrincipalName & ";"), EmailSubject.Text, EmailMessage.Text, {Importance: "Normal"}); + /*Sets text to display email confirmation info*/ + Set(EmailConfirmed, true); + Navigate(ConfirmScreen, None) + PressedBorderColor: =SendEmail.Fill + PressedColor: =SendEmail.Fill + PressedFill: =SendEmail.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =10.5 + Text: ="Send" + Width: =121 + X: =1200 + Y: =120 + ZIndex: =13 + + EmailDetails As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =14 + + GalleryBkg As button: + BorderColor: =RGBA(227, 227, 227, 1) + Color: =RGBA(227, 227, 227, 1) + DisabledBorderColor: =ColorFade(GalleryBkg.BorderColor, 70%) + Fill: =RGBA(62,96,170,0) + FocusedBorderColor: =GalleryBkg.BorderColor + Height: =75 + HoverBorderColor: =ColorFade(GalleryBkg.BorderColor, 20%) + HoverColor: =GalleryBkg.Color + HoverFill: =ColorFade(GalleryBkg.Fill, 20%) + PressedBorderColor: =GalleryBkg.Fill + PressedColor: =GalleryBkg.Fill + PressedFill: =GalleryBkg.Color + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Text: ="" + Width: =EmailRecipientGallery.Width + X: =70 + Y: =245 + ZIndex: =1 + + Label16 As label: + FocusedBorderColor: =Label16.BorderColor + FontWeight: =Semibold + Height: =41 + HoverBorderColor: =Label16.BorderColor + HoverColor: =Label16.Color + HoverFill: =Label16.Fill + PressedBorderColor: =Label16.BorderColor + PressedColor: =Label16.Color + PressedFill: =Label16.Fill + Size: =15 + Text: ="Recipient" & If(MultiRecipients, "s (" & CountRows(EmailRecipients) & ")") + Width: =300 + X: =EmailBannerText.X + Y: =Rectangle6.Y + 15 + ZIndex: =7 + + EmailRecipientGallery As gallery.galleryHorizontal: + BorderColor: =RGBA(227, 227, 227, 1) + DisabledBorderColor: =EmailRecipientGallery.BorderColor + DisabledFill: =EmailRecipientGallery.Fill + Height: =100 + HoverBorderColor: =EmailRecipientGallery.BorderColor + HoverFill: =EmailRecipientGallery.Fill + Items: =EmailRecipients + LoadingSpinnerColor: =EmailRecipientGallery.BorderColor + PressedBorderColor: =EmailRecipientGallery.BorderColor + PressedFill: =EmailRecipientGallery.Fill + TemplatePadding: =10 + TemplateSize: =190 + Width: =Min(1251,(EmailRecipientGallery.TemplateWidth + 20) * CountRows(EmailRecipients)) + X: =EmailBannerText.X + Y: =Label16.Y + Label16.Height + 10 + ZIndex: =8 + + EmailRecipientName As button: + Align: =If(MultiRecipients, Left, Center) + BorderColor: =If(MultiRecipients, RGBA(237, 41, 85, 1), RGBA(0,0,0,0)) + BorderThickness: =1 + Color: =RGBA(0, 0, 0, 1) + DisabledBorderColor: =ColorFade(EmailRecipientName.BorderColor, 70%) + Fill: =If(MultiRecipients,RGBA(237, 41, 85, 0.15), RGBA(0,0,0,0)) + FocusedBorderColor: =EmailRecipientName.BorderColor + FocusedBorderThickness: =1 + FontWeight: =Normal + Height: =44 + HoverBorderColor: =ColorFade(EmailRecipientName.BorderColor, 20%) + HoverColor: =EmailRecipientName.Color + HoverFill: =ColorFade(EmailRecipientName.Fill, 20%) + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =If(MultiRecipients,15,0) + PaddingRight: =If(MultiRecipients, 40, 5) + PaddingTop: =0 + PressedBorderColor: =EmailRecipientName.Fill + PressedColor: =EmailRecipientName.Color + PressedFill: =EmailRecipientName.Fill + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Size: =10.5 + Text: =ThisItem.DisplayName + Width: =Parent.TemplateWidth - If(!MultiRecipients, EmailRecipientImage.Width, 0) + X: =If(MultiRecipients, 0, EmailRecipientImage.Width + 5) + ZIndex: =1 + + RemoveEmailRecipient As icon.Cancel: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =RemoveEmailRecipient.Fill + FocusedBorderColor: =RemoveEmailRecipient.BorderColor + Height: =44 + HoverBorderColor: =ColorFade(RemoveEmailRecipient.BorderColor, 20%) + HoverColor: =ColorFade(RemoveEmailRecipient.Color, 20%) + HoverFill: =RemoveEmailRecipient.Fill + Icon: =Icon.Cancel + OnSelect: =Remove(EmailRecipients,ThisItem) + PaddingLeft: =10 + PaddingRight: =10 + PressedBorderColor: =ColorFade(RemoveEmailRecipient.BorderColor, -20%) + PressedColor: =ColorFade(RemoveEmailRecipient.Color, -20%) + PressedFill: =RemoveEmailRecipient.Fill + Visible: =MultiRecipients + Width: =40 + X: =150 + ZIndex: =2 + + EmailRecipientImage As image: + FocusedBorderColor: =EmailRecipientImage.BorderColor + Height: =40 + HoverBorderColor: =ColorFade(EmailRecipientImage.BorderColor, 20%) + HoverFill: =ColorFade(EmailRecipientImage.Fill, 20%) + Image: =ThisItem.AttendeeImage.Image + OnSelect: =Select(Parent) + PressedBorderColor: =ColorFade(EmailRecipientImage.BorderColor, -20%) + PressedFill: =ColorFade(EmailRecipientImage.Fill, -20%) + Visible: =!MultiRecipients + Width: =40 + X: =5 + Y: =2 + ZIndex: =3 + + Label16_1 As label: + FocusedBorderColor: =Label16_1.BorderColor + FontWeight: =Semibold + Height: =41 + HoverBorderColor: =Label16_1.BorderColor + HoverColor: =Label16_1.Color + HoverFill: =Label16_1.Fill + PressedBorderColor: =Label16_1.BorderColor + PressedColor: =Label16_1.Color + PressedFill: =Label16_1.Fill + Size: =15 + Text: ="Subject" + Width: =300 + X: =EmailBannerText.X + Y: =EmailRecipientGallery.Y + EmailRecipientGallery.Height + 30 + ZIndex: =9 + + EmailSubject As text: + BorderColor: =RGBA(227, 227, 227, 1) + Default: =SelectedMeeting.Subject + FocusedBorderColor: =EmailSubject.BorderColor + Height: =44 + PressedBorderColor: =EmailSubject.HoverBorderColor + PressedColor: =EmailSubject.Color + PressedFill: =EmailSubject.Fill + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =13.5 + Width: =608 + X: =EmailBannerText.X + Y: =Label16_1.Y + Label16_1.Height + 10 + ZIndex: =10 + + Label16_2 As label: + FocusedBorderColor: =Label16_2.BorderColor + FontWeight: =Semibold + Height: =41 + HoverBorderColor: =Label16_2.BorderColor + HoverColor: =Label16_2.Color + HoverFill: =Label16_2.Fill + PressedBorderColor: =Label16_2.BorderColor + PressedColor: =Label16_2.Color + PressedFill: =Label16_2.Fill + Size: =15 + Text: ="Message" + Width: =300 + X: =EmailBannerText.X + Y: =EmailSubject.Y + EmailSubject.Height + 30 + ZIndex: =11 + + EmailMessage As text: + BorderColor: =RGBA(227, 227, 227, 1) + Default: ="" + FocusedBorderColor: =EmailMessage.BorderColor + Height: =167 + Mode: =TextMode.MultiLine + PressedBorderColor: =EmailMessage.HoverBorderColor + PressedColor: =EmailMessage.Color + PressedFill: =EmailMessage.Fill + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =13.5 + Width: =608 + X: =EmailBannerText.X + Y: =Label16_2.Y + Label16_2.Height + 10 + ZIndex: =12 + diff --git a/example/src/meetingcapturedemo/Src/ExportPopUpsScreen.fx.yaml b/example/src/meetingcapturedemo/Src/ExportPopUpsScreen.fx.yaml new file mode 100644 index 0000000..13f381b --- /dev/null +++ b/example/src/meetingcapturedemo/Src/ExportPopUpsScreen.fx.yaml @@ -0,0 +1,357 @@ +ExportPopUpsScreen As screen: + Height: =Max(App.Height, App.DesignHeight) + Orientation: =If(ExportPopUpsScreen.Width < ExportPopUpsScreen.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= ExportPopUpsScreen.Width) + Width: =Max(App.Width, App.DesignWidth) + + Image2 As image: + FocusedBorderColor: =Image2.BorderColor + Height: =768 + HoverBorderColor: =ColorFade(Image2.BorderColor, 20%) + HoverFill: =ColorFade(Image2.Fill, 20%) + Image: =MeetingCaptureExportBkg + PressedBorderColor: =ColorFade(Image2.BorderColor, -20%) + PressedFill: =ColorFade(Image2.Fill, -20%) + Width: =1366 + ZIndex: =1 + + Label4_3 As label: + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =Label4_3.BorderColor + Height: =67 + HoverBorderColor: =Label4_3.BorderColor + HoverColor: =Label4_3.Color + HoverFill: =Label4_3.Fill + PressedBorderColor: =Label4_3.BorderColor + PressedColor: =Label4_3.Color + PressedFill: =Label4_3.Fill + Text: = + Visible: =!CheckOneNote + Width: =190 + X: =125 + Y: =333 + ZIndex: =2 + + Label4_4 As label: + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =Label4_4.BorderColor + Height: =72 + HoverBorderColor: =Label4_4.BorderColor + HoverColor: =Label4_4.Color + HoverFill: =Label4_4.Fill + PressedBorderColor: =Label4_4.BorderColor + PressedColor: =Label4_4.Color + PressedFill: =Label4_4.Fill + Text: = + Visible: =!CheckPlanner + Width: =212 + X: =115 + Y: =560 + ZIndex: =3 + + Label4 As label: + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =Label4.BorderColor + Height: =21 + HoverBorderColor: =Label4.BorderColor + HoverColor: =Label4.Color + HoverFill: =Label4.Fill + PressedBorderColor: =Label4.BorderColor + PressedColor: =Label4.Color + PressedFill: =Label4.Fill + Text: = + Visible: =!CheckOneNote + Width: =24 + X: =80.5 + Y: =265 + ZIndex: =4 + + Label4_1 As label: + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =Label4_1.BorderColor + Height: =21 + HoverBorderColor: =Label4_1.BorderColor + HoverColor: =Label4_1.Color + HoverFill: =Label4_1.Fill + PressedBorderColor: =Label4_1.BorderColor + PressedColor: =Label4_1.Color + PressedFill: =Label4_1.Fill + Text: = + Visible: =!CheckPlanner + Width: =24 + X: =80.5 + Y: =489 + ZIndex: =5 + + Label4_2 As label: + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =Label4_2.BorderColor + Height: =21 + HoverBorderColor: =Label4_2.BorderColor + HoverColor: =Label4_2.Color + HoverFill: =Label4_2.Fill + PressedBorderColor: =Label4_2.BorderColor + PressedColor: =Label4_2.Color + PressedFill: =Label4_2.Fill + Text: = + Visible: =!CheckEmail + Width: =24 + X: =713.5 + Y: =265 + ZIndex: =6 + + ExportModals_1 As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =14 + + ExportOverlay_1 As rectangle: + DisabledFill: =ExportOverlay_1.Fill + Fill: =RGBA(0,0,0,.7) + FocusedBorderColor: =ExportOverlay_1.BorderColor + Height: =768 + HoverFill: =ExportOverlay_1.Fill + PressedFill: =ExportOverlay_1.Fill + Visible: =ShowOneNote || ShowPlanner || ShowOverlay + Width: =1366 + ZIndex: =7 + + ExportForeground_1 As rectangle: + DisabledFill: =ExportForeground_1.Fill + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =ExportForeground_1.BorderColor + Height: =371 + HoverFill: =ExportForeground_1.Fill + PressedFill: =ExportForeground_1.Fill + Visible: =ShowOneNote || ShowPlanner || ShowOverlay + Width: =428 + X: =469 + Y: =199 + ZIndex: =8 + + OverlayHeader_1 As label: + FocusedBorderColor: =OverlayHeader_1.BorderColor + FontWeight: =Lighter + Height: =If(ShowOverlay, 110, 60) + HoverBorderColor: =OverlayHeader_1.BorderColor + HoverColor: =OverlayHeader_1.Color + HoverFill: =OverlayHeader_1.Fill + PressedBorderColor: =OverlayHeader_1.BorderColor + PressedColor: =OverlayHeader_1.Color + PressedFill: =OverlayHeader_1.Fill + Size: =28 + Text: =If(ShowOverlay, "Are you finished taking notes?", "Select Location") + Visible: =ShowOneNote || ShowPlanner || ShowOverlay + Width: =ExportForeground_1.Width - 40 + X: =ExportForeground_1.X + 20 + Y: =ExportForeground_1.Y + 30 + ZIndex: =9 + + NotebookOrPlan_1 As label: + FocusedBorderColor: =NotebookOrPlan_1.BorderColor + FontWeight: =Semibold + Height: =20 + HoverBorderColor: =NotebookOrPlan_1.BorderColor + HoverColor: =NotebookOrPlan_1.Color + HoverFill: =NotebookOrPlan_1.Fill + PressedBorderColor: =NotebookOrPlan_1.BorderColor + PressedColor: =NotebookOrPlan_1.Color + PressedFill: =NotebookOrPlan_1.Fill + Size: =10.5 + Text: =If(ShowOneNote, "Notebook", "Plan") + Visible: =ShowOneNote || ShowPlanner + Width: =ExportForeground_1.Width - 40 + X: =ExportForeground_1.X + 20 + Y: =301 + ZIndex: =10 + + OneNoteBookSelect_1 As dropdown: + BorderColor: =RGBA(155, 155, 155, 1) + BorderThickness: =1 + ChevronBackground: =RGBA(0, 0, 0, 0) + ChevronFill: =RGBA(237, 41, 85, 1) + ChevronHoverBackground: =OneNoteBookSelect_1.ChevronBackground + ChevronHoverFill: =RGBA(255,255,255,1) + FocusedBorderColor: =OneNoteBookSelect_1.BorderColor + HoverBorderColor: =ColorFade(OneNoteBookSelect_1.BorderColor, 15%) + Items: =OneNoteBooks + OnChange: =ClearCollect(OneNoteSections,'OneNote(Business)'.GetSectionsInNotebook(OneNoteBookSelect_1.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BKey').value) + PressedBorderColor: =OneNoteBookSelect_1.HoverBorderColor + Visible: =ShowOneNote + Width: =388 + X: =489+0 + Y: =333+0 + ZIndex: =11 + + SectionsSelect_1 As dropdown: + BorderColor: =RGBA(155, 155, 155, 1) + BorderThickness: =1 + ChevronBackground: =RGBA(0, 0, 0, 0) + ChevronFill: =RGBA(237, 41, 85, 1) + ChevronHoverBackground: =SectionsSelect_1.ChevronBackground + ChevronHoverFill: =RGBA(255,255,255,1) + FocusedBorderColor: =SectionsSelect_1.BorderColor + HoverBorderColor: =ColorFade(SectionsSelect_1.BorderColor, 15%) + Items: =OneNoteSections + PressedBorderColor: =SectionsSelect_1.HoverBorderColor + Visible: =ShowOneNote + Width: =388 + X: =489 + Y: =434 + ZIndex: =12 + + SectionOrBucket_1 As label: + FocusedBorderColor: =SectionOrBucket_1.BorderColor + FontWeight: =Semibold + Height: =20 + HoverBorderColor: =SectionOrBucket_1.BorderColor + HoverColor: =SectionOrBucket_1.Color + HoverFill: =SectionOrBucket_1.Fill + PressedBorderColor: =SectionOrBucket_1.BorderColor + PressedColor: =SectionOrBucket_1.Color + PressedFill: =SectionOrBucket_1.Fill + Size: =10.5 + Text: =If(ShowOneNote, "Section", "Bucket") + Visible: =ShowOneNote || ShowPlanner + Width: =ExportForeground_1.Width - 40 + X: =ExportForeground_1.X + 20 + Y: =400 + ZIndex: =13 + + ExportCancel_1 As button: + BorderColor: =RGBA(237, 41, 85, 1) + BorderThickness: =1 + Color: =RGBA(237, 41, 85, 1) + DisabledBorderColor: =ColorFade(ExportCancel_1.BorderColor, 70%) + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =ExportCancel_1.BorderColor + FocusedBorderThickness: =1 + Height: =44 + HoverBorderColor: =ColorFade(ExportCancel_1.BorderColor, 20%) + HoverColor: =ExportCancel_1.Color + HoverFill: =ColorFade(ExportCancel_1.Fill, 20%) + OnSelect: |- + =Set(ShowOneNote, false); + Set(ShowPlanner, false); + Set(ShowOverlay, false); + Navigate(ExportScreen, None) + PressedBorderColor: =ExportCancel_1.Fill + PressedColor: =ExportCancel_1.Fill + PressedFill: =ExportCancel_1.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =10.5 + Text: =If(TaskSelected, "Delete", "Cancel") + Visible: =ShowOneNote || ShowPlanner || ShowOverlay + Width: =170 + X: =494 + Y: =504 + ZIndex: =14 + + ExportConfirm_1 As button: + BorderColor: =RGBA(237, 41, 85, 1) + BorderThickness: =1 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =ColorFade(ExportConfirm_1.BorderColor, 70%) + DisplayMode: |- + =If(ShowOneNote, + If(IsBlank(OneNoteBookSelect_1.SelectedText) || IsBlank(SectionsSelect_1.SelectedText), Disabled, Edit), + ShowPlanner, If(IsBlank(PlannerPlanSelect_1.SelectedText) || IsBlank(PlannerBucketSelect_1.SelectedText), Disabled, Edit), + Edit + ) + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =ExportConfirm_1.BorderColor + FocusedBorderThickness: =1 + Height: =44 + HoverBorderColor: =ColorFade(ExportConfirm_1.BorderColor, 20%) + HoverColor: =ExportConfirm_1.Color + HoverFill: =ColorFade(ExportConfirm_1.Fill, 20%) + OnSelect: | + =If(ShowOneNote, + Set(ShowOneNote, false); + Set(SelectedNoteBook, OneNoteBookSelect_1.SelectedText); + Set(SelectedSection, SectionsSelect_1.SelectedText); + Navigate(ExportScreen, None), + ShowPlanner, + Set(ShowPlanner, false); + Set(SelectedPlan, PlannerPlanSelect_1.SelectedText); + Set(SelectedBucket, PlannerBucketSelect_1.SelectedText); + Navigate(ExportScreen, None), + ShowOverlay, + Set(ShowOverlay, false); + Set(ExportConfirmed, true); + Navigate(ConfirmScreen, None) + ) + PressedBorderColor: =ExportConfirm_1.Fill + PressedColor: =ExportConfirm_1.Fill + PressedFill: =ExportConfirm_1.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =10.5 + Text: =If(ShowOverlay, "Yes, continue", "OK") + Visible: =ShowOneNote || ShowPlanner || ShowOverlay + Width: =170 + X: =702 + Y: =504 + ZIndex: =15 + + PlannerPlanSelect_1 As dropdown: + BorderColor: =RGBA(155, 155, 155, 1) + BorderThickness: =1 + ChevronBackground: =RGBA(0, 0, 0, 0) + ChevronFill: =RGBA(237, 41, 85, 1) + ChevronHoverBackground: =PlannerPlanSelect_1.ChevronBackground + ChevronHoverFill: =RGBA(255,255,255,1) + FocusedBorderColor: =PlannerPlanSelect_1.BorderColor + HoverBorderColor: =ColorFade(PlannerPlanSelect_1.BorderColor, 15%) + Items: =PlannerPlans + OnChange: =ClearCollect(PlannerBuckets,Planner.ListBuckets(PlannerPlanSelect_1.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1Bid').value) + PressedBorderColor: =PlannerPlanSelect_1.HoverBorderColor + Visible: =ShowPlanner + Width: =388 + X: =489+0 + Y: =333+0 + ZIndex: =16 + + PlannerBucketSelect_1 As dropdown: + BorderColor: =RGBA(155, 155, 155, 1) + BorderThickness: =1 + ChevronBackground: =RGBA(0, 0, 0, 0) + ChevronFill: =RGBA(237, 41, 85, 1) + ChevronHoverBackground: =PlannerBucketSelect_1.ChevronBackground + ChevronHoverFill: =RGBA(255,255,255,1) + FocusedBorderColor: =PlannerBucketSelect_1.BorderColor + HoverBorderColor: =ColorFade(PlannerBucketSelect_1.BorderColor, 15%) + Items: =PlannerBuckets + PressedBorderColor: =PlannerBucketSelect_1.HoverBorderColor + Visible: =ShowPlanner + Width: =388 + X: =489 + Y: =434 + ZIndex: =17 + + ExportConfirmText_1 As label: + FocusedBorderColor: =ExportConfirmText_1.BorderColor + FontWeight: =Lighter + Height: =107 + HoverBorderColor: =ExportConfirmText_1.BorderColor + HoverColor: =ExportConfirmText_1.Color + HoverFill: =ExportConfirmText_1.Fill + LineHeight: =1.5 + PressedBorderColor: =ExportConfirmText_1.BorderColor + PressedColor: =ExportConfirmText_1.Color + PressedFill: =ExportConfirmText_1.Fill + Size: =13.5 + Text: ="Once you Export, your meeting summary will be shared and you will no longer have access to the edit page." + Visible: =ShowOverlay + Width: =378 + X: =494 + Y: =358 + ZIndex: =18 + diff --git a/example/src/meetingcapturedemo/Src/ExportScreen.fx.yaml b/example/src/meetingcapturedemo/Src/ExportScreen.fx.yaml new file mode 100644 index 0000000..81a59a4 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/ExportScreen.fx.yaml @@ -0,0 +1,999 @@ +ExportScreen As screen: + Height: =Max(App.Height, App.DesignHeight) + OnVisible: |- + =/*Export creation screen + Select where to export to. + Possible exports: + - OneNote + - Office Planner + - Email + */ + If(IsEmpty(EmailRecipients), + ClearCollect(EmailRecipients, AttendeeGallery1.AllItems) + ); + If(IsEmpty(OneNoteBooks), ClearCollect(OneNoteBooks,'OneNote(Business)'.GetNotebooks())); + If(!IsEmpty(OneNoteBooks),ClearCollect(OneNoteSections,'OneNote(Business)'.GetSectionsInNotebook(OneNoteBookSelect_1.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BKey').value)); + If(IsEmpty(PlannerPlans), ClearCollect(PlannerPlans, Planner.ListMyPlans().value)); + If(!IsEmpty(PlannerPlans),ClearCollect(PlannerBuckets,Planner.ListBuckets(PlannerPlanSelect_1.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1Bid').value)) + Orientation: =If(ExportScreen.Width < ExportScreen.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= ExportScreen.Width) + Width: =Max(App.Width, App.DesignWidth) + + ExportBanner As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =55 + + ExportMeetingSubject As label: + Align: =Center + Fill: =RGBA(234, 237, 239, 1) + FocusedBorderColor: =ExportMeetingSubject.BorderColor + FontWeight: =Semibold + Height: =AppLogo4.Height + 1 + HoverBorderColor: =ExportMeetingSubject.BorderColor + HoverColor: =ExportMeetingSubject.Color + HoverFill: =ExportMeetingSubject.Fill + PressedBorderColor: =ExportMeetingSubject.BorderColor + PressedColor: =ExportMeetingSubject.Color + PressedFill: =ExportMeetingSubject.Fill + Size: =12 + Text: =SelectedMeeting.Subject + Width: =1366 + ZIndex: =1 + + AppLogo7 As image: + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =AppLogo7.BorderColor + Height: =66 + HoverBorderColor: =ColorFade(AppLogo7.BorderColor, 20%) + HoverFill: =ColorFade(AppLogo7.Fill, 20%) + Image: ='nav-logo' + ImagePosition: =ImagePosition.Center + PressedBorderColor: =ColorFade(AppLogo7.BorderColor, -20%) + PressedFill: =ColorFade(AppLogo7.Fill, -20%) + Width: =75 + ZIndex: =2 + + ExportPrev As icon.ArrowLeft: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =ExportPrev.Fill + FocusedBorderColor: =ExportPrev.BorderColor + FocusedBorderThickness: =0 + Height: =40 + HoverBorderColor: =ColorFade(ExportPrev.BorderColor, 20%) + HoverColor: =ColorFade(ExportPrev.Color, 20%) + HoverFill: =ExportPrev.Fill + Icon: =Icon.ArrowLeft + OnSelect: =Navigate(HomeScreen, None) + PaddingBottom: =9 + PaddingLeft: =9 + PaddingRight: =9 + PaddingTop: =9 + PressedBorderColor: =ColorFade(ExportPrev.BorderColor, -20%) + PressedColor: =ColorFade(ExportPrev.Color, -20%) + PressedFill: =ExportPrev.Fill + Width: =40 + X: =93+0 + Y: =13+0 + ZIndex: =3 + + ExportBannerHeader As label: + FocusedBorderColor: =ExportBannerHeader.BorderColor + FontWeight: =Lighter + Height: =49 + HoverBorderColor: =ExportBannerHeader.BorderColor + HoverColor: =ExportBannerHeader.Color + HoverFill: =ExportBannerHeader.Fill + PressedBorderColor: =ExportBannerHeader.BorderColor + PressedColor: =ExportBannerHeader.Color + PressedFill: =ExportBannerHeader.Fill + Size: =27 + Text: ="Export " & SelectedMeeting.Subject + Width: =1251 + X: =70+0 + Y: =115 + ZIndex: =4 + + Rectangle6_4 As rectangle: + DisabledFill: =Rectangle6_4.Fill + Fill: =RGBA(227, 227, 227, 1) + FocusedBorderColor: =Rectangle6_4.BorderColor + FocusedBorderThickness: =0 + Height: =1 + HoverFill: =Rectangle6_4.Fill + PressedFill: =Rectangle6_4.Fill + Width: =ExportBannerHeader.Width + X: =ExportBannerHeader.X + Y: =184 + ZIndex: =5 + + ExportQuestion As label: + Color: =RGBA(44, 48, 52, 1) + FocusedBorderColor: =ExportQuestion.BorderColor + HoverBorderColor: =ExportQuestion.BorderColor + HoverColor: =ExportQuestion.Color + HoverFill: =ExportQuestion.Fill + PressedBorderColor: =ExportQuestion.BorderColor + PressedColor: =ExportQuestion.Color + PressedFill: =ExportQuestion.Fill + Text: ="Where would you like to export to?" + Width: =335 + X: =70 + Y: =189 + ZIndex: =6 + + DataLossWarnText As label: + Color: =RGBA(237, 41, 85, 1) + Fill: =RGBA(237, 41, 85, 0.15) + FocusedBorderColor: =DataLossWarnText.BorderColor + Height: =50 + HoverBorderColor: =DataLossWarnText.BorderColor + HoverColor: =DataLossWarnText.Color + HoverFill: =DataLossWarnText.Fill + PaddingBottom: =10 + PaddingLeft: =62 + PaddingRight: =27 + PaddingTop: =9 + PressedBorderColor: =DataLossWarnText.BorderColor + PressedColor: =DataLossWarnText.Color + PressedFill: =DataLossWarnText.Fill + Size: =10.5 + Text: ="Unless you select an export location, your meeting notes, attachments, and tasks will be lost once you exit the application." + Visible: =!CheckOneNote.Value && !CheckEmail.Value && !CheckPlanner.Value + Width: =553 + X: =76 + Y: =234 + ZIndex: =30 + + DataLossWarnIcon As icon.Warning: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =DataLossWarnIcon.Fill + FocusedBorderColor: =DataLossWarnIcon.BorderColor + Height: =24 + HoverBorderColor: =ColorFade(DataLossWarnIcon.BorderColor, 20%) + HoverColor: =ColorFade(DataLossWarnIcon.Color, 20%) + HoverFill: =DataLossWarnIcon.Fill + Icon: =Icon.Warning + PressedBorderColor: =ColorFade(DataLossWarnIcon.BorderColor, -20%) + PressedColor: =ColorFade(DataLossWarnIcon.Color, -20%) + PressedFill: =DataLossWarnIcon.Fill + Visible: =!CheckOneNote.Value && !CheckEmail.Value && !CheckPlanner.Value + Width: =24 + X: =95 + Y: =DataLossWarnText.Y + DataLossWarnText.Height/2 - DataLossWarnIcon.Height/2 + ZIndex: =31 + + ExportButton As button: + BorderColor: =ColorFade(ExportButton.Fill, -15%) + DisabledBorderColor: =ExportButton.DisabledFill + DisabledColor: =White + DisplayMode: |- + =If(And(Not(CheckOneNote.Value && (IsBlank(SelectedNoteBook) || IsBlank(SelectedSection))), + Not(CheckPlanner.Value && (IsBlank(SelectedPlan) || IsBlank(SelectedBucket))), + Not(CheckEmail.Value && (CountRows(EmailRecipients) = 0)), + CheckOneNote.Value || CheckPlanner.Value || CheckEmail.Value),Edit,Disabled) + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =ExportButton.BorderColor + Height: =44 + HoverBorderColor: =ColorFade(ExportButton.BorderColor, 20%) + HoverColor: =ExportButton.Color + HoverFill: =ColorFade(ExportButton.Fill, 20%) + OnSelect: |- + =Set(ShowOverlay, true); + Navigate(ExportPopUpsScreen, None) + PaddingBottom: =0 + PaddingLeft: =40 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =ExportButton.Fill + PressedColor: =ExportButton.Fill + PressedFill: =ExportButton.Color + Size: =10.5 + Text: ="Export" + Width: =125 + X: =1196 + Y: =115 + ZIndex: =41 + + ExportIcon As image: + FocusedBorderColor: =ExportIcon.BorderColor + Height: =23 + HoverBorderColor: =ColorFade(ExportIcon.BorderColor, 20%) + HoverFill: =ColorFade(ExportIcon.Fill, 20%) + Image: =export + OnSelect: =Select(ExportButton) + PressedBorderColor: =ColorFade(ExportIcon.BorderColor, -20%) + PressedFill: =ColorFade(ExportIcon.Fill, -20%) + Width: =26 + X: =ExportButton.X + 15 + Y: =ExportButton.Y + ExportButton.Height/2 - ExportIcon.Height/2 + ZIndex: =42 + + ExportOneNote As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =55 + + CheckOneNote As checkbox: + BorderColor: =RGBA(237, 41, 85, 1) + CheckboxBackgroundFill: =RGBA(255,255,255,1) + CheckboxBorderColor: =RGBA(237, 41, 85, 1) + CheckboxSize: =45 + CheckmarkFill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =CheckOneNote.BorderColor + FocusedBorderThickness: =0 + HoverBorderColor: =ColorFade(CheckOneNote.BorderColor, 30%) + HoverFill: =ColorFade(CheckOneNote.Fill, 30%) + OnUncheck: |- + =Set(SelectedNoteBook, Blank()); + Set(SelectedSection, Blank()) + PressedBorderColor: =ColorFade(CheckOneNote.BorderColor, -30%) + PressedFill: =ColorFade(CheckOneNote.Fill, -30%) + Text: ="" + Width: =63 + X: =70 + Y: =If(!CheckOneNote.Value && !CheckEmail.Value && !CheckPlanner.Value, 298, 248) + ZIndex: =7 + + OneNoteIcon As image: + FocusedBorderColor: =OneNoteIcon.BorderColor + Height: =24 + HoverBorderColor: =ColorFade(OneNoteIcon.BorderColor, 20%) + HoverFill: =ColorFade(OneNoteIcon.Fill, 20%) + Image: ='one-note' + PressedBorderColor: =ColorFade(OneNoteIcon.BorderColor, -20%) + PressedFill: =ColorFade(OneNoteIcon.Fill, -20%) + Width: =24 + X: =133 + Y: =CheckOneNote.Y + 15 + ZIndex: =10 + + OneNoteHeader As label: + FocusedBorderColor: =OneNoteHeader.BorderColor + FontWeight: =Semibold + Height: =54 + HoverBorderColor: =OneNoteHeader.BorderColor + HoverColor: =OneNoteHeader.Color + HoverFill: =OneNoteHeader.Fill + PressedBorderColor: =OneNoteHeader.BorderColor + PressedColor: =OneNoteHeader.Color + PressedFill: =OneNoteHeader.Fill + Size: =15 + Text: ="OneNote" + Width: =176 + X: =166 + Y: =CheckOneNote.Y + ZIndex: =11 + + OneNoteExportDescript As label: + FocusedBorderColor: =OneNoteExportDescript.BorderColor + FontWeight: =Semibold + Height: =28 + HoverBorderColor: =OneNoteExportDescript.BorderColor + HoverColor: =OneNoteExportDescript.Color + HoverFill: =OneNoteExportDescript.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =OneNoteExportDescript.BorderColor + PressedColor: =OneNoteExportDescript.Color + PressedFill: =OneNoteExportDescript.Fill + Size: =10.5 + Text: ="Export meeting summary, notes, attachments, and tasks to your OneNote." + Width: =507 + X: =133 + Y: =CheckOneNote.Y + CheckOneNote.Height - 3 + ZIndex: =12 + + ShowOneNoteSelection As button: + BorderColor: =RGBA(237, 41, 85, 1) + BorderThickness: =1 + Color: =RGBA(237, 41, 85, 1) + DisabledBorderColor: =ColorFade(ShowOneNoteSelection.BorderColor, 70%) + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =ShowOneNoteSelection.BorderColor + FocusedBorderThickness: =1 + Height: =44 + HoverBorderColor: =ColorFade(ShowOneNoteSelection.BorderColor, 20%) + HoverColor: =ShowOneNoteSelection.Color + HoverFill: =ColorFade(ShowOneNoteSelection.Fill, 20%) + OnSelect: |- + =Set(ShowOneNote, true); + Navigate(ExportPopUpsScreen, None); + /*retrieves OneNote sections of (pre)selected OneNote book (if user hasn't selected one yet)*/ + ClearCollect(OneNoteSections, 'OneNote(Business)'.GetSectionsInNotebook(OneNoteBookSelect_1.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BKey').value) + PressedBorderColor: =ShowOneNoteSelection.Fill + PressedColor: =ShowOneNoteSelection.Fill + PressedFill: =ShowOneNoteSelection.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =10.5 + Text: =If(ExportToOneNote.Height > 0, "Select new location", "Select Location") + Visible: =CheckOneNote.Value + Width: =170 + X: =133 + Y: =ExportToOneNote.Y + ExportToOneNote.Height + 20 + ZIndex: =13 + + OneNoteDataLossDescript As label: + Fill: =RGBA(234, 237, 239, 1) + FocusedBorderColor: =OneNoteDataLossDescript.BorderColor + HoverBorderColor: =OneNoteDataLossDescript.BorderColor + HoverColor: =OneNoteDataLossDescript.Color + HoverFill: =OneNoteDataLossDescript.Fill + PaddingLeft: =57 + PressedBorderColor: =OneNoteDataLossDescript.BorderColor + PressedColor: =OneNoteDataLossDescript.Color + PressedFill: =OneNoteDataLossDescript.Fill + Size: =9 + Text: ="Photos and sketches cannot be exported to OneNote. ‘Export to Email’ to prevent attachments from being lost." + Visible: =CheckOneNote.Value && !CheckEmail.Value + Width: =480 + X: =133 + Y: =CheckOneNote.Y + CheckOneNote.Height + 132 + ZIndex: =28 + + OneNoteDataLossWarn As icon.Warning: + Color: =RGBA(44, 48, 52, 1) + DisabledFill: =OneNoteDataLossWarn.Fill + FocusedBorderColor: =OneNoteDataLossWarn.BorderColor + Height: =24 + HoverBorderColor: =ColorFade(OneNoteDataLossWarn.BorderColor, 20%) + HoverColor: =ColorFade(OneNoteDataLossWarn.Color, 20%) + HoverFill: =OneNoteDataLossWarn.Fill + Icon: =Icon.Warning + PressedBorderColor: =ColorFade(OneNoteDataLossWarn.BorderColor, -20%) + PressedColor: =ColorFade(OneNoteDataLossWarn.Color, -20%) + PressedFill: =OneNoteDataLossWarn.Fill + Visible: =CheckOneNote.Value && !CheckEmail.Value + Width: =24 + X: =148 + Y: =OneNoteDataLossDescript.Y + OneNoteDataLossDescript.Height/2 - OneNoteDataLossWarn.Height/2 + ZIndex: =29 + + OneNoteExportLocation As label: + FocusedBorderColor: =OneNoteExportLocation.BorderColor + Height: =28 + HoverBorderColor: =OneNoteExportLocation.BorderColor + HoverColor: =OneNoteExportLocation.Color + HoverFill: =OneNoteExportLocation.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =OneNoteExportLocation.BorderColor + PressedColor: =OneNoteExportLocation.Color + PressedFill: =OneNoteExportLocation.Fill + Size: =10.5 + Text: =SelectedNoteBook.Value & " - " & SelectedSection.'data-ADB4D7A662F548B49FAC2B986E348A1Bname' + Visible: =CheckOneNote.Value && ExportToOneNote.Height > 0 + Width: =423 + X: =ExportToOneNote.X + ExportToOneNote.Width + Y: =ExportToOneNote.Y + ZIndex: =32 + + ExportToOneNote As label: + Color: =RGBA(155, 155, 155, 1) + FocusedBorderColor: =ExportToOneNote.BorderColor + Height: =If(IsBlank(SelectedSection), 0, 28) + HoverBorderColor: =ExportToOneNote.BorderColor + HoverColor: =ExportToOneNote.Color + HoverFill: =ExportToOneNote.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =ExportToOneNote.BorderColor + PressedColor: =ExportToOneNote.Color + PressedFill: =ExportToOneNote.Fill + Size: =10.5 + Text: |- + ="Export to:" + Visible: =CheckOneNote.Value + Width: =73 + X: =133 + Y: =CheckOneNote.Y + CheckOneNote.Height + 27 + ZIndex: =33 + + Rectangle7 As rectangle: + DisabledFill: =Rectangle7.Fill + DisplayMode: =DisplayMode.View + Fill: =RGBA(215, 218, 221, 1) + FocusedBorderColor: =Rectangle7.BorderColor + Height: =2 + HoverFill: =Rectangle7.Fill + PressedFill: =Rectangle7.Fill + Visible: =CheckOneNote.Value && ExportToOneNote.Height > 0 + Width: =OneNoteExportLocation.Width + ExportToOneNote.Width + X: =ExportToOneNote.X + Y: =ExportToOneNote.Y + ZIndex: =34 + + Rectangle7_1 As rectangle: + DisabledFill: =Rectangle7_1.Fill + DisplayMode: =DisplayMode.View + Fill: =RGBA(215, 218, 221, 1) + FocusedBorderColor: =Rectangle7_1.BorderColor + Height: =2 + HoverFill: =Rectangle7_1.Fill + PressedFill: =Rectangle7_1.Fill + Visible: =CheckOneNote.Value && ExportToOneNote.Height > 0 + Width: =OneNoteExportLocation.Width + ExportToOneNote.Width + X: =ExportToOneNote.X + Y: =ExportToOneNote.Y + ExportToOneNote.Height + ZIndex: =35 + + ExportEmail As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =55 + + CheckEmail As checkbox: + BorderColor: =RGBA(237, 41, 85, 1) + CheckboxBackgroundFill: =RGBA(255,255,255,1) + CheckboxBorderColor: =RGBA(237, 41, 85, 1) + CheckboxSize: =45 + CheckmarkFill: =RGBA(237, 41, 85, 1) + Default: =true + FocusedBorderColor: =CheckEmail.BorderColor + FocusedBorderThickness: =0 + HoverBorderColor: =ColorFade(CheckEmail.BorderColor, 30%) + HoverFill: =ColorFade(CheckEmail.Fill, 30%) + PressedBorderColor: =ColorFade(CheckEmail.BorderColor, -30%) + PressedFill: =ColorFade(CheckEmail.Fill, -30%) + Text: ="" + Width: =63 + X: =CheckOneNote.X + 635 + Y: =CheckOneNote.Y + ZIndex: =9 + + EmailIcon As image: + FocusedBorderColor: =EmailIcon.BorderColor + Height: =24 + HoverBorderColor: =ColorFade(EmailIcon.BorderColor, 20%) + HoverFill: =ColorFade(EmailIcon.Fill, 20%) + Image: =outlook + PressedBorderColor: =ColorFade(EmailIcon.BorderColor, -20%) + PressedFill: =ColorFade(EmailIcon.Fill, -20%) + Width: =24 + X: =768 + Y: =CheckEmail.Y + 18 + ZIndex: =18 + + EmailHeader As label: + FocusedBorderColor: =EmailHeader.BorderColor + FontWeight: =Semibold + Height: =54 + HoverBorderColor: =EmailHeader.BorderColor + HoverColor: =EmailHeader.Color + HoverFill: =EmailHeader.Fill + PressedBorderColor: =EmailHeader.BorderColor + PressedColor: =EmailHeader.Color + PressedFill: =EmailHeader.Fill + Size: =15 + Text: ="Email" + Width: =176 + X: =801 + Y: =CheckEmail.Y + ZIndex: =19 + + EmailExportDescript As label: + FocusedBorderColor: =EmailExportDescript.BorderColor + FontWeight: =Semibold + Height: =28 + HoverBorderColor: =EmailExportDescript.BorderColor + HoverColor: =EmailExportDescript.Color + HoverFill: =EmailExportDescript.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =EmailExportDescript.BorderColor + PressedColor: =EmailExportDescript.Color + PressedFill: =EmailExportDescript.Fill + Size: =10.5 + Text: ="Email meeting summary, notes, attachments, and tasks to the attendees." + Width: =507 + X: =768 + Y: =CheckEmail.Y + CheckEmail.Height - 3 + ZIndex: =20 + + RecipientGalleryBkg As button: + BorderColor: =RGBA(227, 227, 227, 1) + Color: =RGBA(227, 227, 227, 1) + DisabledBorderColor: =ColorFade(RecipientGalleryBkg.BorderColor, 70%) + Fill: =RGBA(62,96,170,0) + FocusedBorderColor: =RecipientGalleryBkg.BorderColor + Height: =130 + HoverBorderColor: =ColorFade(RecipientGalleryBkg.BorderColor, 20%) + HoverColor: =RecipientGalleryBkg.Color + HoverFill: =ColorFade(RecipientGalleryBkg.Fill, 20%) + PressedBorderColor: =RecipientGalleryBkg.Fill + PressedColor: =RecipientGalleryBkg.Fill + PressedFill: =RecipientGalleryBkg.Color + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Text: ="" + Width: =521 + X: =768 + Y: =EmailRecipientsGallery.Y + ZIndex: =21 + + AttendeeCount As label: + FocusedBorderColor: =AttendeeCount.BorderColor + FontWeight: =Semibold + Height: =28 + HoverBorderColor: =AttendeeCount.BorderColor + HoverColor: =AttendeeCount.Color + HoverFill: =AttendeeCount.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AttendeeCount.BorderColor + PressedColor: =AttendeeCount.Color + PressedFill: =AttendeeCount.Fill + Size: =10.5 + Text: ="Attendees (" & CountRows(EmailRecipients) & ")" + Visible: =CheckEmail.Value + Width: =507 + X: =768 + Y: =CheckEmail.Y + CheckEmail.Height + 27 + ZIndex: =22 + + EmailRecipientsGallery As gallery.galleryVertical: + DisabledBorderColor: =EmailRecipientsGallery.BorderColor + DisabledFill: =EmailRecipientsGallery.Fill + Height: =130 + HoverBorderColor: =EmailRecipientsGallery.BorderColor + HoverFill: =EmailRecipientsGallery.Fill + Items: =EmailRecipients + Layout: =Layout.Vertical + LoadingSpinnerColor: =EmailRecipientsGallery.BorderColor + PressedBorderColor: =EmailRecipientsGallery.BorderColor + PressedFill: =EmailRecipientsGallery.Fill + ShowScrollbar: =false + TemplatePadding: =10 + TemplateSize: =50 + Visible: =CheckEmail.Value + Width: =521 + WrapCount: =2 + X: =768 + Y: =CheckEmail.Y + CheckEmail.Height + 62 + ZIndex: =23 + + RecipientName1 As button: + Align: =If(MultiRecipients, Left, Center) + BorderColor: =RGBA(237, 41, 85, 1) + BorderThickness: =1 + Color: =RGBA(0, 0, 0, 1) + DisabledBorderColor: =ColorFade(RecipientName1.BorderColor, 70%) + Fill: =RGBA(237, 41, 85, 0.15) + FocusedBorderColor: =RecipientName1.BorderColor + FocusedBorderThickness: =1 + FontWeight: =Normal + Height: =44 + HoverBorderColor: =ColorFade(RecipientName1.BorderColor, 20%) + HoverColor: =RecipientName1.Color + HoverFill: =ColorFade(RecipientName1.Fill, 20%) + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =15 + PaddingRight: =40 + PaddingTop: =0 + PressedBorderColor: =RecipientName1.Fill + PressedColor: =RecipientName1.Color + PressedFill: =RecipientName1.Fill + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Size: =10.5 + Text: =ThisItem.DisplayName + Width: =Parent.TemplateWidth + X: =0.5 + Y: =6 + ZIndex: =1 + + RemoveIcon1 As icon.Cancel: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =RemoveIcon1.Fill + FocusedBorderColor: =RemoveIcon1.BorderColor + FocusedBorderThickness: =0 + Height: =44 + HoverBorderColor: =ColorFade(RemoveIcon1.BorderColor, 20%) + HoverColor: =ColorFade(RemoveIcon1.Color, 20%) + HoverFill: =RemoveIcon1.Fill + Icon: =Icon.Cancel + OnSelect: =Remove(EmailRecipients,ThisItem) + PaddingLeft: =10 + PaddingRight: =10 + PressedBorderColor: =ColorFade(RemoveIcon1.BorderColor, -20%) + PressedColor: =ColorFade(RemoveIcon1.Color, -20%) + PressedFill: =RemoveIcon1.Fill + Visible: =MultiRecipients + Width: =40 + X: =205.5 + Y: =6 + ZIndex: =2 + + AddAttendee As label: + FocusedBorderColor: =AddAttendee.BorderColor + FontWeight: =Semibold + Height: =28 + HoverBorderColor: =AddAttendee.BorderColor + HoverColor: =AddAttendee.Color + HoverFill: =AddAttendee.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AddAttendee.BorderColor + PressedColor: =AddAttendee.Color + PressedFill: =AddAttendee.Fill + Size: =10.5 + Text: ="Add attendee" + Visible: =CheckEmail.Value + Width: =507 + X: =768 + Y: =CheckEmail.Y + CheckEmail.Height + 205 + ZIndex: =24 + + AssnTaskSearchUser_1 As text: + BorderColor: =RGBA(227, 227, 227, 1) + Default: ="" + FocusedBorderColor: =AssnTaskSearchUser_1.BorderColor + FocusedBorderThickness: =2 + HintText: ="Search for users in your org" + Mode: =TextMode.MultiLine + PaddingBottom: =0 + PaddingLeft: =40 + PaddingTop: =10 + PressedBorderColor: =AssnTaskSearchUser_1.HoverBorderColor + PressedColor: =AssnTaskSearchUser_1.Color + PressedFill: =AssnTaskSearchUser_1.Fill + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Visible: =CheckEmail.Value + Width: =521 + X: =768 + Y: =CheckEmail.Y + CheckEmail.Height + 235 + ZIndex: =25 + + AssnTaskIcon_1 As icon.Search: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =AssnTaskIcon_1.Fill + FocusedBorderColor: =AssnTaskIcon_1.BorderColor + Height: =40 + HoverBorderColor: =ColorFade(AssnTaskIcon_1.BorderColor, 20%) + HoverColor: =ColorFade(AssnTaskIcon_1.Color, 20%) + HoverFill: =AssnTaskIcon_1.Fill + Icon: =Icon.Search + PressedBorderColor: =ColorFade(AssnTaskIcon_1.BorderColor, -20%) + PressedColor: =ColorFade(AssnTaskIcon_1.Color, -20%) + PressedFill: =AssnTaskIcon_1.Fill + Visible: =CheckEmail.Value + Width: =24 + X: =773 + Y: =AssnTaskSearchUser_1.Y + ZIndex: =26 + + UserSearchResults As gallery.galleryVertical: + DisabledBorderColor: =UserSearchResults.BorderColor + DisabledFill: =UserSearchResults.Fill + Height: =153 + HoverBorderColor: =UserSearchResults.BorderColor + HoverFill: =UserSearchResults.Fill + Items: |- + =If(!IsBlank(AssnTaskSearchUser_1.Text), Office365Users.SearchUser({searchTerm:Trim(AssnTaskSearchUser_1.Text), top:15})) + Layout: =Layout.Vertical + LoadingSpinnerColor: =UserSearchResults.BorderColor + OnSelect: =If(Not(ThisItem.Id in EmailRecipients.Id), Collect(EmailRecipients, ThisItem)) + PressedBorderColor: =UserSearchResults.BorderColor + PressedFill: =UserSearchResults.Fill + ShowScrollbar: =false + TemplateFill: =RGBA(0,0,0,0) + TemplatePadding: =15 + TemplateSize: =40 + Visible: =CheckEmail.Value + Width: =521 + X: =768 + Y: =CheckEmail.Y + CheckEmail.Height + 292 + ZIndex: =27 + + ResultImage As image: + FocusedBorderColor: =ResultImage.BorderColor + Height: =40 + HoverBorderColor: =ColorFade(ResultImage.BorderColor, 20%) + HoverFill: =ColorFade(ResultImage.Fill, 20%) + Image: |- + =If(!IsBlank(AssnTaskSearchUser_1.Text) && Not(IsBlank(ThisItem.Id)) && Office365Users.UserPhotoMetadata(ThisItem.Id).HasPhoto, + Office365Users.UserPhoto(ThisItem.Id), + 'default-profile' + ) + OnSelect: =Select(Parent) + PressedBorderColor: =ColorFade(ResultImage.BorderColor, -20%) + PressedFill: =ColorFade(ResultImage.Fill, -20%) + Width: =40 + X: =5 + ZIndex: =1 + + ResultDisplayName As label: + FocusedBorderColor: =ResultDisplayName.BorderColor + FontWeight: =Semibold + Height: =19 + HoverBorderColor: =ResultDisplayName.BorderColor + HoverColor: =ResultDisplayName.Color + HoverFill: =ResultDisplayName.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =ResultDisplayName.BorderColor + PressedColor: =ResultDisplayName.Color + PressedFill: =ResultDisplayName.Fill + Size: =8 + Text: =ThisItem.DisplayName + VerticalAlign: =VerticalAlign.Top + Width: =270 + X: =55 + Y: =5 + ZIndex: =2 + + ResultJobTitle As label: + FocusedBorderColor: =ResultJobTitle.BorderColor + Height: =14.4 + HoverBorderColor: =ResultJobTitle.BorderColor + HoverColor: =ResultJobTitle.Color + HoverFill: =ResultJobTitle.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =ResultJobTitle.BorderColor + PressedColor: =ResultJobTitle.Color + PressedFill: =ResultJobTitle.Fill + Size: =8 + Text: =ThisItem.JobTitle + Width: =270 + X: =55 + Y: =21 + ZIndex: =3 + + AddUser As icon.Add: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =AddUser.Fill + FocusedBorderColor: =AddUser.BorderColor + FocusedBorderThickness: =0 + Height: =40 + HoverBorderColor: =ColorFade(AddUser.BorderColor, 20%) + HoverColor: =ColorFade(AddUser.Color, 20%) + HoverFill: =AddUser.Fill + Icon: =Icon.Add + OnSelect: =Select(Parent) + PaddingBottom: =7 + PaddingLeft: =7 + PaddingRight: =7 + PaddingTop: =7 + PressedBorderColor: =ColorFade(AddUser.BorderColor, -20%) + PressedColor: =ColorFade(AddUser.Color, -20%) + PressedFill: =AddUser.Fill + Visible: =Not(ThisItem.UserPrincipalName in EmailRecipients.UserPrincipalName) + Width: =40 + X: =451 + ZIndex: =4 + + LoadingIndicator2_1 As label: + Align: =Center + FocusedBorderColor: =LoadingIndicator2_1.BorderColor + HoverBorderColor: =LoadingIndicator2_1.BorderColor + HoverColor: =LoadingIndicator2_1.Color + HoverFill: =LoadingIndicator2_1.Fill + PressedBorderColor: =LoadingIndicator2_1.BorderColor + PressedColor: =LoadingIndicator2_1.Color + PressedFill: =LoadingIndicator2_1.Fill + Text: ="Searching for users..." + Visible: =CountRows(UserSearchResults.AllItems) < 0 && CheckEmail.Value + Width: =370 + X: =836 + Y: =667 + ZIndex: =36 + + ExportPlanner As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =55 + + CheckPlanner As checkbox: + BorderColor: =RGBA(237, 41, 85, 1) + CheckboxBackgroundFill: =RGBA(255,255,255,1) + CheckboxBorderColor: =RGBA(237, 41, 85, 1) + CheckboxSize: =45 + CheckmarkFill: =RGBA(237, 41, 85, 1) + Default: =If(CountRows(Tasks) > 1, true, false) + DisplayMode: =If(CountRows(Tasks) > 0, DisplayMode.Edit, Disabled) + FocusedBorderColor: =CheckPlanner.BorderColor + FocusedBorderThickness: =0 + HoverBorderColor: =ColorFade(CheckPlanner.BorderColor, 30%) + HoverFill: =ColorFade(CheckPlanner.Fill, 30%) + OnUncheck: |- + =Set(SelectedPlan, Blank()); + Set(SelectedBucket, Blank()) + PressedBorderColor: =ColorFade(CheckPlanner.BorderColor, -30%) + PressedFill: =ColorFade(CheckPlanner.Fill, -30%) + Text: ="" + Width: =63 + X: =70 + Y: =CheckOneNote.Y + 224 + ZIndex: =8 + + PlannerIcon As image: + FocusedBorderColor: =PlannerIcon.BorderColor + Height: =24 + HoverBorderColor: =ColorFade(PlannerIcon.BorderColor, 20%) + HoverFill: =ColorFade(PlannerIcon.Fill, 20%) + Image: =planner + PressedBorderColor: =ColorFade(PlannerIcon.BorderColor, -20%) + PressedFill: =ColorFade(PlannerIcon.Fill, -20%) + Width: =24 + X: =133 + Y: =CheckPlanner.Y + 15 + ZIndex: =14 + + OfficePlanner As label: + FocusedBorderColor: =OfficePlanner.BorderColor + FontWeight: =Semibold + Height: =54 + HoverBorderColor: =OfficePlanner.BorderColor + HoverColor: =OfficePlanner.Color + HoverFill: =OfficePlanner.Fill + PressedBorderColor: =OfficePlanner.BorderColor + PressedColor: =OfficePlanner.Color + PressedFill: =OfficePlanner.Fill + Size: =15 + Text: ="Office Planner" + Width: =176 + X: =166 + Y: =CheckPlanner.Y + ZIndex: =15 + + PlannerExportDescript As label: + FocusedBorderColor: =PlannerExportDescript.BorderColor + FontWeight: =Semibold + Height: =28 + HoverBorderColor: =PlannerExportDescript.BorderColor + HoverColor: =PlannerExportDescript.Color + HoverFill: =PlannerExportDescript.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =PlannerExportDescript.BorderColor + PressedColor: =PlannerExportDescript.Color + PressedFill: =PlannerExportDescript.Fill + Size: =10.5 + Text: ="Sync assigned tasks with Office Planner" + Width: =507 + X: =133 + Y: =CheckPlanner.Y + CheckPlanner.Height - 3 + ZIndex: =16 + + ShowPlannerSelection As button: + BorderColor: =RGBA(237, 41, 85, 1) + BorderThickness: =1 + Color: =RGBA(237, 41, 85, 1) + DisabledBorderColor: =ColorFade(ShowPlannerSelection.BorderColor, 70%) + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =ShowPlannerSelection.BorderColor + FocusedBorderThickness: =1 + Height: =44 + HoverBorderColor: =ColorFade(ShowPlannerSelection.BorderColor, 20%) + HoverColor: =ShowPlannerSelection.Color + HoverFill: =ColorFade(ShowPlannerSelection.Fill, 20%) + OnSelect: |- + =Set(ShowPlanner, true); + Navigate(ExportPopUpsScreen, None) + PressedBorderColor: =ShowPlannerSelection.Fill + PressedColor: =ShowPlannerSelection.Fill + PressedFill: =ShowPlannerSelection.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =10.5 + Text: =If(PlannerExportTo.Height > 0, "Select new location", "Select Location") + Visible: =CheckPlanner.Value + Width: =170 + X: =133 + Y: =PlannerExportTo.Y + PlannerExportTo.Height + 20 + ZIndex: =17 + + PlannerExportLocation As label: + FocusedBorderColor: =PlannerExportLocation.BorderColor + Height: =28 + HoverBorderColor: =PlannerExportLocation.BorderColor + HoverColor: =PlannerExportLocation.Color + HoverFill: =PlannerExportLocation.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =PlannerExportLocation.BorderColor + PressedColor: =PlannerExportLocation.Color + PressedFill: =PlannerExportLocation.Fill + Size: =10.5 + Text: =SelectedPlan.'data-ADB4D7A662F548B49FAC2B986E348A1Btitle' & " - " & SelectedBucket.'data-ADB4D7A662F548B49FAC2B986E348A1Bname' + Visible: =CheckPlanner.Value && PlannerExportTo.Height > 0 + Width: =423 + X: =206 + Y: =PlannerExportTo.Y + ZIndex: =37 + + PlannerExportTo As label: + Color: =RGBA(155, 155, 155, 1) + FocusedBorderColor: =PlannerExportTo.BorderColor + Height: =If(IsBlank(SelectedBucket), 0, 28) + HoverBorderColor: =PlannerExportTo.BorderColor + HoverColor: =PlannerExportTo.Color + HoverFill: =PlannerExportTo.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =PlannerExportTo.BorderColor + PressedColor: =PlannerExportTo.Color + PressedFill: =PlannerExportTo.Fill + Size: =10.5 + Text: |- + ="Export to:" + Visible: =CheckPlanner.Value + Width: =73 + X: =133 + Y: =CheckPlanner.Y + CheckPlanner.Height + 28 + ZIndex: =38 + + Rectangle7_2 As rectangle: + DisabledFill: =Rectangle7_2.Fill + DisplayMode: =DisplayMode.View + Fill: =RGBA(215, 218, 221, 1) + FocusedBorderColor: =Rectangle7_2.BorderColor + Height: =2 + HoverFill: =Rectangle7_2.Fill + PressedFill: =Rectangle7_2.Fill + Visible: =CheckPlanner.Value && PlannerExportTo.Height > 0 + Width: =PlannerExportLocation.Width + PlannerExportTo.Width + X: =PlannerExportTo.X + Y: =PlannerExportTo.Y + ZIndex: =39 + + Rectangle7_3 As rectangle: + DisabledFill: =Rectangle7_3.Fill + DisplayMode: =DisplayMode.View + Fill: =RGBA(215, 218, 221, 1) + FocusedBorderColor: =Rectangle7_3.BorderColor + Height: =2 + HoverFill: =Rectangle7_3.Fill + PressedFill: =Rectangle7_3.Fill + Visible: =CheckPlanner.Value && PlannerExportTo.Height > 0 + Width: =PlannerExportLocation.Width + PlannerExportTo.Width + X: =PlannerExportTo.X + Y: =PlannerExportTo.Y + PlannerExportTo.Height + ZIndex: =40 + diff --git a/example/src/meetingcapturedemo/Src/FollowUpScreen.fx.yaml b/example/src/meetingcapturedemo/Src/FollowUpScreen.fx.yaml new file mode 100644 index 0000000..75d5cdd --- /dev/null +++ b/example/src/meetingcapturedemo/Src/FollowUpScreen.fx.yaml @@ -0,0 +1,466 @@ +FollowUpScreen As screen: + Height: =Max(App.Height, App.DesignHeight) + OnVisible: |- + =/*Schedule follow up for this meeting*/ + Set(ExportConfirmed, false); + ClearCollect(FollowUpMeetingAttendees, MeetingAttendees) + Orientation: =If(FollowUpScreen.Width < FollowUpScreen.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= FollowUpScreen.Width) + Width: =Max(App.Width, App.DesignWidth) + + FollowUpBanner As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =18 + + Rectangle2_8 As rectangle: + DisabledFill: =Rectangle2_8.Fill + Fill: =RGBA(234, 237, 239, 1) + FocusedBorderColor: =Rectangle2_8.BorderColor + Height: =66 + HoverFill: =Rectangle2_8.Fill + PressedFill: =Rectangle2_8.Fill + Width: =1366 + ZIndex: =1 + + AppIcon7 As image: + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =AppIcon7.BorderColor + Height: =66 + HoverBorderColor: =ColorFade(AppIcon7.BorderColor, 20%) + HoverFill: =ColorFade(AppIcon7.Fill, 20%) + Image: ='nav-logo' + ImagePosition: =ImagePosition.Center + PressedBorderColor: =ColorFade(AppIcon7.BorderColor, -20%) + PressedFill: =ColorFade(AppIcon7.Fill, -20%) + Width: =75 + ZIndex: =2 + + FollowUpHeader As label: + FocusedBorderColor: =FollowUpHeader.BorderColor + FontWeight: =Lighter + Height: =49 + HoverBorderColor: =FollowUpHeader.BorderColor + HoverColor: =FollowUpHeader.Color + HoverFill: =FollowUpHeader.Fill + PressedBorderColor: =FollowUpHeader.BorderColor + PressedColor: =FollowUpHeader.Color + PressedFill: =FollowUpHeader.Fill + Size: =27 + Text: ="Schedule a follow up meeting" + Width: =1251 + X: =70+0 + Y: =115+0 + ZIndex: =4 + + Rectangle6_5 As rectangle: + DisabledFill: =Rectangle6_5.Fill + Fill: =RGBA(227, 227, 227, 1) + FocusedBorderColor: =Rectangle6_5.BorderColor + FocusedBorderThickness: =0 + Height: =1 + HoverFill: =Rectangle6_5.Fill + PressedFill: =Rectangle6_5.Fill + Width: =FollowUpHeader.Width + X: =FollowUpHeader.X + Y: =FollowUpHeader.Y + FollowUpHeader.Height + 20 + ZIndex: =5 + + FindAvailableTimesButton As button: + BorderColor: =ColorFade(FindAvailableTimesButton.Fill, -15%) + DisabledBorderColor: =ColorFade(FindAvailableTimesButton.BorderColor, 70%) + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =FindAvailableTimesButton.BorderColor + Height: =44 + HoverBorderColor: =ColorFade(FindAvailableTimesButton.BorderColor, 20%) + HoverColor: =FindAvailableTimesButton.Color + HoverFill: =ColorFade(FindAvailableTimesButton.Fill, 20%) + OnSelect: =Navigate(FollowUpTimesScreen, None) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =FindAvailableTimesButton.Fill + PressedColor: =FindAvailableTimesButton.Fill + PressedFill: =FindAvailableTimesButton.Color + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Size: =11 + Text: ="Find Available Times" + Width: =287 + X: =1034+0 + Y: =118+0 + ZIndex: =17 + + FollowUpAttendees As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =18 + + FollowUpGallBkg As button: + BorderColor: =RGBA(227, 227, 227, 1) + Color: =RGBA(227, 227, 227, 1) + DisabledBorderColor: =ColorFade(FollowUpGallBkg.BorderColor, 70%) + Fill: =RGBA(62,96,170,0) + FocusedBorderColor: =FollowUpGallBkg.BorderColor + Height: =197 + HoverBorderColor: =ColorFade(FollowUpGallBkg.BorderColor, 20%) + HoverColor: =FollowUpGallBkg.Color + HoverFill: =ColorFade(FollowUpGallBkg.Fill, 20%) + PressedBorderColor: =FollowUpGallBkg.Fill + PressedColor: =FollowUpGallBkg.Fill + PressedFill: =FollowUpGallBkg.Color + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Text: ="" + Width: =521 + X: =70 + Y: =241 + ZIndex: =6 + + FollowUpAttendeeCount As label: + FocusedBorderColor: =FollowUpAttendeeCount.BorderColor + FontWeight: =Semibold + Height: =41 + HoverBorderColor: =FollowUpAttendeeCount.BorderColor + HoverColor: =FollowUpAttendeeCount.Color + HoverFill: =FollowUpAttendeeCount.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =FollowUpAttendeeCount.BorderColor + PressedColor: =FollowUpAttendeeCount.Color + PressedFill: =FollowUpAttendeeCount.Fill + Size: =15 + Text: ="Attendees (" & CountRows(FollowUpMeetingAttendees) & ")" + Width: =507 + X: =70 + Y: =194 + ZIndex: =7 + + FollowUpAttendeesGall As gallery.galleryVertical: + DisabledBorderColor: =FollowUpAttendeesGall.BorderColor + DisabledFill: =FollowUpAttendeesGall.Fill + Height: =197 + HoverBorderColor: =FollowUpAttendeesGall.BorderColor + HoverFill: =FollowUpAttendeesGall.Fill + Items: =FollowUpMeetingAttendees + Layout: =Layout.Vertical + LoadingSpinnerColor: =FollowUpAttendeesGall.BorderColor + PressedBorderColor: =FollowUpAttendeesGall.BorderColor + PressedFill: =FollowUpAttendeesGall.Fill + ShowScrollbar: =false + TemplatePadding: =10 + TemplateSize: =50 + Width: =521 + WrapCount: =2 + X: =70 + Y: =241 + ZIndex: =8 + + FollowUpAttendee As button: + Align: =If(MultiRecipients, Left, Center) + BorderColor: =RGBA(237, 41, 85, 1) + BorderThickness: =1 + Color: =RGBA(0, 0, 0, 1) + DisabledBorderColor: =ColorFade(FollowUpAttendee.BorderColor, 70%) + Fill: =RGBA(237, 41, 85, 0.15) + FocusedBorderColor: =FollowUpAttendee.BorderColor + FocusedBorderThickness: =1 + FontWeight: =Normal + Height: =44 + HoverBorderColor: =ColorFade(FollowUpAttendee.BorderColor, 20%) + HoverColor: =FollowUpAttendee.Color + HoverFill: =ColorFade(FollowUpAttendee.Fill, 20%) + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =15 + PaddingRight: =40 + PaddingTop: =0 + PressedBorderColor: =FollowUpAttendee.Fill + PressedColor: =FollowUpAttendee.Color + PressedFill: =FollowUpAttendee.Fill + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Size: =10.5 + Text: =ThisItem.DisplayName + Width: =Parent.TemplateWidth + Y: =6 + ZIndex: =1 + + RemoveFollowUpAttendee As icon.Cancel: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =RemoveFollowUpAttendee.Fill + FocusedBorderColor: =RemoveFollowUpAttendee.BorderColor + Height: =44 + HoverBorderColor: =ColorFade(RemoveFollowUpAttendee.BorderColor, 20%) + HoverColor: =ColorFade(RemoveFollowUpAttendee.Color, 20%) + HoverFill: =RemoveFollowUpAttendee.Fill + Icon: =Icon.Cancel + OnSelect: =Remove(FollowUpMeetingAttendees,ThisItem) + PaddingLeft: =10 + PaddingRight: =10 + PressedBorderColor: =ColorFade(RemoveFollowUpAttendee.BorderColor, -20%) + PressedColor: =ColorFade(RemoveFollowUpAttendee.Color, -20%) + PressedFill: =RemoveFollowUpAttendee.Fill + Visible: =MultiRecipients + Width: =40 + X: =205.5 + Y: =6 + ZIndex: =2 + + AddFollowUpAttendee As label: + FocusedBorderColor: =AddFollowUpAttendee.BorderColor + FontWeight: =Semibold + Height: =28 + HoverBorderColor: =AddFollowUpAttendee.BorderColor + HoverColor: =AddFollowUpAttendee.Color + HoverFill: =AddFollowUpAttendee.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AddFollowUpAttendee.BorderColor + PressedColor: =AddFollowUpAttendee.Color + PressedFill: =AddFollowUpAttendee.Fill + Size: =10.5 + Text: ="Add attendee" + Visible: =CheckEmail.Value + Width: =507 + X: =70 + Y: =461 + ZIndex: =9 + + FollowUpSearchText As text: + BorderColor: =RGBA(227, 227, 227, 1) + Default: ="" + FocusedBorderColor: =FollowUpSearchText.BorderColor + FocusedBorderThickness: =2 + HintText: ="Search for users in your org" + Mode: =TextMode.MultiLine + PaddingBottom: =0 + PaddingLeft: =40 + PaddingTop: =10 + PressedBorderColor: =FollowUpSearchText.HoverBorderColor + PressedColor: =FollowUpSearchText.Color + PressedFill: =FollowUpSearchText.Fill + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Width: =521 + X: =70 + Y: =489 + ZIndex: =10 + + FollowUpSearchIcon As icon.Search: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =FollowUpSearchIcon.Fill + FocusedBorderColor: =FollowUpSearchIcon.BorderColor + Height: =40 + HoverBorderColor: =ColorFade(FollowUpSearchIcon.BorderColor, 20%) + HoverColor: =ColorFade(FollowUpSearchIcon.Color, 20%) + HoverFill: =FollowUpSearchIcon.Fill + Icon: =Icon.Search + PressedBorderColor: =ColorFade(FollowUpSearchIcon.BorderColor, -20%) + PressedColor: =ColorFade(FollowUpSearchIcon.Color, -20%) + PressedFill: =FollowUpSearchIcon.Fill + Width: =24 + X: =75 + Y: =489 + ZIndex: =11 + + FollowUpSearchUserResults As gallery.galleryVertical: + DisabledBorderColor: =FollowUpSearchUserResults.BorderColor + DisabledFill: =FollowUpSearchUserResults.Fill + Height: =153 + HoverBorderColor: =FollowUpSearchUserResults.BorderColor + HoverFill: =FollowUpSearchUserResults.Fill + Items: |- + =If(!IsBlank(FollowUpSearchText.Text), Office365Users.SearchUser({searchTerm:Trim(FollowUpSearchText.Text), top:15})) + Layout: =Layout.Vertical + LoadingSpinnerColor: =FollowUpSearchUserResults.BorderColor + OnSelect: =If(Not(ThisItem.Id in FollowUpMeetingAttendees.Id), Collect(FollowUpMeetingAttendees, ThisItem)) + PressedBorderColor: =FollowUpSearchUserResults.BorderColor + PressedFill: =FollowUpSearchUserResults.Fill + ShowScrollbar: =false + TemplatePadding: =15 + TemplateSize: =40 + Width: =521 + X: =70 + Y: =538 + ZIndex: =12 + + FollowUpAddImage As image: + FocusedBorderColor: =FollowUpAddImage.BorderColor + Height: =40 + HoverBorderColor: =ColorFade(FollowUpAddImage.BorderColor, 20%) + HoverFill: =ColorFade(FollowUpAddImage.Fill, 20%) + Image: |- + =If(!IsBlank(FollowUpSearchText.Text) && Not(IsBlank(ThisItem.Id)) && Office365Users.UserPhotoMetadata(ThisItem.Id).HasPhoto, + Office365Users.UserPhoto(ThisItem.Id), + 'default-profile' + ) + OnSelect: =Select(Parent) + PressedBorderColor: =ColorFade(FollowUpAddImage.BorderColor, -20%) + PressedFill: =ColorFade(FollowUpAddImage.Fill, -20%) + Width: =40 + X: =5 + ZIndex: =1 + + FollowUpAddDisplayName As label: + FocusedBorderColor: =FollowUpAddDisplayName.BorderColor + FontWeight: =Semibold + Height: =19 + HoverBorderColor: =FollowUpAddDisplayName.BorderColor + HoverColor: =FollowUpAddDisplayName.Color + HoverFill: =FollowUpAddDisplayName.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =FollowUpAddDisplayName.BorderColor + PressedColor: =FollowUpAddDisplayName.Color + PressedFill: =FollowUpAddDisplayName.Fill + Size: =8 + Text: =ThisItem.DisplayName + VerticalAlign: =VerticalAlign.Top + Width: =270 + X: =55 + Y: =5 + ZIndex: =2 + + FollowUpAddJobTitle As label: + FocusedBorderColor: =FollowUpAddJobTitle.BorderColor + Height: =14.4 + HoverBorderColor: =FollowUpAddJobTitle.BorderColor + HoverColor: =FollowUpAddJobTitle.Color + HoverFill: =FollowUpAddJobTitle.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =FollowUpAddJobTitle.BorderColor + PressedColor: =FollowUpAddJobTitle.Color + PressedFill: =FollowUpAddJobTitle.Fill + Size: =8 + Text: =ThisItem.JobTitle + Width: =270 + X: =55 + Y: =21 + ZIndex: =3 + + FollowUpAddUser As icon.Add: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =FollowUpAddUser.Fill + FocusedBorderColor: =FollowUpAddUser.BorderColor + FocusedBorderThickness: =0 + Height: =40 + HoverBorderColor: =ColorFade(FollowUpAddUser.BorderColor, 20%) + HoverColor: =ColorFade(FollowUpAddUser.Color, 20%) + HoverFill: =FollowUpAddUser.Fill + Icon: =Icon.Add + OnSelect: =Select(Parent) + PaddingBottom: =7 + PaddingLeft: =7 + PaddingRight: =7 + PaddingTop: =7 + PressedBorderColor: =ColorFade(FollowUpAddUser.BorderColor, -20%) + PressedColor: =ColorFade(FollowUpAddUser.Color, -20%) + PressedFill: =FollowUpAddUser.Fill + Width: =40 + X: =451 + ZIndex: =4 + + FollowUpDetails As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =18 + + Label16_3 As label: + FocusedBorderColor: =Label16_3.BorderColor + FontWeight: =Semibold + Height: =41 + HoverBorderColor: =Label16_3.BorderColor + HoverColor: =Label16_3.Color + HoverFill: =Label16_3.Fill + PressedBorderColor: =Label16_3.BorderColor + PressedColor: =Label16_3.Color + PressedFill: =Label16_3.Fill + Size: =15 + Text: ="Subject" + Width: =300 + X: =713 + Y: =195 + ZIndex: =13 + + FollowUpSubject As text: + BorderColor: =RGBA(227, 227, 227, 1) + Default: |- + ="Follow Up: " & SelectedMeeting.Subject + FocusedBorderColor: =FollowUpSubject.BorderColor + Height: =44 + PressedBorderColor: =FollowUpSubject.HoverBorderColor + PressedColor: =FollowUpSubject.Color + PressedFill: =FollowUpSubject.Fill + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =13.5 + Width: =608 + X: =713 + Y: =Label16_3.Y + Label16_3.Height + 10 + ZIndex: =14 + + Label16_4 As label: + FocusedBorderColor: =Label16_4.BorderColor + FontWeight: =Semibold + Height: =41 + HoverBorderColor: =Label16_4.BorderColor + HoverColor: =Label16_4.Color + HoverFill: =Label16_4.Fill + PressedBorderColor: =Label16_4.BorderColor + PressedColor: =Label16_4.Color + PressedFill: =Label16_4.Fill + Size: =15 + Text: ="Message" + Width: =300 + X: =713 + Y: =FollowUpSubject.Y + FollowUpSubject.Height + 30 + ZIndex: =15 + + FollowUpMessage As text: + BorderColor: =RGBA(227, 227, 227, 1) + Default: ="" + FocusedBorderColor: =FollowUpMessage.BorderColor + Height: =167 + Mode: =TextMode.MultiLine + PressedBorderColor: =FollowUpMessage.HoverBorderColor + PressedColor: =FollowUpMessage.Color + PressedFill: =FollowUpMessage.Fill + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =13.5 + Width: =608 + X: =713 + Y: =Label16_4.Y + Label16_4.Height + 10 + ZIndex: =16 + diff --git a/example/src/meetingcapturedemo/Src/FollowUpTimesScreen.fx.yaml b/example/src/meetingcapturedemo/Src/FollowUpTimesScreen.fx.yaml new file mode 100644 index 0000000..97e7d4e --- /dev/null +++ b/example/src/meetingcapturedemo/Src/FollowUpTimesScreen.fx.yaml @@ -0,0 +1,553 @@ +FollowUpTimesScreen As screen: + Height: =Max(App.Height, App.DesignHeight) + OnVisible: |- + =/*Collections used in galleries and drop downs on this screen + - MeetingDurations + - HoursList + */ + ClearCollect(MeetingDurations, + {Name:"30 minutes", Minutes:30},{Name:"1 hour", Minutes:60},{Name:"90 minutes", Minutes:90},{Name:"2 hours", Minutes:120}, + {Name:"2.5 hours", Minutes:150},{Name:"3 hours", Minutes:180},{Name:"3.5 hours", Minutes:210},{Name:"4 hours", Minutes:240}); + + ClearCollect(HoursList, {Name:"12:00 am",Minutes:0}, {Name:"12:30 am",Minutes:30}, {Name:"01:00 am",Minutes:60}, {Name:"01:30 am",Minutes:90}, {Name:"02:00 am",Minutes:120}, {Name:"02:30 am",Minutes:150}, {Name:"03:00 am",Minutes:180}, {Name:"03:30 am",Minutes:210}, {Name:"04:00 am",Minutes:240, Short: "4 am"}, {Name:"04:30 am",Minutes:270}, {Name:"05:00 am",Minutes:300}, {Name:"05:30 am",Minutes:330}, {Name:"06:00 am",Minutes:360}, {Name:"06:30 am",Minutes:390}, {Name:"07:00 am",Minutes:420}, {Name:"07:30 am",Minutes:450}, {Name:"08:00 am",Minutes:480, Short: "8 am"}, {Name:"08:30 am",Minutes:510}, {Name:"09:00 am",Minutes:540}, {Name:"09:30 am",Minutes:570}, {Name:"10:00 am",Minutes:600}, {Name:"10:30 am",Minutes:630}, {Name:"11:00 am",Minutes:660}, {Name:"11:30 am",Minutes:690}, {Name:"12:00 pm",Minutes:720, Short: "12 pm" + }, {Name:"12:30 pm",Minutes:750}, {Name:"01:00 pm",Minutes:780}, {Name:"01:30 pm",Minutes:810}, {Name:"02:00 pm",Minutes:840}, {Name:"02:30 pm",Minutes:870}, {Name:"03:00 pm",Minutes:900}, {Name:"03:30 pm",Minutes:930}, {Name:"04:00 pm",Minutes:960, Short: "4 pm"}, {Name:"04:30 pm",Minutes:990}, {Name:"05:00 pm",Minutes:1020}, {Name:"05:30 pm",Minutes:1050}, {Name:"06:00 pm",Minutes:1080}, {Name:"06:30 pm",Minutes:1110}, {Name:"07:00 pm",Minutes:1140}, {Name:"07:30 pm",Minutes:1170}, {Name:"08:00 pm",Minutes:1200, Short: "8 pm"}, {Name:"08:30 pm",Minutes:1230}, {Name:"09:00 pm",Minutes:1260}, {Name:"09:30 pm",Minutes:1290}, {Name:"10:00 pm",Minutes:1320}, {Name:"10:30 pm",Minutes:1350}, {Name:"11:00 pm",Minutes:1380}, {Name:"11:30 pm",Minutes:1410}) + Orientation: =If(FollowUpTimesScreen.Width < FollowUpTimesScreen.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= FollowUpTimesScreen.Width) + Width: =Max(App.Width, App.DesignWidth) + + FollowUpTimesBanner As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =29 + + Rectangle2_9 As rectangle: + DisabledFill: =Rectangle2_9.Fill + Fill: =RGBA(234, 237, 239, 1) + FocusedBorderColor: =Rectangle2_9.BorderColor + Height: =66 + HoverFill: =Rectangle2_9.Fill + PressedFill: =Rectangle2_9.Fill + Width: =1366 + ZIndex: =1 + + AppIcon8 As image: + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =AppIcon8.BorderColor + Height: =66 + HoverBorderColor: =ColorFade(AppIcon8.BorderColor, 20%) + HoverFill: =ColorFade(AppIcon8.Fill, 20%) + Image: ='nav-logo' + ImagePosition: =ImagePosition.Center + PressedBorderColor: =ColorFade(AppIcon8.BorderColor, -20%) + PressedFill: =ColorFade(AppIcon8.Fill, -20%) + Width: =75 + ZIndex: =2 + + FollowUpTimesHeader As label: + FocusedBorderColor: =FollowUpTimesHeader.BorderColor + FontWeight: =Lighter + Height: =49 + HoverBorderColor: =FollowUpTimesHeader.BorderColor + HoverColor: =FollowUpTimesHeader.Color + HoverFill: =FollowUpTimesHeader.Fill + PressedBorderColor: =FollowUpTimesHeader.BorderColor + PressedColor: =FollowUpTimesHeader.Color + PressedFill: =FollowUpTimesHeader.Fill + Size: =27 + Text: ="Schedule a follow up meeting" + Width: =1251 + X: =70+0 + Y: =115+0 + ZIndex: =4 + + Rectangle6_6 As rectangle: + DisabledFill: =Rectangle6_6.Fill + Fill: =RGBA(227, 227, 227, 1) + FocusedBorderColor: =Rectangle6_6.BorderColor + FocusedBorderThickness: =0 + Height: =1 + HoverFill: =Rectangle6_6.Fill + PressedFill: =Rectangle6_6.Fill + Width: =FollowUpTimesHeader.Width + X: =FollowUpTimesHeader.X + Y: =FollowUpTimesHeader.Y + FollowUpTimesHeader.Height + 20 + ZIndex: =5 + + SendInvite As button: + BorderColor: =ColorFade(SendInvite.Fill, -15%) + DisabledBorderColor: =ColorFade(SendInvite.BorderColor, 70%) + DisplayMode: =If(IsBlank(FollowUpStart) || IsBlank(FollowUpEnd),Disabled,Edit) + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =SendInvite.BorderColor + Height: =44 + HoverBorderColor: =ColorFade(SendInvite.BorderColor, 20%) + HoverColor: =SendInvite.Color + HoverFill: =ColorFade(SendInvite.Fill, 20%) + OnSelect: |- + =/*creates calendar event for meeting*/ + UpdateContext({requiredAttendees:Concat(FollowUpMeetingAttendees, UserPrincipalName & ";")}); + UpdateContext({requiredAttendees:Left(requiredAttendees, Len(requiredAttendees)-1)}); + Office365Outlook.V4CalendarPostItem(MyCalendarID, FollowUpSubject.Text, FollowUpStart, FollowUpEnd, "UTC",{importance:"Normal", body:FollowUpMessage.Text, showAs:"busy", requiredAttendees:requiredAttendees}); + Set(FollowUpConfirmed, true); + Navigate(ConfirmScreen,None) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =SendInvite.Fill + PressedColor: =SendInvite.Fill + PressedFill: =SendInvite.Color + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Size: =11 + Text: ="Send Invite" + Width: =121 + X: =1200 + Y: =118 + ZIndex: =26 + + DateTimeSelection As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =29 + + Label20_10 As label: + FocusedBorderColor: =Label20_10.BorderColor + FontWeight: =Semibold + Height: =41 + HoverBorderColor: =Label20_10.BorderColor + HoverColor: =Label20_10.Color + HoverFill: =Label20_10.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =Label20_10.BorderColor + PressedColor: =Label20_10.Color + PressedFill: =Label20_10.Fill + Size: =15 + Text: ="Desired date for the meeting" + Width: =507 + X: =70 + Y: =194 + ZIndex: =7 + + DatePicker1 As datepicker: + BorderColor: =RGBA(227, 227, 227, 1) + FocusedBorderColor: =DatePicker1.BorderColor + HoverBorderColor: =DatePicker1.BorderColor + HoverFill: =DatePicker1.Fill + InputTextPlaceholder: =Text(Date(2001,12,31), DatePicker1.Format, DatePicker1.Language) + IsEditable: =true + PaddingTop: =5 + PressedBorderColor: =DatePicker1.BorderColor + PressedFill: =DatePicker1.Fill + Size: =11 + X: =70 + Y: =235 + ZIndex: =18 + + Label20_12 As label: + FocusedBorderColor: =Label20_12.BorderColor + FontWeight: =Semibold + Height: =41 + HoverBorderColor: =Label20_12.BorderColor + HoverColor: =Label20_12.Color + HoverFill: =Label20_12.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =Label20_12.BorderColor + PressedColor: =Label20_12.Color + PressedFill: =Label20_12.Fill + Size: =15 + Text: ="Desired time range" + Width: =507 + X: =70 + Y: =306 + ZIndex: =19 + + MeetingEndRange As dropdown: + BorderColor: =RGBA(155, 155, 155, 1) + BorderThickness: =1 + ChevronBackground: =RGBA(0, 0, 0, 0) + ChevronFill: =RGBA(237, 41, 85, 1) + ChevronHoverBackground: =MeetingEndRange.ChevronBackground + ChevronHoverFill: =RGBA(255,255,255,1) + Default: =LookUp(HoursList,Minutes = 1020).Name + FocusedBorderColor: =MeetingEndRange.BorderColor + HoverBorderColor: =ColorFade(MeetingEndRange.BorderColor, 15%) + Items: =HoursList + OnChange: = + PressedBorderColor: =MeetingEndRange.HoverBorderColor + Width: =174 + X: =263 + Y: =430 + ZIndex: =20 + + MeetingStartRange As dropdown: + BorderColor: =RGBA(155, 155, 155, 1) + BorderThickness: =1 + ChevronBackground: =RGBA(0, 0, 0, 0) + ChevronFill: =RGBA(237, 41, 85, 1) + ChevronHoverBackground: =MeetingStartRange.ChevronBackground + ChevronHoverFill: =RGBA(255,255,255,1) + Default: =LookUp(HoursList,Minutes = 480).Name + FocusedBorderColor: =MeetingStartRange.BorderColor + HoverBorderColor: =ColorFade(MeetingStartRange.BorderColor, 15%) + Items: =HoursList + PressedBorderColor: =MeetingStartRange.HoverBorderColor + Width: =174 + X: =70 + Y: =430 + ZIndex: =21 + + Label20_13 As label: + FocusedBorderColor: =Label20_13.BorderColor + FontWeight: =Semibold + Height: =41 + HoverBorderColor: =Label20_13.BorderColor + HoverColor: =Label20_13.Color + HoverFill: =Label20_13.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =Label20_13.BorderColor + PressedColor: =Label20_13.Color + PressedFill: =Label20_13.Fill + Size: =15 + Text: ="Meeting duration" + Width: =507 + X: =70 + Y: =513 + ZIndex: =22 + + MeetingDurationSelection As dropdown: + BorderColor: =RGBA(155, 155, 155, 1) + BorderThickness: =1 + ChevronBackground: =RGBA(0, 0, 0, 0) + ChevronFill: =RGBA(237, 41, 85, 1) + ChevronHoverBackground: =MeetingDurationSelection.ChevronBackground + ChevronHoverFill: =RGBA(255,255,255,1) + FocusedBorderColor: =MeetingDurationSelection.BorderColor + HoverBorderColor: =ColorFade(MeetingDurationSelection.BorderColor, 15%) + Items: =MeetingDurations + PressedBorderColor: =MeetingDurationSelection.HoverBorderColor + Width: =367 + X: =70 + Y: =566 + ZIndex: =23 + + LoadAvailableTimes As button: + BorderColor: =RGBA(237, 41, 85, 1) + Color: =RGBA(237, 41, 85, 1) + DisabledBorderColor: =ColorFade(LoadAvailableTimes.BorderColor, 70%) + DisplayMode: =If(MeetingStartRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes' = MeetingEndRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes' || MeetingEndRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes' < MeetingStartRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes', DisplayMode.Disabled, DisplayMode.Edit) + Fill: =White + FocusedBorderColor: =LoadAvailableTimes.BorderColor + Height: =44 + HoverBorderColor: =ColorFade(LoadAvailableTimes.BorderColor, 20%) + HoverColor: =LoadAvailableTimes.Color + HoverFill: =ColorFade(LoadAvailableTimes.Fill, 20%) + OnSelect: |- + =Set(Loading, true); + /* + Collects available meeting times for attendees based on user determined data from this page. Adds 'StartTime' and 'EndTime' columns to the collection as a means of simplifying the MeetingTimeSlot column + */ + ClearCollect(MeetingTimes,AddColumns(Office365Outlook.FindMeetingTimes({MaxCandidates:15,MinimumAttendeePercentage: 1, MeetingDuration: MeetingDurationSelection.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes',Start:Text(DateAdd(DatePicker1.SelectedDate,MeetingStartRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes', Minutes), UTC),End:Text(DateAdd(DatePicker1.SelectedDate, MeetingEndRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes', Minutes), UTC),RequiredAttendees:Concat(FollowUpMeetingAttendees,UserPrincipalName & ";")}).MeetingTimeSuggestions,"StartTime",MeetingTimeSlot.Start.DateTime, + "EndTime",MeetingTimeSlot.End.DateTime)); + Set(ShowMeetingTimes, true); + Set(Loading, false) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =LoadAvailableTimes.Fill + PressedColor: =LoadAvailableTimes.Fill + PressedFill: =LoadAvailableTimes.Color + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Size: =11 + Text: ="Find Available Times" + Width: =287 + X: =70 + Y: =663 + ZIndex: =24 + + TimeLine As gallery.galleryHorizontal: + DisabledBorderColor: =TimeLine.BorderColor + DisabledFill: =TimeLine.Fill + Height: =89 + HoverBorderColor: =TimeLine.BorderColor + HoverFill: =TimeLine.Fill + Items: =HoursList + LoadingSpinnerColor: =TimeLine.BorderColor + PressedBorderColor: =TimeLine.BorderColor + PressedFill: =TimeLine.Fill + TemplatePadding: =0 + TemplateSize: =8 + Width: =395 + X: =70 + Y: =324 + ZIndex: =28 + + TimeRangeSelected As rectangle: + DisabledFill: =TimeRangeSelected.Fill + Fill: =If(ThisItem.Minutes >= MeetingStartRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes' && ThisItem.Minutes <= MeetingEndRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes', RGBA(97, 114, 129, 1), RGBA(202, 212, 221, 1)) + FocusedBorderColor: =TimeRangeSelected.BorderColor + Height: =3 + HoverFill: =TimeRangeSelected.Fill + PressedFill: =TimeRangeSelected.Fill + Width: =If(ThisItem.Minutes = 1410, 2, 8) + X: =If(ThisItem.Minutes = 0, 2, 0) + Y: =58 + ZIndex: =1 + + TimeTicks As rectangle: + DisabledFill: =TimeTicks.Fill + Fill: =RGBA(151, 151, 151, 1) + FocusedBorderColor: =TimeTicks.BorderColor + Height: =If(!IsBlank(ThisItem.Short), 18, Mod(ThisItem.Minutes, 60) = 0, 10, 5) + HoverFill: =TimeTicks.Fill + OnSelect: =Select(Parent) + PressedFill: =TimeTicks.Fill + Width: =2 + X: =2 + Y: =TimeRangeSelected.Y + TimeRangeSelected.Height/2 - TimeTicks.Height/2 + ZIndex: =2 + + StartEndIndicator As circle: + DisabledFill: =StartEndIndicator.Fill + Fill: =RGBA(97, 114, 129, 1) + FocusedBorderColor: =StartEndIndicator.BorderColor + Height: =9 + HoverFill: =StartEndIndicator.Fill + OnSelect: =Select(Parent) + PressedFill: =StartEndIndicator.Fill + Visible: =And(MeetingStartRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes' = ThisItem.Minutes || MeetingEndRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes' = ThisItem.Minutes, HorizontalLine.Visible) + Width: =9 + X: =TimeTicks.X + TimeTicks.Width/2 - StartEndIndicator.Width/2 + Y: =TimeRangeSelected.Y + TimeRangeSelected.Height/2 - StartEndIndicator.Height/2 + ZIndex: =3 + + TimeLineTimeText As label: + Align: =Center + FocusedBorderColor: =TimeLineTimeText.BorderColor + Height: =15 + HoverBorderColor: =TimeLineTimeText.BorderColor + HoverColor: =TimeLineTimeText.Color + HoverFill: =TimeLineTimeText.Fill + OnSelect: =Select(Parent) + PressedBorderColor: =TimeLineTimeText.BorderColor + PressedColor: =TimeLineTimeText.Color + PressedFill: =TimeLineTimeText.Fill + Size: =7 + Text: =ThisItem.Short + Visible: =Mod(ThisItem.Minutes, 240) = 0 + Width: =8+32 + X: =-TimeLineTimeText.Width/2 + Y: =74 + ZIndex: =4 + + HorizontalLine As rectangle: + DisabledFill: =HorizontalLine.Fill + Fill: = RGBA(97, 114, 129, 1) + FocusedBorderColor: =HorizontalLine.BorderColor + Height: =3 + HoverFill: =HorizontalLine.Fill + PressedFill: =HorizontalLine.Fill + Visible: =ThisItem.Minutes >= MeetingStartRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes' && ThisItem.Minutes <= MeetingEndRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes' + Width: =If(ThisItem.Minutes = 1410, 2, 8) + X: =TimeRangeSelected.X + Y: =TimeRangeSelected.Y + ZIndex: =5 + + AvailableTimesSelect As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =30 + + SelectAvailableTime As label: + FocusedBorderColor: =SelectAvailableTime.BorderColor + FontWeight: =Semibold + Height: =41 + HoverBorderColor: =SelectAvailableTime.BorderColor + HoverColor: =SelectAvailableTime.Color + HoverFill: =SelectAvailableTime.Fill + PressedBorderColor: =SelectAvailableTime.BorderColor + PressedColor: =SelectAvailableTime.Color + PressedFill: =SelectAvailableTime.Fill + Size: =15 + Text: ="Select an available time" + Visible: =ShowMeetingTimes + Width: =300 + X: =713 + Y: =195 + ZIndex: =13 + + AvailableTimesGall As gallery.galleryVertical: + DisabledBorderColor: =AvailableTimesGall.BorderColor + DisabledFill: =AvailableTimesGall.Fill + Height: =488 + HoverBorderColor: =AvailableTimesGall.BorderColor + HoverFill: =AvailableTimesGall.Fill + Items: =SortByColumns(MeetingTimes,"Confidence",Descending,"StartTime",Ascending) + Layout: =Layout.Vertical + LoadingSpinnerColor: =AvailableTimesGall.BorderColor + PressedBorderColor: =AvailableTimesGall.BorderColor + PressedFill: =AvailableTimesGall.Fill + TemplateFill: |- + =/*ensures top gallery item doesn't appear selected on first load*/ + If(FollowUpStart = ThisItem.StartTime && FollowUpEnd = ThisItem.EndTime && ThisItem.IsSelected, RGBA(237, 41, 85, 0.15), RGBA(0,0,0,0)) + TemplateSize: =96 + Visible: =!Loading + Width: =646 + X: =713 + Y: =236 + ZIndex: =25 + + AttendeeAvailabilityText As label: + Color: =RGBA(97, 114, 129, 1) + FocusedBorderColor: =AttendeeAvailabilityText.BorderColor + HoverBorderColor: =AttendeeAvailabilityText.BorderColor + HoverColor: =AttendeeAvailabilityText.Color + HoverFill: =AttendeeAvailabilityText.Fill + OnSelect: =Select(Parent) + PressedBorderColor: =AttendeeAvailabilityText.BorderColor + PressedColor: =AttendeeAvailabilityText.Color + PressedFill: =AttendeeAvailabilityText.Fill + Text: |- + =Round(ThisItem.Confidence,1) & "% attendee availability:" + Width: =280 + X: =7 + Y: =3 + ZIndex: =1 + + SelectFollowUpTime As button: + BorderColor: =RGBA(237, 41, 85, 1) + Color: =RGBA(237, 41, 85, 1) + DisabledBorderColor: =ColorFade(SelectFollowUpTime.BorderColor, 70%) + DisplayMode: =If(MeetingStartRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes' = MeetingEndRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes' || MeetingEndRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes' < MeetingStartRange.SelectedText.'data-ADB4D7A662F548B49FAC2B986E348A1BMinutes', DisplayMode.Disabled, DisplayMode.Edit) + Fill: =AvailableTimesGall.Fill + FocusedBorderColor: =SelectFollowUpTime.BorderColor + Height: =44 + HoverBorderColor: =ColorFade(SelectFollowUpTime.BorderColor, 20%) + HoverColor: =SelectFollowUpTime.Color + HoverFill: =ColorFade(SelectFollowUpTime.Fill, 20%) + OnSelect: |- + =Set(FollowUpStart,ThisItem.StartTime); + Set(FollowUpEnd,ThisItem.EndTime) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =SelectFollowUpTime.Fill + PressedColor: =SelectFollowUpTime.Fill + PressedFill: =SelectFollowUpTime.Color + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Size: =13.5 + Text: | + =If(!IsBlank(ThisItem.MeetingTimeSlot), + /* + Retrieved times are in UTC. This converts and displays them to local region time + */ + Text(DateAdd(DateTimeValue(ThisItem.StartTime), -TimeZoneOffset(DateTimeValue(ThisItem.StartTime)), Minutes), "[$-en-US]hh:mm AM/PM") & " - " & + Text(DateAdd(DateTimeValue(ThisItem.EndTime), -TimeZoneOffset(DateTimeValue(ThisItem.EndTime)), Minutes), "[$-en-US]hh:mm AM/PM") + ) + Width: =280 + X: =7 + Y: =43 + ZIndex: =2 + + UnableToAttendIcon As image: + FocusedBorderColor: =UnableToAttendIcon.BorderColor + Height: =16 + HoverBorderColor: =ColorFade(UnableToAttendIcon.BorderColor, 20%) + HoverFill: =ColorFade(UnableToAttendIcon.Fill, 20%) + Image: ='unable-to-attend' + OnSelect: =Select(Parent) + PressedBorderColor: =ColorFade(UnableToAttendIcon.BorderColor, -20%) + PressedFill: =ColorFade(UnableToAttendIcon.Fill, -20%) + Width: =16 + X: =304 + Y: =16 + ZIndex: =3 + + UnableToAttend As label: + Color: =RGBA(97, 114, 129, 1) + FocusedBorderColor: =UnableToAttend.BorderColor + FontWeight: =Semibold + Height: =17 + HoverBorderColor: =UnableToAttend.BorderColor + HoverColor: =UnableToAttend.Color + HoverFill: =UnableToAttend.Fill + OnSelect: =Select(Parent) + PressedBorderColor: =UnableToAttend.BorderColor + PressedColor: =UnableToAttend.Color + PressedFill: =UnableToAttend.Fill + Size: =10 + Text: |- + ="Unable to attend:" + Width: =218 + X: =323 + Y: =16 + ZIndex: =4 + + CantAttend As label: + Color: =RGBA(97, 114, 129, 1) + FocusedBorderColor: =AttendeeAvailabilityText.BorderColor + Height: =56 + HoverBorderColor: =AttendeeAvailabilityText.BorderColor + HoverColor: =AttendeeAvailabilityText.Color + HoverFill: =AttendeeAvailabilityText.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AttendeeAvailabilityText.BorderColor + PressedColor: =AttendeeAvailabilityText.Color + PressedFill: =AttendeeAvailabilityText.Fill + Size: =8 + Text: |- + =/* + Displays all attendees whose availability does not equal "Free" or "Tentative" during this time + */ + Mid(Concat(Filter(ThisItem.AttendeeAvailability,Not(Availability = "Free" || Availability = "Tentative")),", " & LookUp(FollowUpMeetingAttendees, UserPrincipalName = Attendee.EmailAddress.Address).DisplayName), 3) + VerticalAlign: =VerticalAlign.Top + Width: =324 + X: =304 + Y: =40 + ZIndex: =5 + + LoadingIndicator3 As label: + FocusedBorderColor: =LoadingIndicator3.BorderColor + Height: =70 + HoverBorderColor: =LoadingIndicator3.BorderColor + HoverColor: =LoadingIndicator3.Color + HoverFill: =LoadingIndicator3.Fill + PressedBorderColor: =LoadingIndicator3.BorderColor + PressedColor: =LoadingIndicator3.Color + PressedFill: =LoadingIndicator3.Fill + Text: ="Retrieving available times..." + Visible: =Loading + Width: =472 + X: =800 + Y: =445 + ZIndex: =29 + diff --git a/example/src/meetingcapturedemo/Src/HomePopUpsScreen.fx.yaml b/example/src/meetingcapturedemo/Src/HomePopUpsScreen.fx.yaml new file mode 100644 index 0000000..9ac42cf --- /dev/null +++ b/example/src/meetingcapturedemo/Src/HomePopUpsScreen.fx.yaml @@ -0,0 +1,670 @@ +HomePopUpsScreen As screen: + Height: =Max(App.Height, App.DesignHeight) + OnVisible: |- + =/*Gathers and stores the Office 365 profiles of the meeting attendees if they are within the app user's org*/ + If(IsEmpty(MeetingAttendees), + Set(Loading, true); + ClearCollect(MeetingAttendeeEmails, Filter(Split(Concatenate(SelectedMeeting.RequiredAttendees, + SelectedMeeting.OptionalAttendees), ";"), Result <> "")); + ClearCollect(MeetingAttendeesTemp, ForAll(MeetingAttendeeEmails, If(Lower(MyDomain) = Lower(Last(Split(Result, "@")).Result), Office365Users.UserProfileV2(Result), {displayName: Result, id: "", image: Blank(), jobTitle: "", userPrincipalName: Result}))); + ClearCollect(MeetingAttendees, RenameColumns(MeetingAttendeesTemp, "id", "Id", "jobTitle", "JobTitle", "displayName", "DisplayName", "userPrincipalName", "UserPrincipalName")); + Set(SelectedMeetingDuration, DateDiff(SelectedMeeting.Start, SelectedMeeting.End, Seconds)); + Set(Loading, false) + ) + Orientation: =If(HomePopUpsScreen.Width < HomePopUpsScreen.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= HomePopUpsScreen.Width) + Width: =Max(App.Width, App.DesignWidth) + + Image1 As image: + FocusedBorderColor: =Image1.BorderColor + Height: =768 + HoverBorderColor: =ColorFade(Image1.BorderColor, 20%) + HoverFill: =ColorFade(Image1.Fill, 20%) + Image: =MeetingCaptureBkg + PressedBorderColor: =ColorFade(Image1.BorderColor, -20%) + PressedFill: =ColorFade(Image1.Fill, -20%) + Width: =1366 + ZIndex: =1 + + Label3 As label: + Fill: =RGBA(255,255,255,1) + FocusedBorderColor: =Label3.BorderColor + HoverBorderColor: =Label3.BorderColor + HoverColor: =Label3.Color + HoverFill: =Label3.Fill + PressedBorderColor: =Label3.BorderColor + PressedColor: =Label3.Color + PressedFill: =Label3.Fill + Text: = + Visible: =!ShowDataLossWarning + Width: =220 + X: =158 + Y: =292 + ZIndex: =2 + + HomeModalOverlay_1 As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =25 + + ModalOverlay_2 As rectangle: + DisabledFill: =ModalOverlay_2.Fill + Fill: =RGBA(0,0,0,.7) + FocusedBorderColor: =ModalOverlay_2.BorderColor + Height: =768 + HoverFill: =ModalOverlay_2.Fill + PressedFill: =ModalOverlay_2.Fill + Visible: =ShowOverlay || ShowDataLossWarning + Width: =1366 + ZIndex: =3 + + ModalForeground_1 As rectangle: + DisabledFill: =ModalForeground_1.Fill + Fill: =White + FocusedBorderColor: =ModalForeground_1.BorderColor + Height: =If(ShowDataLossWarning, 280, !UserSelected, 700, 500) + HoverFill: =ModalForeground_1.Fill + PressedFill: =ModalForeground_1.Fill + Visible: =ShowOverlay || ShowDataLossWarning + Width: =428 + X: =Parent.Width/2 - ModalForeground_1.Width/2 + Y: =Parent.Height/2 - ModalForeground_1.Height/2 + ZIndex: =4 + + AssnTaskHeader_1 As label: + Align: =Left + FocusedBorderColor: =AssnTaskHeader_1.BorderColor + FontWeight: =Lighter + Height: =94 + HoverBorderColor: =AssnTaskHeader_1.BorderColor + HoverColor: =AssnTaskHeader_1.Color + HoverFill: =AssnTaskHeader_1.Fill + PressedBorderColor: =AssnTaskHeader_1.BorderColor + PressedColor: =AssnTaskHeader_1.Color + PressedFill: =AssnTaskHeader_1.Fill + Size: =27 + Text: =If(ShowDataLossWarning, "Welcome to your meeting!", "Assign Task") + Visible: =ShowOverlay || ShowDataLossWarning + Width: =ModalForeground_1.Width - 30 + X: =ModalForeground_1.X + 15 + Y: =ModalForeground_1.Y+5 + ZIndex: =5 + + AssnTaskDescription_1 As text: + BorderColor: =RGBA(227, 227, 227, 1) + Default: =If(TaskSelected, SelectedTask.Name, TaskTitle.Text) + FocusedBorderColor: =AssnTaskDescription_1.BorderColor + FocusedBorderThickness: =2 + Height: =85 + Mode: =TextMode.MultiLine + PaddingBottom: =15 + PaddingLeft: =18 + PaddingRight: =18 + PaddingTop: =15 + PressedBorderColor: =AssnTaskDescription_1.HoverBorderColor + PressedColor: =AssnTaskDescription_1.Color + PressedFill: =AssnTaskDescription_1.Fill + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Visible: =ShowOverlay + Width: =ModalForeground_1.Width - 30 + X: =ModalForeground_1.X + 15 + Y: =AssnTaskHeader_1.Y + AssnTaskHeader_1.Height + 10 + ZIndex: =6 + + AssnTaskDateHeader_1 As label: + FocusedBorderColor: =AssnTaskDateHeader_1.BorderColor + FontWeight: =Semibold + Height: =24 + HoverBorderColor: =AssnTaskDateHeader_1.BorderColor + HoverColor: =AssnTaskDateHeader_1.Color + HoverFill: =AssnTaskDateHeader_1.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AssnTaskDateHeader_1.BorderColor + PressedColor: =AssnTaskDateHeader_1.Color + PressedFill: =AssnTaskDateHeader_1.Fill + Size: =10.5 + Text: ="Due date" + Visible: =ShowOverlay + X: =AssnTaskDescription_1.X + Y: =AssnTaskDescription_1.Y + AssnTaskDescription_1.Height + 15 + ZIndex: =7 + + AssnTaskDueDate_1 As datepicker: + BorderColor: =RGBA(227, 227, 227, 1) + DefaultDate: =If(TaskSelected, SelectedTask.DueDate,DateAdd(Today(), 1, Days)) + FocusedBorderColor: =AssnTaskDueDate_1.BorderColor + HoverBorderColor: =AssnTaskDueDate_1.BorderColor + HoverFill: =AssnTaskDueDate_1.Fill + InputTextPlaceholder: =Text(Date(2001,12,31), AssnTaskDueDate_1.Format, AssnTaskDueDate_1.Language) + IsEditable: =true + PressedBorderColor: =AssnTaskDueDate_1.BorderColor + PressedFill: =AssnTaskDueDate_1.Fill + Visible: =ShowOverlay + Width: =398 + X: =AssnTaskDescription_1.X + Y: =AssnTaskDateHeader_1.Y + AssnTaskDateHeader_1.Height + 10 + ZIndex: =8 + + AssnTaskToHeader_1 As label: + FocusedBorderColor: =AssnTaskToHeader_1.BorderColor + FontWeight: =Semibold + Height: =24 + HoverBorderColor: =AssnTaskToHeader_1.BorderColor + HoverColor: =AssnTaskToHeader_1.Color + HoverFill: =AssnTaskToHeader_1.Fill + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AssnTaskToHeader_1.BorderColor + PressedColor: =AssnTaskToHeader_1.Color + PressedFill: =AssnTaskToHeader_1.Fill + Size: =10.5 + Text: ="Assign to (your org only)" + Visible: =ShowOverlay + Width: =196 + X: =AssnTaskDescription_1.X + Y: =AssnTaskDueDate_1.Y + AssnTaskDueDate_1.Height + 15 + ZIndex: =9 + + AssnTaskGallery_2 As gallery.galleryVertical: + DisabledBorderColor: =AssnTaskGallery_2.BorderColor + DisabledFill: =AssnTaskGallery_2.Fill + Height: =230 + HoverBorderColor: =AssnTaskGallery_2.BorderColor + HoverFill: =AssnTaskGallery_2.Fill + Items: |- + =/* + In-org attendee gallery for task assignment + If the attendee DisplayName is an actual name and not an email address, then they are in the app user's org, so we can assign them a task. + Tasks are stored in an 0365 tenant, so cannot be assigned to external users + */ + Filter(AttendeeGallery1.AllItems, Not(".com" in DisplayName)) + Layout: =Layout.Vertical + LoadingSpinnerColor: =AssnTaskGallery_2.BorderColor + OnSelect: |- + =If(AssnTaskGallery_2.Visible, + Set(UserSelected, true); + Set(SelectedUser, {DisplayName:AssnTaskGallery_2.Selected.DisplayName, Id:AssnTaskGallery_2.Selected.Id, Image: AssnTaskGallery_2.Selected.AssnTaskUserImg_3.Image, JobTitle:AssnTaskGallery_2.Selected.JobTitle}) + ) + PressedBorderColor: =AssnTaskGallery_2.BorderColor + PressedFill: =AssnTaskGallery_2.Fill + ShowScrollbar: =false + TemplatePadding: =15 + TemplateSize: =40 + Visible: =ShowOverlay && IsBlank(AssnTaskSearchUser_2.Text) && !UserSelected && CountRows(AssnTaskGallery_2.AllItems) > 0 + Width: =398 + X: =AssnTaskDescription_1.X + Y: =360 + ZIndex: =10 + + AssnTaskUserImg_3 As image: + FocusedBorderColor: =AssnTaskUserImg_3.BorderColor + Height: =40 + HoverBorderColor: =ColorFade(AssnTaskUserImg_3.BorderColor, 20%) + HoverFill: =ColorFade(AssnTaskUserImg_3.Fill, 20%) + Image: =ThisItem.AttendeeImage + OnSelect: =Select(Parent) + PressedBorderColor: =ColorFade(AssnTaskUserImg_3.BorderColor, -20%) + PressedFill: =ColorFade(AssnTaskUserImg_3.Fill, -20%) + Width: =40 + X: =5 + ZIndex: =1 + + AssnTaskUserName_3 As label: + FocusedBorderColor: =AssnTaskUserName_3.BorderColor + FontWeight: =Semibold + Height: =19 + HoverBorderColor: =AssnTaskUserName_3.BorderColor + HoverColor: =AssnTaskUserName_3.Color + HoverFill: =AssnTaskUserName_3.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AssnTaskUserName_3.BorderColor + PressedColor: =AssnTaskUserName_3.Color + PressedFill: =AssnTaskUserName_3.Fill + Size: =8 + Text: =ThisItem.DisplayName + VerticalAlign: =VerticalAlign.Top + Width: =270 + X: =55 + Y: =5 + ZIndex: =2 + + AssnTaskUserJob_3 As label: + FocusedBorderColor: =AssnTaskUserJob_3.BorderColor + Height: =14.4 + HoverBorderColor: =AssnTaskUserJob_3.BorderColor + HoverColor: =AssnTaskUserJob_3.Color + HoverFill: =AssnTaskUserJob_3.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AssnTaskUserJob_3.BorderColor + PressedColor: =AssnTaskUserJob_3.Color + PressedFill: =AssnTaskUserJob_3.Fill + Size: =8 + Text: =ThisItem.JobTitle + Width: =270 + X: =55 + Y: =21 + ZIndex: =3 + + AssnTaskSearchUser_2 As text: + BorderColor: =RGBA(227, 227, 227, 1) + Default: ="" + FocusedBorderColor: =AssnTaskSearchUser_2.BorderColor + FocusedBorderThickness: =2 + HintText: ="Search for users in your org" + Mode: =TextMode.MultiLine + PaddingBottom: =0 + PaddingLeft: =40 + PaddingTop: =10 + PressedBorderColor: =AssnTaskSearchUser_2.HoverBorderColor + PressedColor: =AssnTaskSearchUser_2.Color + PressedFill: =AssnTaskSearchUser_2.Fill + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Visible: =ShowOverlay && !UserSelected + Width: =AssnTaskGallery_2.Width - 20 + X: =AssnTaskGallery_2.X + 10 + Y: =CancelAssnTask_1.Y - AssnTaskSearchUser_2.Height - 30 + ZIndex: =11 + + AssnTaskSearchIcon_1 As icon.Search: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =AssnTaskSearchIcon_1.Fill + FocusedBorderColor: =AssnTaskSearchIcon_1.BorderColor + Height: =40 + HoverBorderColor: =ColorFade(AssnTaskSearchIcon_1.BorderColor, 20%) + HoverColor: =ColorFade(AssnTaskSearchIcon_1.Color, 20%) + HoverFill: =AssnTaskSearchIcon_1.Fill + Icon: =Icon.Search + PressedBorderColor: =ColorFade(AssnTaskSearchIcon_1.BorderColor, -20%) + PressedColor: =ColorFade(AssnTaskSearchIcon_1.Color, -20%) + PressedFill: =AssnTaskSearchIcon_1.Fill + Visible: =ShowOverlay && !UserSelected + Width: =24 + X: =AssnTaskSearchUser_2.X + 8 + Y: =AssnTaskSearchUser_2.Y + ZIndex: =12 + + CancelAssnTask_1 As button: + BorderColor: =RGBA(237, 41, 85, 1) + BorderThickness: =1 + Color: =RGBA(237, 41, 85, 1) + DisabledBorderColor: =ColorFade(CancelAssnTask_1.BorderColor, 70%) + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =CancelAssnTask_1.BorderColor + FocusedBorderThickness: =1 + Height: =44 + HoverBorderColor: =ColorFade(CancelAssnTask_1.BorderColor, 20%) + HoverColor: =CancelAssnTask_1.Color + HoverFill: =ColorFade(CancelAssnTask_1.Fill, 20%) + OnSelect: |- + =Navigate(HomeScreen, None); + Set(ShowOverlay, !ShowOverlay); + If(TaskSelected, RemoveIf(Tasks, Id = SelectedTask.Id)); + Set(UserSelected, false); + Set(UserSelectedFromTasks, false); + Set(TaskSelected, false); + Reset(AssnTaskSearchUser_2); + Reset(AssnTaskDueDate_1); + Reset(AssnTaskDescription_1); + Reset(TaskTitle) + PressedBorderColor: =CancelAssnTask_1.Fill + PressedColor: =CancelAssnTask_1.Fill + PressedFill: =CancelAssnTask_1.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =10.5 + Text: =If(TaskSelected, "Delete", "Cancel") + Visible: =ShowOverlay + Width: =170 + X: =AssnTaskDescription_1.X + 10 + Y: =ModalForeground_1.Y + ModalForeground_1.Height - 60 + ZIndex: =13 + + SaveAssnTask_1 As button: + BorderColor: =RGBA(237, 41, 85, 1) + BorderThickness: =1 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =ColorFade(SaveAssnTask_1.BorderColor, 70%) + DisplayMode: =If(IsBlank(AssnTaskDescription_1.Text) || IsBlank(AssnTaskDueDate_1.SelectedDate) || AssnTaskDueDate_1.SelectedDate < Today() || !UserSelected, Disabled, Edit) + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =SaveAssnTask_1.BorderColor + FocusedBorderThickness: =1 + Height: =44 + HoverBorderColor: =ColorFade(SaveAssnTask_1.BorderColor, 20%) + HoverColor: =SaveAssnTask_1.Color + HoverFill: =ColorFade(SaveAssnTask_1.Fill, 20%) + OnSelect: |- + =Navigate(HomeScreen, None); + Set(ShowOverlay, !ShowOverlay); + /*If user is making a new task, collect the information from form, otherwise, revise the task the user is editing*/ + If(!TaskSelected, + Collect(Tasks, {Id: CountRows(Tasks)+1, Name:AssnTaskDescription_1.Text, DueDate: AssnTaskDueDate_1.SelectedDate, + AssignToUser: SelectedUser}), + Patch(Tasks, LookUp(Tasks, Id=SelectedTask.Id), {Name:AssnTaskDescription_1.Text, DueDate: AssnTaskDueDate_1.SelectedDate, AssignToUser: SelectedUser})); + Set(UserSelected, false); + Set(UserSelectedFromTasks, false); + Set(TaskSelected, false); + Reset(AssnTaskSearchUser_2); + Reset(AssnTaskDueDate_1); + Reset(AssnTaskDescription_1); + Reset(TaskTitle) + PressedBorderColor: =SaveAssnTask_1.Fill + PressedColor: =SaveAssnTask_1.Fill + PressedFill: =SaveAssnTask_1.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =10.5 + Text: ="Save task" + Visible: =ShowOverlay + Width: =170 + X: =702 + Y: =ModalForeground_1.Y + ModalForeground_1.Height - 60 + ZIndex: =14 + + AssnTaskGallery_3 As gallery.galleryVertical: + DisabledBorderColor: =AssnTaskGallery_3.BorderColor + DisabledFill: =AssnTaskGallery_3.Fill + Height: =If(!UserSelected, 230, 70) + HoverBorderColor: =AssnTaskGallery_3.BorderColor + HoverFill: =AssnTaskGallery_3.Fill + Items: |- + =/*User search gallery*/ + If(!IsBlank(AssnTaskSearchUser_2.Text), Office365Users.SearchUser({searchTerm:Trim(AssnTaskSearchUser_2.Text), top:15})) + Layout: =Layout.Vertical + LoadingSpinnerColor: =AssnTaskGallery_3.BorderColor + OnSelect: |- + =Set(SelectedUser, {DisplayName:AssnTaskGallery_3.Selected.DisplayName, Id:AssnTaskGallery_3.Selected.Id, Image: AssnTaskGallery_3.Selected.AssnTaskUserImg_4.Image, JobTitle:AssnTaskGallery_3.Selected.JobTitle}); + Set(UserSelected, true) + PressedBorderColor: =AssnTaskGallery_3.BorderColor + PressedFill: =AssnTaskGallery_3.Fill + ShowScrollbar: =false + TemplatePadding: =15 + TemplateSize: =40 + Visible: =ShowOverlay && !IsBlank(AssnTaskSearchUser_2.Text) && !UserSelected + Width: =398 + X: =AssnTaskGallery_2.X + Y: =AssnTaskGallery_2.Y + ZIndex: =15 + + AssnTaskUserImg_4 As image: + FocusedBorderColor: =AssnTaskUserImg_4.BorderColor + Height: =40 + HoverBorderColor: =ColorFade(AssnTaskUserImg_4.BorderColor, 20%) + HoverFill: =ColorFade(AssnTaskUserImg_4.Fill, 20%) + Image: |- + =If(!IsBlank(AssnTaskSearchUser_2.Text) && Not(IsBlank(ThisItem.Id)) && Office365Users.UserPhotoMetadata(ThisItem.Id).HasPhoto, + Office365Users.UserPhoto(ThisItem.Id), + 'default-profile' + ) + OnSelect: =Select(Parent) + PressedBorderColor: =ColorFade(AssnTaskUserImg_4.BorderColor, -20%) + PressedFill: =ColorFade(AssnTaskUserImg_4.Fill, -20%) + Width: =40 + X: =5 + ZIndex: =1 + + AssnTaskUserName_4 As label: + FocusedBorderColor: =AssnTaskUserName_4.BorderColor + FontWeight: =Semibold + Height: =19 + HoverBorderColor: =AssnTaskUserName_4.BorderColor + HoverColor: =AssnTaskUserName_4.Color + HoverFill: =AssnTaskUserName_4.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AssnTaskUserName_4.BorderColor + PressedColor: =AssnTaskUserName_4.Color + PressedFill: =AssnTaskUserName_4.Fill + Size: =8 + Text: =ThisItem.DisplayName + VerticalAlign: =VerticalAlign.Top + Width: =270 + X: =55 + Y: =5 + ZIndex: =2 + + AssnTaskUserJob_4 As label: + FocusedBorderColor: =AssnTaskUserJob_4.BorderColor + Height: =14.4 + HoverBorderColor: =AssnTaskUserJob_4.BorderColor + HoverColor: =AssnTaskUserJob_4.Color + HoverFill: =AssnTaskUserJob_4.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AssnTaskUserJob_4.BorderColor + PressedColor: =AssnTaskUserJob_4.Color + PressedFill: =AssnTaskUserJob_4.Fill + Size: =8 + Text: =ThisItem.JobTitle + Width: =270 + X: =55 + Y: =21 + ZIndex: =3 + + LoadingIndicator2_2 As label: + Align: =Center + FocusedBorderColor: =LoadingIndicator2_2.BorderColor + HoverBorderColor: =LoadingIndicator2_2.BorderColor + HoverColor: =LoadingIndicator2_2.Color + HoverFill: =LoadingIndicator2_2.Fill + PressedBorderColor: =LoadingIndicator2_2.BorderColor + PressedColor: =LoadingIndicator2_2.Color + PressedFill: =LoadingIndicator2_2.Fill + Text: ="Searching for users..." + Visible: =AssnTaskGallery_3.Visible && CountRows(AssnTaskGallery_3.AllItems) = 0 + Width: =370 + X: =498 + Y: =426 + ZIndex: =16 + + AssnTaskUserImg_5 As image: + FocusedBorderColor: =AssnTaskUserImg_5.BorderColor + Height: =40 + HoverBorderColor: =ColorFade(AssnTaskUserImg_5.BorderColor, 20%) + HoverFill: =ColorFade(AssnTaskUserImg_5.Fill, 20%) + Image: =If(UserSelectedFromTasks,SelectedUserTasks.Image,SelectedUser.Image) + OnSelect: = + PressedBorderColor: =ColorFade(AssnTaskUserImg_5.BorderColor, -20%) + PressedFill: =ColorFade(AssnTaskUserImg_5.Fill, -20%) + Visible: =UserSelected + Width: =40 + X: =498 + Y: =464 + ZIndex: =17 + + AssnTaskUserName_5 As label: + FocusedBorderColor: =AssnTaskUserName_5.BorderColor + FontWeight: =Semibold + Height: =19 + HoverBorderColor: =AssnTaskUserName_5.BorderColor + HoverColor: =AssnTaskUserName_5.Color + HoverFill: =AssnTaskUserName_5.Fill + OnSelect: = + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AssnTaskUserName_5.BorderColor + PressedColor: =AssnTaskUserName_5.Color + PressedFill: =AssnTaskUserName_5.Fill + Size: =8 + Text: =If(UserSelectedFromTasks,SelectedUserTasks.DisplayName,SelectedUser.DisplayName) + VerticalAlign: =VerticalAlign.Top + Visible: =UserSelected + Width: =270 + X: =548 + Y: =469 + ZIndex: =18 + + AssnTaskUserJob_5 As label: + FocusedBorderColor: =AssnTaskUserJob_5.BorderColor + Height: =14.4 + HoverBorderColor: =AssnTaskUserJob_5.BorderColor + HoverColor: =AssnTaskUserJob_5.Color + HoverFill: =AssnTaskUserJob_5.Fill + OnSelect: = + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AssnTaskUserJob_5.BorderColor + PressedColor: =AssnTaskUserJob_5.Color + PressedFill: =AssnTaskUserJob_5.Fill + Size: =8 + Text: =If(UserSelectedFromTasks,SelectedUserTasks.JobTitle,SelectedUser.JobTitle) + Visible: =UserSelected + Width: =270 + X: =548 + Y: =485 + ZIndex: =19 + + UnassignTask2_1 As circle: + BorderColor: =RGBA(208, 5, 30, 1) + BorderThickness: =2 + DisabledFill: =UnassignTask2_1.Fill + Fill: =RGBA(62,96,170,0) + FocusedBorderColor: =UnassignTask2_1.BorderColor + Height: =30 + HoverFill: =UnassignTask2_1.Fill + OnSelect: =Set(UserSelected, false) + PressedFill: =UnassignTask2_1.Fill + Visible: =UserSelected + Width: =30 + X: =826 + Y: =469 + ZIndex: =20 + + UnassignTask1_1 As icon.Cancel: + Color: =RGBA(208, 5, 30, 1) + DisabledFill: =UnassignTask1_1.Fill + FocusedBorderColor: =UnassignTask1_1.BorderColor + Height: =30 + HoverBorderColor: =ColorFade(UnassignTask1_1.BorderColor, 20%) + HoverColor: =ColorFade(UnassignTask1_1.Color, 20%) + HoverFill: =UnassignTask1_1.Fill + Icon: =Icon.Cancel + OnSelect: |- + =Set(UserSelected, false); + Set(UserSelectedFromTasks, false) + PaddingBottom: =4 + PaddingLeft: =5 + PaddingRight: =4 + PaddingTop: =4 + PressedBorderColor: =ColorFade(UnassignTask1_1.BorderColor, -20%) + PressedColor: =ColorFade(UnassignTask1_1.Color, -20%) + PressedFill: =UnassignTask1_1.Fill + Visible: =UserSelected + Width: =30 + X: =UnassignTask2_1.X + Y: =UnassignTask2_1.Y + ZIndex: =21 + + DeleteTaskIcon_1 As icon.Trash: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =DeleteTaskIcon_1.Fill + FocusedBorderColor: =DeleteTaskIcon_1.BorderColor + Height: =20 + HoverBorderColor: =ColorFade(DeleteTaskIcon_1.BorderColor, 20%) + HoverColor: =ColorFade(DeleteTaskIcon_1.Color, 20%) + HoverFill: =DeleteTaskIcon_1.Fill + Icon: =Icon.Trash + OnSelect: =Select(CancelAssnTask_1) + PressedBorderColor: =ColorFade(DeleteTaskIcon_1.BorderColor, -20%) + PressedColor: =ColorFade(DeleteTaskIcon_1.Color, -20%) + PressedFill: =DeleteTaskIcon_1.Fill + Visible: =TaskSelected + Width: =20 + X: =550 + Y: =CancelAssnTask_1.Y + CancelAssnTask_1.Height/2 - DeleteTaskIcon_1.Height/2 + ZIndex: =22 + + DataWarningAccept_1 As button: + BorderColor: =ColorFade(DataWarningAccept_1.Fill, -15%) + DisabledBorderColor: =ColorFade(DataWarningAccept_1.BorderColor, 70%) + DisplayMode: =Edit + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =DataWarningAccept_1.BorderColor + Height: =44 + HoverBorderColor: =ColorFade(DataWarningAccept_1.BorderColor, 20%) + HoverColor: =DataWarningAccept_1.Color + HoverFill: =ColorFade(DataWarningAccept_1.Fill, 20%) + OnSelect: |- + =Set(ShowDataLossWarning, false); + Navigate(HomeScreen, None) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =DataWarningAccept_1.Fill + PressedColor: =DataWarningAccept_1.Fill + PressedFill: =DataWarningAccept_1.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =10.5 + Text: ="Got it!" + Visible: =ShowDataLossWarning + Width: =120 + X: =498 + Y: =446 + ZIndex: =23 + + DataWarning_1 As htmlViewer: + Height: =90 + HoverBorderColor: =DataWarning_1.BorderColor + HtmlText: |- + ="
Once you’ve captured your meeting, remember to select “Finish & Save”. Otherwise, all notes, tasks and attachments will be lost. 
" + PressedBorderColor: =DataWarning_1.BorderColor + Visible: =ShowDataLossWarning + Width: =365 + X: =491 + Y: =352 + ZIndex: =24 + + OrgAttendees_1 As label: + Align: =Center + FocusedBorderColor: =OrgAttendees_1.BorderColor + HoverBorderColor: =OrgAttendees_1.BorderColor + HoverColor: =OrgAttendees_1.Color + HoverFill: =OrgAttendees_1.Fill + PressedBorderColor: =OrgAttendees_1.BorderColor + PressedColor: =OrgAttendees_1.Color + PressedFill: =OrgAttendees_1.Fill + Text: ="No attendees in your org" + Visible: =ShowOverlay && !AssnTaskGallery_2.Visible && !AssnTaskGallery_3.Visible && !UserSelected + Width: =370 + X: =502 + Y: =466 + ZIndex: =25 + diff --git a/example/src/meetingcapturedemo/Src/HomeScreen.fx.yaml b/example/src/meetingcapturedemo/Src/HomeScreen.fx.yaml new file mode 100644 index 0000000..ab0b7eb --- /dev/null +++ b/example/src/meetingcapturedemo/Src/HomeScreen.fx.yaml @@ -0,0 +1,860 @@ +HomeScreen As screen: + Fill: =RGBA(234, 237, 239, 1) + Height: =Max(App.Height, App.DesignHeight) + OnVisible: |- + =/*The main screen for meeting captures during a meeting. + + - create meeting notes + - create tasks + - see meeting details + */ + + /*if any additional meeting is captured in the same session, guarantees no confirmation screens are shown in error*/ + Set(FollowUpConfirmed, false); + Set(EmailConfirmed, false); + Set(ExportConfirmed, false) + Orientation: =If(HomeScreen.Width < HomeScreen.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= HomeScreen.Width) + Width: =Max(App.Width, App.DesignWidth) + + HomeNavBar As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =60 + + AppLogo1 As image: + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =AppLogo1.BorderColor + Height: =66 + HoverBorderColor: =ColorFade(AppLogo1.BorderColor, 20%) + HoverFill: =ColorFade(AppLogo1.Fill, 20%) + Image: ='nav-logo' + ImagePosition: =ImagePosition.Center + PressedBorderColor: =ColorFade(AppLogo1.BorderColor, -20%) + PressedFill: =ColorFade(AppLogo1.Fill, -20%) + Width: =75 + ZIndex: =1 + + HomeMenuBkg_1 As rectangle: + DisabledFill: =HomeMenuBkg_1.Fill + Fill: =RGBA(74, 91, 104, 1) + FocusedBorderColor: =HomeMenuBkg_1.BorderColor + Height: =702 + HoverFill: =HomeMenuBkg_1.Fill + PressedFill: =HomeMenuBkg_1.Fill + Width: =75 + Y: =66 + ZIndex: =2 + + NavHome1 As image: + Fill: =RGBA(44, 48, 52, 1) + FocusedBorderColor: =NavHome1.BorderColor + Height: =NavHome1.Width + HoverBorderColor: =ColorFade(NavHome1.BorderColor, 20%) + HoverFill: =NavHome1.Fill + Image: ='nav-notes' + ImagePosition: =ImagePosition.Center + PressedBorderColor: =ColorFade(NavHome1.BorderColor, -20%) + PressedFill: =ColorFade(NavHome1.Fill, -20%) + Width: =HomeMenuBkg_1.Width + Y: =66 + ZIndex: =3 + + NavSketch1 As image: + FocusedBorderColor: =NavSketch1.BorderColor + Height: =NavSketch1.Width + HoverBorderColor: =ColorFade(NavSketch1.BorderColor, 20%) + HoverFill: =ColorFade(HomeMenuBkg_1.Fill, 20%) + Image: ='nav-sketch' + ImagePosition: =ImagePosition.Center + OnSelect: =Navigate(SketchScreen, None) + PressedBorderColor: =ColorFade(NavSketch1.BorderColor, -20%) + PressedFill: =ColorFade(NavSketch1.Fill, -20%) + Width: =HomeMenuBkg_1.Width + Y: =141 + ZIndex: =4 + + NavPhotos1 As image: + FocusedBorderColor: =NavPhotos1.BorderColor + Height: =NavPhotos1.Width + HoverBorderColor: =ColorFade(NavPhotos1.BorderColor, 20%) + HoverFill: =ColorFade(HomeMenuBkg_1.Fill, 20%) + Image: ='nav-camera' + ImagePosition: =ImagePosition.Center + OnSelect: =Navigate(CameraScreen, None) + PressedBorderColor: =ColorFade(NavPhotos1.BorderColor, -20%) + PressedFill: =ColorFade(NavPhotos1.Fill, -20%) + Width: =HomeMenuBkg_1.Width + Y: =216 + ZIndex: =5 + + HomeAttendees As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =60 + + AttendeesBackground As rectangle: + DisabledFill: =AttendeesBackground.Fill + Fill: =White + FocusedBorderColor: =AttendeesBackground.BorderColor + Height: =283 + HoverFill: =AttendeesBackground.Fill + PressedFill: =AttendeesBackground.Fill + Width: =291 + X: =123 + Y: =180 + ZIndex: =9 + + AttendeesBanner As label: + Fill: =RGBA(215, 218, 221, 1) + FocusedBorderColor: =AttendeesBanner.BorderColor + FontWeight: =Semibold + HoverBorderColor: =AttendeesBanner.BorderColor + HoverColor: =AttendeesBanner.Color + HoverFill: =AttendeesBanner.Fill + PaddingLeft: =54 + PressedBorderColor: =AttendeesBanner.BorderColor + PressedColor: =AttendeesBanner.Color + PressedFill: =AttendeesBanner.Fill + Size: =10.5 + Text: ="Attendees" + Width: =291 + X: =123 + Y: =180 + ZIndex: =10 + + AttendeesBannerImage As image: + FocusedBorderColor: =AttendeesBannerImage.BorderColor + Height: =25 + HoverBorderColor: =ColorFade(AttendeesBannerImage.BorderColor, 20%) + HoverFill: =ColorFade(AttendeesBannerImage.Fill, 20%) + Image: =attendees + PressedBorderColor: =ColorFade(AttendeesBannerImage.BorderColor, -20%) + PressedFill: =ColorFade(AttendeesBannerImage.Fill, -20%) + Width: =28 + X: =134 + Y: =188 + ZIndex: =11 + + AttendeeGallery1 As gallery.galleryVertical: + DisabledBorderColor: =AttendeeGallery1.BorderColor + DisabledFill: =AttendeeGallery1.Fill + Height: =243 + HoverBorderColor: =AttendeeGallery1.BorderColor + HoverFill: =AttendeeGallery1.Fill + Items: =MeetingAttendees + Layout: =Layout.Vertical + LoadingSpinnerColor: =AttendeeGallery1.BorderColor + PressedBorderColor: =AttendeeGallery1.BorderColor + PressedFill: =AttendeeGallery1.Fill + ShowScrollbar: =false + TemplatePadding: =15 + TemplateSize: =40 + Visible: =!Loading + Width: =291 + X: =123 + Y: =220 + ZIndex: =12 + + AttendeeImage As image: + FocusedBorderColor: =AttendeeImage.BorderColor + Height: =40 + HoverBorderColor: =ColorFade(AttendeeImage.BorderColor, 20%) + HoverFill: =ColorFade(AttendeeImage.Fill, 20%) + Image: =If(Not(IsBlank(ThisItem.Id)) && Office365Users.UserPhotoMetadata(ThisItem.Id).HasPhoto,Office365Users.UserPhoto(ThisItem.Id),'default-profile') + OnSelect: =Select(Parent) + PressedBorderColor: =ColorFade(AttendeeImage.BorderColor, -20%) + PressedFill: =ColorFade(AttendeeImage.Fill, -20%) + Width: =40 + X: =5 + ZIndex: =1 + + AttendeeDisplayName As label: + FocusedBorderColor: =AttendeeDisplayName.BorderColor + FontWeight: =Semibold + Height: =30 + HoverBorderColor: =AttendeeDisplayName.BorderColor + HoverColor: =AttendeeDisplayName.Color + HoverFill: =AttendeeDisplayName.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AttendeeDisplayName.BorderColor + PressedColor: =AttendeeDisplayName.Color + PressedFill: =AttendeeDisplayName.Fill + Size: =8 + Text: =ThisItem.DisplayName + VerticalAlign: =VerticalAlign.Top + Width: =181 + X: =55 + Y: =5 + ZIndex: =2 + + AttendeeJobTitle As label: + FocusedBorderColor: =AttendeeJobTitle.BorderColor + Height: =14.4 + HoverBorderColor: =AttendeeJobTitle.BorderColor + HoverColor: =AttendeeJobTitle.Color + HoverFill: =AttendeeJobTitle.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =AttendeeJobTitle.BorderColor + PressedColor: =AttendeeJobTitle.Color + PressedFill: =AttendeeJobTitle.Fill + Size: =8 + Text: =ThisItem.JobTitle + Width: =206 + X: =55 + Y: =21 + ZIndex: =3 + + MailAttendeeIcon As icon.Mail: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =MailAttendeeIcon.Fill + FocusedBorderColor: =MailAttendeeIcon.BorderColor + FocusedBorderThickness: =0 + Height: =25 + HoverBorderColor: =ColorFade(MailAttendeeIcon.BorderColor, 20%) + HoverColor: =ColorFade(MailAttendeeIcon.Color, 20%) + HoverFill: =MailAttendeeIcon.Fill + Icon: =Icon.Mail + OnSelect: | + =Select(Parent); + Navigate(EmailScreen, None); + Set(MultiRecipients, false); + ClearCollect(EmailRecipients, AttendeeGallery1.Selected) + PaddingBottom: =4 + PaddingLeft: =4 + PaddingRight: =4 + PaddingTop: =4 + PressedBorderColor: =ColorFade(MailAttendeeIcon.BorderColor, -20%) + PressedColor: =ColorFade(MailAttendeeIcon.Color, -20%) + PressedFill: =MailAttendeeIcon.Fill + Width: =25 + X: =236 + ZIndex: =4 + + LoadingIndicator1 As label: + Align: =Center + FocusedBorderColor: =LoadingIndicator1.BorderColor + Height: =41 + HoverBorderColor: =LoadingIndicator1.BorderColor + HoverColor: =LoadingIndicator1.Color + HoverFill: =LoadingIndicator1.Fill + PressedBorderColor: =LoadingIndicator1.BorderColor + PressedColor: =LoadingIndicator1.Color + PressedFill: =LoadingIndicator1.Fill + Size: =10 + Text: ="Gathering meeting attendees..." + Visible: =Loading + Width: =260 + X: =AttendeeGallery1.X + AttendeeGallery1.Width/2 - LoadingIndicator1.Width/2 + Y: =291 + ZIndex: =31 + + MailAllButton As button: + BorderColor: =MailAllButton.Color + BorderThickness: =1 + Color: =RGBA(237, 41, 85, 1) + DisabledBorderColor: =ColorFade(MailAllButton.BorderColor, 70%) + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =MailAllButton.BorderColor + FocusedBorderThickness: =2 + Height: =27 + HoverBorderColor: =ColorFade(MailAllButton.BorderColor, 20%) + HoverColor: =MailAllButton.Color + HoverFill: =ColorFade(MailAllButton.Fill, 20%) + OnSelect: |- + =Navigate(EmailScreen, None); + Set(MultiRecipients, true); + ClearCollect(EmailRecipients, AttendeeGallery1.AllItems) + PaddingBottom: =0 + PaddingLeft: =20 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =MailAllButton.Fill + PressedColor: =MailAllButton.Fill + PressedFill: =MailAllButton.Color + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Size: =9 + Text: ="Email" + Width: =74 + X: =328 + Y: =187 + ZIndex: =34 + + MailAllIcon As icon.Mail: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =MailAllIcon.Fill + FocusedBorderColor: =MailAllIcon.BorderColor + FocusedBorderThickness: =0 + Height: =25 + HoverBorderColor: =ColorFade(MailAllIcon.BorderColor, 20%) + HoverColor: =ColorFade(MailAllIcon.Color, 20%) + HoverFill: =MailAllIcon.Fill + Icon: =Icon.Mail + OnSelect: =Select(MailAllButton) + PaddingBottom: =4 + PaddingLeft: =4 + PaddingRight: =4 + PaddingTop: =4 + PressedBorderColor: =ColorFade(MailAllIcon.BorderColor, -20%) + PressedColor: =ColorFade(MailAllIcon.Color, -20%) + PressedFill: =MailAllIcon.Fill + Width: =25 + X: =330 + Y: =188 + ZIndex: =35 + + HomeNotes As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =60 + + NotesBanner As label: + Fill: =RGBA(215, 218, 221, 1) + FocusedBorderColor: =NotesBanner.BorderColor + FontWeight: =Semibold + HoverBorderColor: =NotesBanner.BorderColor + HoverColor: =NotesBanner.Color + HoverFill: =NotesBanner.Fill + PaddingLeft: =54 + PressedBorderColor: =NotesBanner.BorderColor + PressedColor: =NotesBanner.Color + PressedFill: =NotesBanner.Fill + Size: =10.5 + Text: ="Notes" + Width: =430 + X: =434 + Y: =180 + ZIndex: =17 + + NotesIcon As image: + FocusedBorderColor: =NotesIcon.BorderColor + Height: =25 + HoverBorderColor: =ColorFade(NotesIcon.BorderColor, 20%) + HoverFill: =ColorFade(NotesIcon.Fill, 20%) + Image: =notes + PressedBorderColor: =ColorFade(NotesIcon.BorderColor, -20%) + PressedFill: =ColorFade(NotesIcon.Fill, -20%) + Width: =28 + X: =445 + Y: =188 + ZIndex: =18 + + NotesInput As text: + BorderColor: =RGBA(227, 227, 227, 1) + Default: ="" + FocusedBorderColor: =NotesInput.BorderColor + FocusedBorderThickness: =NotesInput.BorderThickness + Height: =508 + HintText: ="Start typing notes for this meeting..." + HoverBorderColor: =RGBA(0,0,0,0) + HoverFill: =NotesInput.Fill + Mode: =TextMode.MultiLine + PaddingBottom: =20 + PaddingLeft: =20 + PaddingRight: =20 + PaddingTop: =20 + PressedBorderColor: =RGBA(0,0,0,0) + PressedColor: =NotesInput.Color + PressedFill: =NotesInput.Fill + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =10.5 + Width: =430 + X: =434 + Y: =220 + ZIndex: =19 + + HomeMeetingDetails As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =60 + + DetailsBackground As rectangle: + DisabledFill: =DetailsBackground.Fill + Fill: =White + FocusedBorderColor: =DetailsBackground.BorderColor + Height: =283 + HoverFill: =DetailsBackground.Fill + PressedFill: =DetailsBackground.Fill + Width: =291 + X: =123 + Y: =477 + ZIndex: =13 + + DetailsBanner As label: + Fill: =RGBA(215, 218, 221, 1) + FocusedBorderColor: =DetailsBanner.BorderColor + HoverBorderColor: =DetailsBanner.BorderColor + HoverColor: =DetailsBanner.Color + HoverFill: =DetailsBanner.Fill + PaddingLeft: =54 + PressedBorderColor: =DetailsBanner.BorderColor + PressedColor: =DetailsBanner.Color + PressedFill: =DetailsBanner.Fill + Text: ="Meeting Details" + Width: =291 + X: =123 + Y: =477 + ZIndex: =14 + + DetailsIcon As icon.Note: + Color: =Black + DisabledFill: =DetailsIcon.Fill + DisplayMode: =DisplayMode.View + FocusedBorderColor: =DetailsIcon.BorderColor + Height: =25 + HoverBorderColor: =ColorFade(DetailsIcon.BorderColor, 20%) + HoverColor: =ColorFade(DetailsIcon.Color, 20%) + HoverFill: =DetailsIcon.Fill + Icon: =Icon.Note + PressedBorderColor: =ColorFade(DetailsIcon.BorderColor, -20%) + PressedColor: =ColorFade(DetailsIcon.Color, -20%) + PressedFill: =DetailsIcon.Fill + Width: =28 + X: =134 + Y: =485 + ZIndex: =15 + + MeetingBody As htmlViewer: + Height: =243 + HoverBorderColor: =MeetingBody.BorderColor + HtmlText: =SelectedMeeting.Body + PressedBorderColor: =MeetingBody.BorderColor + Size: =9 + Width: =291 + X: =123 + Y: =517 + ZIndex: =16 + + HomeBanner As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =60 + + MeetingTitle As label: + FocusedBorderColor: =MeetingTitle.BorderColor + Height: =94 + HoverBorderColor: =MeetingTitle.BorderColor + HoverColor: =MeetingTitle.Color + HoverFill: =MeetingTitle.Fill + PressedBorderColor: =MeetingTitle.BorderColor + PressedColor: =MeetingTitle.Color + PressedFill: =MeetingTitle.Fill + Size: =15 + Text: =SelectedMeeting.Subject + VerticalAlign: =VerticalAlign.Bottom + Width: =500 + X: =119 + ZIndex: =6 + + HomeTimeRange As label: + AutoHeight: =true + FocusedBorderColor: =HomeTimeRange.BorderColor + Height: =17 + HoverBorderColor: =HomeTimeRange.BorderColor + HoverColor: =HomeTimeRange.Color + HoverFill: =HomeTimeRange.Fill + PressedBorderColor: =HomeTimeRange.BorderColor + PressedColor: =HomeTimeRange.Color + PressedFill: =HomeTimeRange.Fill + Size: =10.5 + Text: |- + =Text(SelectedMeeting.Start,"[$-en-US]mmmm dd, yyyy")&" | " & Lower(Text(SelectedMeeting.Start,"[$-en-US]hh:mm am/pm"))&" - "&Lower(Text(SelectedMeeting.End,"[$-en-US]hh:mm am/pm")) & " (" & DateDiff(SelectedMeeting.Start, SelectedMeeting.End, Minutes) & " minutes)" + Width: =800 + X: =119 + Y: =95 + ZIndex: =7 + + ProgressBkg As rectangle: + DisabledFill: =ProgressBkg.Fill + Fill: =RGBA(202, 212, 221, 1) + FocusedBorderColor: =ProgressBkg.BorderColor + Height: =3 + HoverFill: =ProgressBkg.Fill + PressedFill: =ProgressBkg.Fill + Width: =1192 + X: =124 + Y: =HomeTimeRange.Y + HomeTimeRange.Height + 24 + ZIndex: =8 + + HomeTimer As timer: + AutoStart: =true + BorderColor: =ColorFade(HomeTimer.Fill, -15%) + Color: =RGBA(74, 91, 104, 1) + DisabledBorderColor: =ColorFade(HomeTimer.BorderColor, 70%) + DisabledColor: =ColorFade(HomeTimer.Fill, 90%) + DisabledFill: =ColorFade(HomeTimer.Fill, 70%) + Duration: =500 + Fill: =RGBA(0, 0, 0, 0) + FocusedBorderColor: =HomeTimer.BorderColor + HoverBorderColor: =ColorFade(HomeTimer.BorderColor, 20%) + HoverColor: =HomeTimer.Color + HoverFill: =ColorFade(HomeTimer.Fill, 20%) + OnTimerEnd: |- + =Set(SecondsRemain,DateDiff(Now(),SelectedMeeting.End,Seconds)); + Set(ProgressBarPosition,DateDiff(SelectedMeeting.Start,Now(),Seconds)) + PressedBorderColor: =HomeTimer.Fill + PressedColor: =HomeTimer.Color + PressedFill: =RGBA(0,0,0,0) + Repeat: =true + Size: =18 + Start: =60000 + Text: |- + =If(SecondsRemain > 0,RoundDown(SecondsRemain/3600,0) & ":" & Text(RoundDown(Mod(SecondsRemain, 3600) / 60,0),"[$-en-US]00") & ":" & Text(Mod(SecondsRemain, 60),"[$-en-US]00"),"0:00:00") + Width: =200 + X: =Parent.Width/2 - HomeTimer.Width/2 + Y: =50 + ZIndex: =26 + + AttachmentsIcon2 As circle: + BorderColor: =AttachmentsIcon1.Color + BorderThickness: =1 + DisabledFill: =AttachmentsIcon2.Fill + DisplayMode: =DisplayMode.View + Fill: =White + FocusedBorderColor: =AttachmentsIcon2.BorderColor + Height: =48 + HoverFill: =AttachmentsIcon2.Fill + PressedFill: =AttachmentsIcon2.Fill + Width: =48 + X: =986 + Y: =69 + ZIndex: =27 + + AttachmentsIcon1 As icon.Attachment: + Color: =If(Or(CountRows(Sketches) > 0,CountRows(Photos) > 0),RGBA(237, 41, 85, 1),RGBA(150, 150, 150, 1)) + DisabledFill: =AttachmentsIcon1.Fill + FocusedBorderColor: =AttachmentsIcon1.BorderColor + FocusedBorderThickness: =0 + Height: =48 + HoverBorderColor: =ColorFade(AttachmentsIcon1.BorderColor, 20%) + HoverColor: =ColorFade(AttachmentsIcon1.Color, 20%) + HoverFill: =AttachmentsIcon1.Fill + Icon: =Icon.PaperClip + OnSelect: =Navigate(AttachmentsScreen, None) + PaddingBottom: =10 + PaddingLeft: =10 + PaddingRight: =10 + PaddingTop: =10 + PressedBorderColor: =ColorFade(AttachmentsIcon1.BorderColor, -20%) + PressedColor: =ColorFade(AttachmentsIcon1.Color, -20%) + PressedFill: =AttachmentsIcon1.Fill + Width: =48 + X: =AttachmentsIcon2.X + Y: =AttachmentsIcon2.Y + ZIndex: =28 + + Finish_SaveButton As button: + BorderColor: =ColorFade(Finish_SaveButton.Fill, -15%) + DisabledBorderColor: =ColorFade(Finish_SaveButton.BorderColor, 70%) + DisplayMode: =If(Loading, Disabled, DisplayMode.Edit) + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =Finish_SaveButton.BorderColor + HoverBorderColor: =ColorFade(Finish_SaveButton.BorderColor, 20%) + HoverColor: =Finish_SaveButton.Color + HoverFill: =ColorFade(Finish_SaveButton.Fill, 20%) + OnSelect: =Navigate(ExportScreen, None) + PaddingBottom: =0 + PaddingLeft: =33 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =Finish_SaveButton.Fill + PressedColor: =Finish_SaveButton.Fill + PressedFill: =Finish_SaveButton.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Text: ="Finish & Save" + Width: =251 + X: =1058 + Y: =73 + ZIndex: =29 + + Finish_SaveIcon As image: + FocusedBorderColor: =Finish_SaveIcon.BorderColor + Height: =23 + HoverBorderColor: =ColorFade(Finish_SaveIcon.BorderColor, 20%) + HoverFill: =ColorFade(Finish_SaveIcon.Fill, 20%) + Image: =export + OnSelect: =Select(Finish_SaveButton) + PressedBorderColor: =ColorFade(Finish_SaveIcon.BorderColor, -20%) + PressedFill: =ColorFade(Finish_SaveIcon.Fill, -20%) + Width: =26 + X: =Finish_SaveButton.X + 12 + Y: =Finish_SaveButton.Y + Finish_SaveButton.Height/2 - Finish_SaveIcon.Height/2 + ZIndex: =30 + + Progress As rectangle: + DisabledFill: =Progress.Fill + Fill: =RGBA(74, 91, 104, 1) + FocusedBorderColor: =Progress.BorderColor + Height: =3 + HoverFill: =Progress.Fill + PressedFill: =Progress.Fill + Width: =Min(ProgressBkg.Width, ProgressBkg.Width * ProgressBarPosition / SelectedMeetingDuration) + X: =ProgressBkg.X + Y: =HomeTimeRange.Y + HomeTimeRange.Height + 24 + ZIndex: =32 + + HomePlannerTasks As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =60 + + TasksBanner As label: + Fill: =RGBA(215, 218, 221, 1) + FocusedBorderColor: =TasksBanner.BorderColor + FontWeight: =Semibold + HoverBorderColor: =TasksBanner.BorderColor + HoverColor: =TasksBanner.Color + HoverFill: =TasksBanner.Fill + PaddingLeft: =54 + PressedBorderColor: =TasksBanner.BorderColor + PressedColor: =TasksBanner.Color + PressedFill: =TasksBanner.Fill + Size: =10.5 + Text: ="Planner Tasks" + Width: =430 + X: =884 + Y: =181 + ZIndex: =20 + + TasksIcon As image: + FocusedBorderColor: =TasksIcon.BorderColor + Height: =25 + HoverBorderColor: =ColorFade(TasksIcon.BorderColor, 20%) + HoverFill: =ColorFade(TasksIcon.Fill, 20%) + Image: =tasks + PressedBorderColor: =ColorFade(TasksIcon.BorderColor, -20%) + PressedFill: =ColorFade(TasksIcon.Fill, -20%) + Width: =28 + X: =895 + Y: =189 + ZIndex: =21 + + TasksBackground As rectangle: + DisabledFill: =TasksBackground.Fill + Fill: =White + FocusedBorderColor: =TasksBackground.BorderColor + FocusedBorderThickness: =0 + Height: =TaskTitle.Y + TaskTitle.Height + 10 - TasksBackground.Y + HoverFill: =TasksBackground.Fill + PressedFill: =TasksBackground.Fill + Width: =430 + X: =884 + Y: =221 + ZIndex: =22 + + TaskGallery As gallery.galleryVertical: + DisabledBorderColor: =TaskGallery.BorderColor + DisabledFill: =TaskGallery.Fill + Height: =Min(350, (TaskGallery.TemplateHeight + 5) * CountRows(Tasks)) + HoverBorderColor: =TaskGallery.BorderColor + HoverFill: =TaskGallery.Fill + Items: =Tasks + Layout: =Layout.Vertical + LoadingSpinnerColor: =TaskGallery.BorderColor + OnSelect: |- + =If(CountRows(Tasks) > 0, + Set(SelectedTask, ThisItem); + Set(TaskSelected, true); + Set(UserSelected, true); + Set(UserSelectedFromTasks, true); + Set(SelectedUserTasks, ThisItem.AssignToUser); + Set(ShowOverlay, true) + ) + PressedBorderColor: =TaskGallery.BorderColor + PressedFill: =TaskGallery.Fill + ShowScrollbar: =false + TemplateSize: =55 + Width: =410 + X: =TasksBackground.X + TasksBackground.Width/2 - TaskGallery.Width/2 + Y: =221 + ZIndex: =23 + + Rectangle4 As rectangle: + DisabledFill: =Rectangle4.Fill + Fill: =RGBA(241, 241, 241, 1) + FocusedBorderColor: =Rectangle4.BorderColor + FocusedBorderThickness: =0 + Height: =1 + HoverFill: =Rectangle4.Fill + OnSelect: =Select(Parent) + PressedFill: =Rectangle4.Fill + Width: =Parent.TemplateWidth - 40 + X: =20 + Y: =Parent.TemplateHeight - 1 + ZIndex: =1 + + TaskDescript As label: + AutoHeight: =true + Color: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =TaskDescript.BorderColor + Height: =17 + HoverBorderColor: =TaskDescript.BorderColor + HoverColor: =TaskDescript.Color + HoverFill: =TaskDescript.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =TaskDescript.BorderColor + PressedColor: =TaskDescript.Color + PressedFill: =TaskDescript.Fill + Size: =8 + Text: =ThisItem.Name + Width: =Parent.TemplateWidth - TaskDescript.X - 100 + X: =50 + Y: =11 + ZIndex: =2 + + TaskAssignee As label: + AutoHeight: =true + Color: =RGBA(97, 114, 129, 1) + FocusedBorderColor: =TaskAssignee.BorderColor + HoverBorderColor: =TaskAssignee.BorderColor + HoverColor: =TaskAssignee.Color + HoverFill: =TaskAssignee.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =TaskAssignee.BorderColor + PressedColor: =TaskAssignee.Color + PressedFill: =TaskAssignee.Fill + Size: =8 + Text: =ThisItem.AssignToUser.DisplayName + Width: =TaskDescript.Width + X: =TaskDescript.X + Y: =TaskDescript.Y + TaskDescript.Height + 4 + ZIndex: =3 + + TaskDue As label: + Align: =Right + AutoHeight: =true + FocusedBorderColor: =TaskDue.BorderColor + HoverBorderColor: =TaskDue.BorderColor + HoverColor: =TaskDue.Color + HoverFill: =TaskDue.Fill + OnSelect: =Select(Parent) + PressedBorderColor: =TaskDue.BorderColor + PressedColor: =TaskDue.Color + PressedFill: =TaskDue.Fill + Size: =7.5 + Text: =If(IsBlank(ThisItem.DueDate),"","Due " & If(IsToday(ThisItem.DueDate),"Today",Text(ThisItem.DueDate,"[$-en-US]mmm d"))) + Width: =120 + X: =Parent.TemplateWidth - TaskDue.Width + Y: =TaskDescript.Y + ZIndex: =4 + + Circle3 As circle: + BorderColor: =RGBA(97, 114, 129, 1) + BorderThickness: =1 + DisabledFill: =Circle3.Fill + Fill: =RGBA(62,96,170,0) + FocusedBorderColor: =Circle3.BorderColor + FocusedBorderThickness: =1 + Height: =10 + HoverFill: =Circle3.Fill + OnSelect: =Select(Parent) + PressedFill: =Circle3.Fill + Width: =10 + X: =21 + Y: =Parent.TemplateHeight/2 - Circle3.Height/2 + ZIndex: =5 + + TaskTitle As text: + BorderColor: =RGBA(237, 41, 85, 1) + BorderThickness: =1 + Default: ="" + FocusedBorderColor: =TaskTitle.BorderColor + FocusedBorderThickness: =1 + HintText: ="Add task..." + HoverBorderColor: =ColorFade(TaskTitle.BorderColor, -30%) + HoverFill: =White + PaddingBottom: =0 + PaddingLeft: =20 + PaddingRight: =20 + PaddingTop: =0 + PressedBorderColor: =TaskTitle.HoverBorderColor + PressedColor: =TaskTitle.Color + PressedFill: =TaskTitle.Fill + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =10.5 + Width: =TasksBackground.Width - 20 + X: =TasksBackground.X + 10 + Y: =TaskGallery.Y + TaskGallery.Height + If(CountRows(Tasks) = 0, 50, 9) + ZIndex: =24 + + AddTask As icon.Add: + Color: =RGBA(237, 41, 85, 1) + DisabledFill: =AddTask.Fill + FocusedBorderColor: =AddTask.BorderColor + FocusedBorderThickness: =0 + Height: =40 + HoverBorderColor: =ColorFade(AddTask.BorderColor, 20%) + HoverColor: =ColorFade(AddTask.Color, 20%) + HoverFill: =AddTask.Fill + Icon: =Icon.Add + OnSelect: |- + =Set(ShowOverlay, true); + Navigate(HomePopUpsScreen, None) + PaddingBottom: =7 + PaddingLeft: =7 + PaddingRight: =7 + PaddingTop: =7 + PressedBorderColor: =ColorFade(AddTask.BorderColor, -20%) + PressedColor: =ColorFade(AddTask.Color, -20%) + PressedFill: =AddTask.Fill + Width: =40 + X: =1264 + Y: =TaskTitle.Y + ZIndex: =25 + + InitialTaskCount As label: + FocusedBorderColor: =InitialTaskCount.BorderColor + HoverBorderColor: =InitialTaskCount.BorderColor + HoverColor: =InitialTaskCount.Color + HoverFill: =InitialTaskCount.Fill + PressedBorderColor: =InitialTaskCount.BorderColor + PressedColor: =InitialTaskCount.Color + PressedFill: =InitialTaskCount.Fill + Size: =10.5 + Text: ="0 tasks" + Visible: =CountRows(Tasks) = 0 + Width: =410 + X: =894 + Y: =225 + ZIndex: =33 + diff --git a/example/src/meetingcapturedemo/Src/SketchScreen.fx.yaml b/example/src/meetingcapturedemo/Src/SketchScreen.fx.yaml new file mode 100644 index 0000000..418809f --- /dev/null +++ b/example/src/meetingcapturedemo/Src/SketchScreen.fx.yaml @@ -0,0 +1,212 @@ +SketchScreen As screen: + Height: =Max(App.Height, App.DesignHeight) + OnVisible: |- + =/*Create a sketch during a meeting.*/ + Set(ShowSketchSaved, false) + Orientation: =If(SketchScreen.Width < SketchScreen.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= SketchScreen.Width) + Width: =Max(App.Width, App.DesignWidth) + + SketchCanvas As inkControl: + BorderThickness: =0 + Height: =705 + OnSelect: =Set(ShowSketchSaved, false) + Width: =1291 + X: =75 + Y: =63 + ZIndex: =7 + + SketchNavBar As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =13 + + AppLogo2 As image: + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =AppLogo2.BorderColor + Height: =66 + HoverBorderColor: =ColorFade(AppLogo2.BorderColor, 20%) + HoverFill: =ColorFade(AppLogo2.Fill, 20%) + Image: ='nav-logo' + ImagePosition: =ImagePosition.Center + PressedBorderColor: =ColorFade(AppLogo2.BorderColor, -20%) + PressedFill: =ColorFade(AppLogo2.Fill, -20%) + Width: =75 + ZIndex: =2 + + HomeMenuBkg_2 As rectangle: + DisabledFill: =HomeMenuBkg_2.Fill + Fill: =RGBA(74, 91, 104, 1) + FocusedBorderColor: =HomeMenuBkg_2.BorderColor + Height: =702 + HoverFill: =HomeMenuBkg_2.Fill + PressedFill: =HomeMenuBkg_2.Fill + Width: =75 + Y: =66 + ZIndex: =3 + + NavHome2 As image: + Fill: =RGBA(44, 48, 52, 0) + FocusedBorderColor: =NavHome2.BorderColor + Height: =NavHome2.Width + HoverBorderColor: =ColorFade(NavHome2.BorderColor, 20%) + HoverFill: =ColorFade(HomeMenuBkg_2.Fill, 20%) + Image: ='nav-notes' + ImagePosition: =ImagePosition.Center + OnSelect: =Navigate(HomeScreen, None) + PressedBorderColor: =ColorFade(NavHome2.BorderColor, -20%) + PressedFill: =ColorFade(NavHome2.Fill, -20%) + Width: =HomeMenuBkg_2.Width + Y: =66 + ZIndex: =4 + + NavSketch2 As image: + Fill: =RGBA(44, 48, 52, 1) + FocusedBorderColor: =NavSketch2.BorderColor + Height: =NavSketch2.Width + HoverBorderColor: =ColorFade(NavSketch2.BorderColor, 20%) + HoverFill: =NavSketch2.Fill + Image: ='nav-sketch' + ImagePosition: =ImagePosition.Center + PressedBorderColor: =ColorFade(NavSketch2.BorderColor, -20%) + PressedFill: =ColorFade(NavSketch2.Fill, -20%) + Width: =HomeMenuBkg_2.Width + Y: =141 + ZIndex: =5 + + NavPhotos2 As image: + FocusedBorderColor: =NavPhotos2.BorderColor + Height: =NavPhotos2.Width + HoverBorderColor: =ColorFade(NavPhotos2.BorderColor, 20%) + HoverFill: =ColorFade(HomeMenuBkg_2.Fill, 20%) + Image: ='nav-camera' + ImagePosition: =ImagePosition.Center + OnSelect: =Navigate(CameraScreen, None) + PressedBorderColor: =ColorFade(NavPhotos2.BorderColor, -20%) + PressedFill: =ColorFade(NavPhotos2.Fill, -20%) + Width: =HomeMenuBkg_2.Width + Y: =216 + ZIndex: =6 + + SketchBanner As group: + Height: =5 + Width: =5 + X: =40 + Y: =40 + ZIndex: =13 + + BackgroundBanner As rectangle: + DisabledFill: =BackgroundBanner.Fill + Fill: =RGBA(234, 237, 239, 1) + FocusedBorderColor: =BackgroundBanner.BorderColor + Height: =66 + HoverFill: =BackgroundBanner.Fill + PressedFill: =BackgroundBanner.Fill + Width: =1366 + ZIndex: =1 + + SaveSketch As button: + BorderColor: =SaveSketch.Color + Color: =RGBA(237, 41, 85, 1) + DisabledBorderColor: =ColorFade(SaveSketch.BorderColor, 70%) + Fill: =RGBA(255, 255, 255, 1) + FocusedBorderColor: =SaveSketch.BorderColor + Height: =44 + HoverBorderColor: =ColorFade(SaveSketch.BorderColor, 20%) + HoverColor: =SaveSketch.Color + HoverFill: =ColorFade(SaveSketch.Fill, 20%) + OnSelect: |- + =/*store sketches in sketch collection*/ + Set(SketchNumber, SketchNumber + 1); + Collect(Sketches, {Image:SketchCanvas.Image, Name: "Sketch" & SketchNumber & ".jpg"}); + Reset(SketchCanvas); + Set(ShowSketchSaved, true) + PaddingLeft: =37 + PaddingRight: =0 + PressedBorderColor: =SaveSketch.Fill + PressedColor: =SaveSketch.Fill + PressedFill: =SaveSketch.Color + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Size: =10.5 + Text: ="Save sketch" + Visible: =!ShowSketchSaved + Width: =200 + X: =620 + Y: =13 + ZIndex: =8 + + SaveSketchIcon As icon.Save: + Color: =SaveSketch.Color + DisabledFill: =SaveSketchIcon.Fill + FocusedBorderColor: =SaveSketchIcon.BorderColor + Height: =22 + HoverBorderColor: =ColorFade(SaveSketchIcon.BorderColor, 20%) + HoverColor: =ColorFade(SaveSketchIcon.Color, 20%) + HoverFill: =SaveSketchIcon.Fill + Icon: =Icon.Save + OnSelect: =Select(SaveSketch) + PressedBorderColor: =ColorFade(SaveSketchIcon.BorderColor, -20%) + PressedColor: =ColorFade(SaveSketchIcon.Color, -20%) + PressedFill: =SaveSketchIcon.Fill + Visible: =!ShowSketchSaved + Width: =22 + X: =636 + Y: =24 + ZIndex: =9 + + SavedIndicator2 As icon.Check: + Color: =RGBA(96, 181, 2, 1) + DisabledFill: =SavedIndicator2.Fill + FocusedBorderColor: =SavedIndicator2.BorderColor + Height: =22 + HoverBorderColor: =ColorFade(SavedIndicator2.BorderColor, 20%) + HoverColor: =ColorFade(SavedIndicator2.Color, 20%) + HoverFill: =SavedIndicator2.Fill + Icon: =Icon.Check + PressedBorderColor: =ColorFade(SavedIndicator2.BorderColor, -20%) + PressedColor: =ColorFade(SavedIndicator2.Color, -20%) + PressedFill: =SavedIndicator2.Fill + Visible: =ShowSketchSaved + Width: =22 + X: =674 + Y: =21 + ZIndex: =10 + + SavedIndicator1 As circle: + BorderColor: =SavedIndicator2.Color + BorderThickness: =2 + DisabledFill: =SavedIndicator1.Fill + Fill: =RGBA(62,96,170,0) + FocusedBorderColor: =SavedIndicator1.BorderColor + Height: =36 + HoverFill: =SavedIndicator1.Fill + PressedFill: =SavedIndicator1.Fill + Visible: =ShowSketchSaved + Width: =36 + X: =667 + Y: =15 + ZIndex: =11 + + SavedIndicator As label: + FocusedBorderColor: =SavedIndicator.BorderColor + FontWeight: =Semibold + Height: =34 + HoverBorderColor: =SavedIndicator.BorderColor + HoverColor: =SavedIndicator.Color + HoverFill: =SavedIndicator.Fill + PressedBorderColor: =SavedIndicator.BorderColor + PressedColor: =SavedIndicator.Color + PressedFill: =SavedIndicator.Fill + Size: =12 + Text: ="Saved!" + Visible: =ShowSketchSaved + Width: =120 + X: =710 + Y: =14 + ZIndex: =12 + diff --git a/example/src/meetingcapturedemo/Src/Themes.json b/example/src/meetingcapturedemo/Src/Themes.json new file mode 100644 index 0000000..64cdcb3 --- /dev/null +++ b/example/src/meetingcapturedemo/Src/Themes.json @@ -0,0 +1,2865 @@ +{ + "CurrentTheme": "defaultTheme", + "CustomThemes": [ + { + "name": "defaultTheme", + "palette": [ + { + "name": "ScreenBkgColor", + "type": "c", + "value": "RGBA(255,255,255,1)" + }, + { + "name": "InvertedBkgColor", + "type": "c", + "value": "RGBA(62,96,170,1)" + }, + { + "name": "PrimaryColor1", + "type": "c", + "value": "RGBA(62,96,170,1)" + }, + { + "name": "PrimaryColor2", + "type": "c", + "value": "RGBA(101,128,187,1)" + }, + { + "name": "PrimaryColor3", + "type": "c", + "value": "RGBA(190,202,226,1)" + }, + { + "name": "PrimaryColor1Light", + "type": "c", + "value": "RGBA(62,96,170,.2)" + }, + { + "name": "PrimaryColor2Light", + "type": "c", + "value": "RGBA(101,128,187,.2)" + }, + { + "name": "PrimaryColor3Light", + "type": "c", + "value": "RGBA(190,202,226,.2)" + }, + { + "name": "PrimaryColor3Fade", + "type": "c", + "value": "ColorFade(RGBA(190,202,226,1), 70%)" + }, + { + "name": "TextMainColor", + "type": "c", + "value": "RGBA(47,41,43,1)" + }, + { + "name": "TextMainColorInverted", + "type": "c", + "value": "RGBA(255,255,255,1)" + }, + { + "name": "TextLinkColor", + "type": "c", + "value": "RGBA(0, 134, 208, 1)" + }, + { + "name": "TextFooterFontColor", + "type": "c", + "value": "RGBA(132, 132, 132, 1)" + }, + { + "name": "InputBkgColor", + "type": "c", + "value": "RGBA(255, 255, 255, 1)" + }, + { + "name": "InputTextColor", + "type": "c", + "value": "RGBA(47, 41, 43, 1)" + }, + { + "name": "InputBorderColor", + "type": "c", + "value": "RGBA(101, 128, 187, 1)" + }, + { + "name": "RailBkgColor", + "type": "c", + "value": "RGBA(128, 130, 133, 1)" + }, + { + "name": "HandleBkgColor", + "type": "c", + "value": "RGBA(255, 255, 255, 1)" + }, + { + "name": "InnerCircleBkgColor", + "type": "c", + "value": "ColorFade(RGBA(255,255,255,1), -5%)" + }, + { + "name": "DisabledBorderColor", + "type": "c", + "value": "RGBA(159, 167, 165, 1)" + }, + { + "name": "DisabledTextMainColor", + "type": "c", + "value": "ColorFade(RGBA(47, 41, 43, 1), 70%)" + }, + { + "name": "DisabledInputBkgColor", + "type": "c", + "value": "ColorFade(RGBA(159, 167, 165, 1), 50%)" + }, + { + "name": "DisabledButtonBkgColor", + "type": "c", + "value": "RGBA(193, 193, 193, 0.95)" + }, + { + "name": "HoverButtonBkgColor", + "type": "c", + "value": "ColorFade(RGBA(101, 128, 187, 1), 30%)" + }, + { + "name": "HoverCancelButtonBkgColor", + "type": "c", + "value": "ColorFade(RGBA(62, 96, 170, 1), 20%)" + }, + { + "name": "HoverInputBkgColor", + "type": "c", + "value": "ColorFade(RGBA(190, 202, 226, 1), 30%)" + }, + { + "name": "OverlayBkgColor", + "type": "c", + "value": "RGBA(0, 0, 0, 0.4)" + }, + { + "name": "ReservedInfoColor", + "type": "c", + "value": "RGBA(0, 134, 208, 1)" + }, + { + "name": "ReservedSuccessColor", + "type": "c", + "value": "RGBA(141, 198, 63, 1)" + }, + { + "name": "ReservedWarningColor", + "type": "c", + "value": "RGBA(252, 219, 2, 1)" + }, + { + "name": "ReservedErrorColor", + "type": "c", + "value": "RGBA(246, 88, 16, 1)" + }, + { + "name": "ReservedCriticalErrorColor", + "type": "c", + "value": "RGBA(237, 28, 36, 1)" + }, + { + "name": "ReservedDisabledStatusColor", + "type": "c", + "value": "RGBA(193, 193, 193, 1)" + }, + { + "name": "ReservedWhiteColor", + "type": "c", + "value": "RGBA(255, 255, 255, 1)" + }, + { + "name": "ReservedChartColorSet", + "type": "![]", + "value": "[RGBA(49, 130, 93, 1),RGBA(48,166,103, 1), RGBA(94,193,108,1), RGBA(246,199,144,1), RGBA(247,199,114,1), RGBA(247,180,91,1), RGBA(246,143,100,1), RGBA(212,96,104,1), RGBA(148, 110, 176, 1), RGBA(118, 154, 204, 1), RGBA(96, 197, 234, 1)]" + }, + { + "name": "TextBodyFontWeight", + "type": "e", + "value": "%FontWeight.RESERVED%.Normal" + }, + { + "name": "TextEmphasisFontWeight", + "type": "e", + "value": "%FontWeight.RESERVED%.Semibold" + }, + { + "name": "TextBodyFontFace", + "type": "e", + "value": "%Font.RESERVED%.'Open Sans'" + }, + { + "name": "InputBorderThickness", + "type": "n", + "value": "2" + }, + { + "name": "InputFocusedBorderThickness", + "type": "n", + "value": "4" + }, + { + "name": "TextHeaderFontSize", + "phoneValue": "27", + "type": "n", + "value": "18" + }, + { + "name": "TextTitleFontSize", + "type": "n", + "value": "20" + }, + { + "name": "TextSubtitleFontSize", + "type": "n", + "value": "18" + }, + { + "name": "TextContentFontSize", + "type": "n", + "value": "16" + }, + { + "name": "TextEmphasisFontSize", + "phoneValue": "24", + "type": "n", + "value": "15" + }, + { + "name": "TextBodyFontSize", + "phoneValue": "21", + "type": "n", + "value": "13" + }, + { + "name": "TextFooterFontSize", + "phoneValue": "18", + "type": "n", + "value": "11" + }, + { + "name": "TextMiniFontSize", + "phoneValue": "15", + "type": "n", + "value": "9" + }, + { + "name": "IconFillColorInverted", + "type": "c", + "value": "RGBA(255, 255, 255, 1)" + }, + { + "name": "IconPressedFillColorInverted", + "type": "c", + "value": "RGBA(255, 255, 255, 0.3)" + } + ], + "styles": [ + { + "controlTemplateName": "screen", + "name": "defaultScreenStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.ScreenBkgColor%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "defaultLabelStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "basicNoSizeLabelStyle", + "propertyValuesMap": [ + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "basicNoSizeInvertedBkgLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "invertedBkgHeaderLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextHeaderFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "invertedBkgTitleLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextTitleFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "linkLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextLinkColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "headerLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextHeaderFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "subHeaderLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "titleLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextTitleFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "overlayTitleLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextTitleFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "subtitleLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextSubtitleFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "overlaySubtitleLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextSubtitleFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "contentLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextContentFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "accentLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "pickerEmphasisLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextEmphasisFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "pickerEmphasisWithAccentLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextEmphasisFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "pickerEmphasisSecondaryLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextFooterFontColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextEmphasisFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "footerAccentLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextFooterFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "footerLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextFooterFontColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextFooterFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "miniLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextMiniFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "miniInvertedBkgLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextMiniFontSize%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "disabledLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.ReservedDisabledStatusColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "infoLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextLinkColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "successLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.ReservedSuccessColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "warningLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.ReservedWarningColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "errorLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.ReservedErrorColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + } + ] + }, + { + "controlTemplateName": "label", + "name": "criticalErrorLabelStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.ReservedCriticalErrorColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + } + ] + }, + { + "controlTemplateName": "toggleSwitch", + "name": "defaultToggleSwitchStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "BorderStyle", + "value": "%BorderStyle.RESERVED%.Solid" + }, + { + "property": "HandleFill", + "value": "%Palette.HandleBkgColor%" + }, + { + "property": "FalseFill", + "value": "%Palette.RailBkgColor%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + }, + { + "property": "TrueFill", + "value": "%Palette.PrimaryColor1%" + } + ] + }, + { + "controlTemplateName": "rating", + "name": "defaultRatingStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "RatingFill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + } + ] + }, + { + "controlTemplateName": "checkbox", + "name": "defaultCheckboxStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "CheckboxBackgroundFill", + "value": "%Palette.InnerCircleBkgColor%" + }, + { + "property": "CheckboxBorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "CheckmarkFill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "HoverColor", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + } + ] + }, + { + "controlTemplateName": "radio", + "name": "defaultRadioStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "HoverColor", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "RadioBackgroundFill", + "value": "%Palette.InnerCircleBkgColor%" + }, + { + "property": "RadioBorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "RadioSelectionFill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + } + ] + }, + { + "controlTemplateName": "listbox", + "name": "defaultListboxStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.InputTextColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "BorderThickness", + "value": "%Palette.InputBorderThickness%" + }, + { + "property": "BorderStyle", + "value": "%BorderStyle.RESERVED%.Solid" + }, + { + "property": "FocusedBorderThickness", + "value": "%Palette.InputFocusedBorderThickness%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "DisabledSelectionColor", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "DisabledSelectionFill", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Fill", + "value": "%Palette.InputBkgColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "HoverColor", + "value": "%Palette.InputTextColor%" + }, + { + "property": "HoverFill", + "value": "%Palette.HoverInputBkgColor%" + }, + { + "property": "PressedColor", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "PressedFill", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "SelectionColor", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "SelectionFill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + } + ] + }, + { + "controlTemplateName": "dropdown", + "name": "defaultDropdownStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "BorderStyle", + "value": "%BorderStyle.RESERVED%.Solid" + }, + { + "property": "BorderThickness", + "value": "%Palette.InputBorderThickness%" + }, + { + "property": "FocusedBorderThickness", + "value": "%Palette.InputFocusedBorderThickness%" + }, + { + "property": "Color", + "value": "%Palette.InputTextColor%" + }, + { + "property": "ChevronBackground", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "ChevronFill", + "value": "%Palette.InnerCircleBkgColor%" + }, + { + "property": "ChevronHoverBackground", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "ChevronHoverFill", + "value": "%Palette.InnerCircleBkgColor%" + }, + { + "property": "ChevronDisabledBackground", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "ChevronDisabledFill", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Fill", + "value": "%Palette.InputBkgColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "HoverColor", + "value": "%Palette.InputTextColor%" + }, + { + "property": "HoverFill", + "value": "%Palette.HoverInputBkgColor%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + }, + { + "property": "PressedColor", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "PressedFill", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "SelectionColor", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "SelectionFill", + "value": "%Palette.PrimaryColor1%" + } + ] + }, + { + "controlTemplateName": "combobox", + "name": "defaultComboBoxStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "BorderStyle", + "value": "%BorderStyle.RESERVED%.Solid" + }, + { + "property": "BorderThickness", + "value": "%Palette.InputBorderThickness%" + }, + { + "property": "FocusedBorderThickness", + "value": "%Palette.InputFocusedBorderThickness%" + }, + { + "property": "Color", + "value": "%Palette.InputTextColor%" + }, + { + "property": "ChevronBackground", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "ChevronFill", + "value": "%Palette.InnerCircleBkgColor%" + }, + { + "property": "ChevronHoverBackground", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "ChevronHoverFill", + "value": "%Palette.InnerCircleBkgColor%" + }, + { + "property": "ChevronDisabledBackground", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "ChevronDisabledFill", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Fill", + "value": "%Palette.InputBkgColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "HoverColor", + "value": "%Palette.InputTextColor%" + }, + { + "property": "HoverFill", + "value": "%Palette.HoverInputBkgColor%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + }, + { + "property": "PressedColor", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "PressedFill", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "SelectionColor", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "SelectionFill", + "value": "%Palette.PrimaryColor1%" + } + ] + }, + { + "controlTemplateName": "attachments", + "name": "defaultAttachmentsStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "BorderStyle", + "value": "%BorderStyle.RESERVED%.Solid" + }, + { + "property": "BorderThickness", + "value": "%Palette.InputBorderThickness%" + }, + { + "property": "FocusedBorderThickness", + "value": "%Palette.InputFocusedBorderThickness%" + }, + { + "property": "Color", + "value": "%Palette.InputTextColor%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Fill", + "value": "%Palette.InputBkgColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "HoverColor", + "value": "%Palette.InputTextColor%" + }, + { + "property": "HoverFill", + "value": "%Palette.HoverInputBkgColor%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + }, + { + "property": "PressedColor", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "PressedFill", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "ItemColor", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "ItemFill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "ItemHoverColor", + "value": "%Palette.InputTextColor%" + }, + { + "property": "ItemHoverFill", + "value": "%Palette.HoverInputBkgColor%" + } + ] + }, + { + "controlTemplateName": "datepicker", + "name": "defaultDatePickerStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "BorderStyle", + "value": "%BorderStyle.RESERVED%.Solid" + }, + { + "property": "BorderThickness", + "value": "%Palette.InputBorderThickness%" + }, + { + "property": "FocusedBorderThickness", + "value": "%Palette.InputFocusedBorderThickness%" + }, + { + "property": "Color", + "value": "%Palette.InputTextColor%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Fill", + "value": "%Palette.InputBkgColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "IconFill", + "value": "%Palette.InnerCircleBkgColor%" + }, + { + "property": "SelectedDateFill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "HoverDateFill", + "value": "%Palette.PrimaryColor3%" + }, + { + "property": "CalendarHeaderFill", + "value": "%Palette.PrimaryColor2%" + } + ] + }, + { + "controlTemplateName": "lookup", + "name": "defaultLookupStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "BorderStyle", + "value": "%BorderStyle.RESERVED%.Solid" + }, + { + "property": "BorderThickness", + "value": "%Palette.InputBorderThickness%" + }, + { + "property": "FocusedBorderThickness", + "value": "%Palette.InputFocusedBorderThickness%" + }, + { + "property": "Color", + "value": "%Palette.InputTextColor%" + }, + { + "property": "ChevronBackground", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "ChevronFill", + "value": "%Palette.InnerCircleBkgColor%" + }, + { + "property": "ChevronHoverBackground", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "ChevronHoverFill", + "value": "%Palette.InnerCircleBkgColor%" + }, + { + "property": "ChevronDisabledBackground", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "ChevronDisabledFill", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Fill", + "value": "%Palette.InputBkgColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "HoverColor", + "value": "%Palette.InputTextColor%" + }, + { + "property": "HoverFill", + "value": "%Palette.HoverInputBkgColor%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + }, + { + "property": "PressedColor", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "PressedFill", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "SelectionColor", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "SelectionFill", + "value": "%Palette.PrimaryColor1%" + } + ] + }, + { + "controlTemplateName": "text", + "name": "defaultTextStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.InputTextColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "BorderStyle", + "value": "%BorderStyle.RESERVED%.Solid" + }, + { + "property": "BorderThickness", + "value": "%Palette.InputBorderThickness%" + }, + { + "property": "FocusedBorderThickness", + "value": "%Palette.InputFocusedBorderThickness%" + }, + { + "property": "HoverBorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "HoverColor", + "value": "%Palette.InputTextColor%" + }, + { + "property": "HoverFill", + "value": "%Palette.HoverInputBkgColor%" + }, + { + "property": "Fill", + "value": "%Palette.InputBkgColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + } + ] + }, + { + "controlTemplateName": "text", + "name": "searchTextStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.InputTextColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "BorderStyle", + "value": "%BorderStyle.RESERVED%.None" + }, + { + "property": "BorderThickness", + "value": "%Palette.InputBorderThickness%" + }, + { + "property": "FocusedBorderThickness", + "value": "%Palette.InputFocusedBorderThickness%" + }, + { + "property": "HoverBorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "HoverColor", + "value": "%Palette.InputTextColor%" + }, + { + "property": "HoverFill", + "value": "%Palette.HoverInputBkgColor%" + }, + { + "property": "Fill", + "value": "%Palette.InputBkgColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + } + ] + }, + { + "controlTemplateName": "slider", + "name": "defaultSliderStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "BorderStyle", + "value": "%BorderStyle.RESERVED%.Solid" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "HandleFill", + "value": "%Palette.HandleBkgColor%" + }, + { + "property": "RailFill", + "value": "%Palette.RailBkgColor%" + }, + { + "property": "ValueFill", + "value": "%Palette.PrimaryColor1%" + } + ] + }, + { + "controlTemplateName": "button", + "name": "defaultButtonStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Size", + "value": "%Palette.TextEmphasisFontSize%" + } + ] + }, + { + "controlTemplateName": "button", + "name": "cancelButtonStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Fill", + "value": "%Palette.PrimaryColor3%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextEmphasisFontSize%" + } + ] + }, + { + "controlTemplateName": "button", + "name": "rezervedOkButtonStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.ReservedWhiteColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Fill", + "value": "%Palette.ReservedInfoColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextEmphasisFontSize%" + } + ] + }, + { + "controlTemplateName": "button", + "name": "rezervedCancelButtonStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.ReservedInfoColor%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Fill", + "value": "%Palette.ReservedWhiteColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextEmphasisFontSize%" + } + ] + }, + { + "controlTemplateName": "lineChart", + "name": "defaultLineChartStyle", + "propertyValuesMap": [ + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "ItemColorSet", + "value": "%Palette.ReservedChartColorSet%" + }, + { + "property": "Color", + "value": "%Palette.TextMainColor%" + } + ] + }, + { + "controlTemplateName": "lineChart", + "name": "monochromeAccentLineChartStyle", + "propertyValuesMap": [ + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "ItemColorSet", + "value": "[%Palette.PrimaryColor1%]" + }, + { + "property": "Color", + "value": "%Palette.TextMainColor%" + } + ] + }, + { + "controlTemplateName": "pieChart", + "name": "defaultPieChartStyle", + "propertyValuesMap": [ + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "ItemColorSet", + "value": "%Palette.ReservedChartColorSet%" + }, + { + "property": "Color", + "value": "%Palette.TextMainColor%" + } + ] + }, + { + "controlTemplateName": "pieChart", + "name": "monochromeAccentPieChartStyle", + "propertyValuesMap": [ + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "ItemColorSet", + "value": "[%Palette.PrimaryColor1%]" + }, + { + "property": "Color", + "value": "%Palette.TextMainColor%" + } + ] + }, + { + "controlTemplateName": "barChart", + "name": "defaultBarChartStyle", + "propertyValuesMap": [ + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "ItemColorSet", + "value": "%Palette.ReservedChartColorSet%" + }, + { + "property": "Color", + "value": "%Palette.TextMainColor%" + } + ] + }, + { + "controlTemplateName": "barChart", + "name": "monochromeAccentBarChartStyle", + "propertyValuesMap": [ + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "ItemColorSet", + "value": "[%Palette.PrimaryColor1%]" + }, + { + "property": "Color", + "value": "%Palette.TextMainColor%" + } + ] + }, + { + "controlTemplateName": "legend", + "name": "defaultLegendStyle", + "propertyValuesMap": [ + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextFooterFontSize%" + } + ] + }, + { + "controlTemplateName": "rectangle", + "name": "separatorShapeStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor3%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "videoPlayback", + "name": "defaultVideoPlaybackStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + } + ] + }, + { + "controlTemplateName": "timer", + "name": "defaultTimerStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + } + ] + }, + { + "controlTemplateName": "triangle", + "name": "defaultTriangleStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "star", + "name": "defaultStarStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "pentagon", + "name": "defaultPentagonStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "partialCircle", + "name": "defaultPartialCircleStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "octagon", + "name": "defaultOctagonStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "hexagon", + "name": "defaultHexagonStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "hexagon", + "name": "primary2HexagonStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "hexagon", + "name": "primary3HexagonStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor3%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "hexagon", + "name": "primary3FadeHexagonStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor3Fade%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "hexagon", + "name": "screenHexagonStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.ScreenBkgColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "circle", + "name": "defaultCircleStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "circle", + "name": "primary2CircleStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "circle", + "name": "primary3CircleStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor3%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "circle", + "name": "primary3FadeCircleStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor3Fade%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "arrow", + "name": "defaultArrowStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + } + ] + }, + { + "controlTemplateName": "icon", + "name": "defaultIconStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledButtonBkgColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + } + ] + }, + { + "controlTemplateName": "icon", + "name": "primary1IconStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledButtonBkgColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + } + ] + }, + { + "controlTemplateName": "icon", + "name": "primary3IconStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.PrimaryColor3%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledButtonBkgColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + } + ] + }, + { + "controlTemplateName": "icon", + "name": "invertedBkgHeaderIconStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.IconFillColorInverted%" + }, + { + "property": "PressedFill", + "value": "%Palette.IconPressedFillColorInverted%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledButtonBkgColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + } + ] + }, + { + "controlTemplateName": "microphone", + "name": "defaultMicrophoneStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.PrimaryColor3%" + }, + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + } + ] + }, + { + "controlTemplateName": "inkControl", + "name": "defaultInkControlStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "import", + "name": "defaultImportStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Size", + "value": "%Palette.TextEmphasisFontSize%" + } + ] + }, + { + "controlTemplateName": "image", + "name": "defaultImageStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledButtonBkgColor%" + } + ] + }, + { + "controlTemplateName": "htmlviewer", + "name": "defaultHtmlViewerStyle", + "propertyValuesMap": [ + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + } + ] + }, + { + "controlTemplateName": "htmlviewer", + "name": "typedDataCardHtmlViewerStyle", + "propertyValuesMap": [ + { + "property": "DisabledBorderColor", + "value": "%Palette.DisabledBorderColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + }, + { + "property": "Color", + "value": "%Palette.TextLinkColor%" + } + ] + }, + { + "controlTemplateName": "export", + "name": "defaultExportStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextEmphasisFontWeight%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "DisabledFill", + "value": "%Palette.DisabledInputBkgColor%" + }, + { + "property": "Size", + "value": "%Palette.TextEmphasisFontSize%" + } + ] + }, + { + "controlTemplateName": "addMedia", + "name": "defaultAddMediaStyle", + "propertyValuesMap": [ + { + "property": "Color", + "value": "%Palette.InputTextColor%" + }, + { + "property": "Fill", + "value": "%Palette.InputBkgColor%" + } + ] + }, + { + "controlTemplateName": "audioPlayback", + "name": "defaultAudioPlaybackStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + } + ] + }, + { + "controlTemplateName": "rectangle", + "name": "defaultRectangleStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "rectangle", + "name": "primary2RectangleStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "rectangle", + "name": "primary3RectangleStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor3%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "rectangle", + "name": "primary3FadeRectangleStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.PrimaryColor3Fade%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "rectangle", + "name": "invertedBackgroundRectangleStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.InvertedBkgColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "rectangle", + "name": "overlayRectangleStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.OverlayBkgColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "typedDataCard", + "name": "defaultTypedDataCardStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "entityForm", + "name": "defaultEntityFormStyle", + "propertyValuesMap": [ + { + "property": "TextColor", + "value": "%Palette.TextMainColor%" + }, + { + "property": "InputTextColor", + "value": "%Palette.InputTextColor%" + }, + { + "property": "DisabledTextColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "PrimaryColor1", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "PrimaryColor2", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "PrimaryColor3", + "value": "%Palette.PrimaryColor3%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "InputBackgroundColor", + "value": "%Palette.InputBkgColor%" + } + ] + }, + { + "controlTemplateName": "dataGrid", + "name": "defaultDataGridStyle", + "propertyValuesMap": [ + { + "property": "LinkColor", + "value": "%Palette.TextLinkColor%" + }, + { + "property": "PrimaryColor1", + "value": "%Palette.PrimaryColor1%" + }, + { + "property": "PrimaryColor2", + "value": "%Palette.PrimaryColor2%" + }, + { + "property": "PrimaryColor3", + "value": "%Palette.PrimaryColor3%" + }, + { + "property": "Color", + "value": "%Palette.TextMainColor%" + }, + { + "property": "InvertedColor", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "DisabledColor", + "value": "%Palette.DisabledTextMainColor%" + }, + { + "property": "SelectedFill", + "value": "%Palette.PrimaryColor2Light%" + }, + { + "property": "SelectedColor", + "value": "%Palette.TextMainColor%" + }, + { + "property": "HoverFill", + "value": "%Palette.PrimaryColor3Light%" + }, + { + "property": "HoverColor", + "value": "%Palette.TextMainColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + }, + { + "property": "InputFill", + "value": "%Palette.InputBkgColor%" + }, + { + "property": "Font", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "FontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "Size", + "value": "%Palette.TextBodyFontSize%" + }, + { + "property": "HeadingFont", + "value": "%Palette.TextBodyFontFace%" + }, + { + "property": "HeadingFontWeight", + "value": "%Palette.TextBodyFontWeight%" + }, + { + "property": "HeadingSize", + "value": "%Palette.TextBodyFontSize%" + }, + { + "property": "HeadingColor", + "value": "%Palette.TextMainColorInverted%" + }, + { + "property": "HeadingFill", + "value": "%Palette.PrimaryColor1%" + } + ] + }, + { + "controlTemplateName": "powerbi", + "name": "defaultPowerbiStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "form", + "name": "defaultFormStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "formViewer", + "name": "defaultFormViewerStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "pdfViewer", + "name": "defaultPdfViewerStyle", + "propertyValuesMap": [ + { + "property": "Fill", + "value": "%Palette.ScreenBkgColor%" + }, + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + }, + { + "controlTemplateName": "gallery", + "name": "defaultGalleryStyle", + "propertyValuesMap": [ + { + "property": "BorderColor", + "value": "%Palette.InputBorderColor%" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/example/src/meetingcapturedemo/Src/WelcomeScreen.fx.yaml b/example/src/meetingcapturedemo/Src/WelcomeScreen.fx.yaml new file mode 100644 index 0000000..4a2ff6b --- /dev/null +++ b/example/src/meetingcapturedemo/Src/WelcomeScreen.fx.yaml @@ -0,0 +1,269 @@ +WelcomeScreen As screen: + Fill: =RGBA(74, 91, 104, 1) + Height: =Max(App.Height, App.DesignHeight) + OnVisible: |- + =/*if any additional meeting is captured in the same session, guarantees all collections are empty*/ + Clear(MeetingAttendees); + Clear(MeetingTimes); + Clear(EmailRecipients); + Clear(FollowUpMeetingAttendees); + Clear(Tasks); + Clear(Photos); + Clear(Sketches); + Clear(EmailAttachments); + Reset(NotesInput); + Reset(AssnTaskSearchUser_1); + Set(FollowUpConfirmed, false); + Set(EmailConfirmed, false); + Set(ExportConfirmed, false); + + /*Email and OneNote templates with {placeholder} values for dynamic information*/ + + ClearCollect(Templates, + {Template: "Email", Value: "" & "{MeetingName}" & "
[ Meeting Capture ]
" & "{MeetingName}" & "
" & "{MeetingStartDate}" &" | " & "{MeetingStartTime}" & " - "& "{MeetingEndTime}" & " (" & "{MeetingMinutes}" & " Minutes)
+
" & "{1}" & "
Attendees (" & "{MeetingAttendeeNum}" & ")
Meeting details
" & "{MeetingDetails}" & "
Meeting Notes
" & "{MeetingNotes}" & "
" & "{2}" & "
Tasks
"}, + {Template: "OneNote", Value: "" & "{MeetingName}" & "
 
[ Meeting Capture ]
 
 
" & "{MeetingName}" & "
" & "{MeetingStartDate}" &" | " & "{MeetingStartTime}"&" - "& "{MeetingEndTime}" & " (" & "{MeetingMinutes}" & " Minutes)
 
" & "{1}" & "
Attendees (" & "{MeetingAttendeeNum}" & ")
 
 
Meeting NotesTasks
" & "{MeetingNotes}" & "" & "{2}" & "
 
 
"}) + Orientation: =If(WelcomeScreen.Width < WelcomeScreen.Height, Layout.Vertical, Layout.Horizontal) + Size: =1 + CountRows(App.SizeBreakpoints) - CountIf(App.SizeBreakpoints, Value >= WelcomeScreen.Width) + Width: =Max(App.Width, App.DesignWidth) + + WelcomeScreenFrgnd As rectangle: + DisabledFill: =WelcomeScreenFrgnd.Fill + Fill: =White + FocusedBorderColor: =WelcomeScreenFrgnd.BorderColor + Height: =599 + HoverFill: =WelcomeScreenFrgnd.Fill + PressedFill: =WelcomeScreenFrgnd.Fill + Width: =700 + X: =Parent.Width/2 - WelcomeScreenFrgnd.Width/2 + Y: =Parent.Height/2 - WelcomeScreenFrgnd.Height/2 + ZIndex: =1 + + WelcomeScreenTitle As label: + Align: =Center + AutoHeight: =true + Color: =RGBA(44, 48, 52, 1) + DisabledColor: =RGBA(166, 166, 166, 1) + FocusedBorderColor: =WelcomeScreenTitle.BorderColor + FontWeight: =Lighter + Height: =54 + HoverBorderColor: =WelcomeScreenTitle.BorderColor + HoverColor: =WelcomeScreenTitle.Color + HoverFill: =WelcomeScreenTitle.Fill + PressedBorderColor: =WelcomeScreenTitle.BorderColor + PressedColor: =WelcomeScreenTitle.Color + PressedFill: =WelcomeScreenTitle.Fill + Size: =27 + Text: ="Welcome to Meeting Capture!" + Width: =689 + X: =340+0 + Y: =226+0 + ZIndex: =2 + + WelcomeScreenSubTitle As label: + Align: =Align.Center + AutoHeight: =true + FocusedBorderColor: =WelcomeScreenSubTitle.BorderColor + Height: =24 + HoverBorderColor: =WelcomeScreenSubTitle.BorderColor + HoverColor: =WelcomeScreenSubTitle.Color + HoverFill: =WelcomeScreenSubTitle.Fill + LineHeight: =1.55 + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =WelcomeScreenSubTitle.BorderColor + PressedColor: =WelcomeScreenSubTitle.Color + PressedFill: =WelcomeScreenSubTitle.Fill + Size: =13.5 + Text: |- + =If(AutoSelectMeeting, "The current meeting has been selected for you:", "Select the meeting you’d like to capture:") + Width: =700 + X: =336 + Y: =323 + ZIndex: =3 + + GalleryMeetings As gallery.galleryVertical: + DisabledBorderColor: =GalleryMeetings.BorderColor + DisabledFill: =GalleryMeetings.Fill + Height: =242 + HoverBorderColor: =GalleryMeetings.BorderColor + HoverFill: =GalleryMeetings.Fill + Items: =If(!AutoSelectMeeting, Sort(MeetingsOnly,Start,Ascending), LookUp(MeetingsOnly, isCurrent)) + Layout: =Layout.Vertical + LoadingSpinnerColor: =GalleryMeetings.BorderColor + OnSelect: =Set(SelectedMeeting, ThisItem) + PressedBorderColor: =GalleryMeetings.BorderColor + PressedFill: =GalleryMeetings.Fill + ShowScrollbar: =false + TemplateSize: =96 + Width: =700 + X: =333 + Y: =385 + ZIndex: =4 + + MeetingsGalleryBkg As button: + BorderColor: =If(AutoSelectMeeting, Black, RGBA(237, 41, 85, 1)) + BorderThickness: =1 + DisabledBorderColor: =RGBA(166, 166, 166, 1) + DisabledColor: =RGBA(166, 166, 166, 1) + DisabledFill: =RGBA(244, 244, 244, 1) + Fill: =If(ThisItem.Id = SelectedMeeting.Id && !AutoSelectMeeting, RGBA(237, 41, 85, .15), RGBA(255, 255, 255, 1)) + FocusedBorderColor: =MeetingsGalleryBkg.BorderColor + FocusedBorderThickness: =1 + Height: =90 + HoverBorderColor: =ColorFade(MeetingsGalleryBkg.BorderColor, 20%) + HoverColor: =MeetingsGalleryBkg.Color + HoverFill: =ColorFade(MeetingsGalleryBkg.Fill, 20%) + OnSelect: =Select(Parent) + PressedBorderColor: =MeetingsGalleryBkg.Fill + PressedColor: =MeetingsGalleryBkg.Fill + PressedFill: =MeetingsGalleryBkg.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Text: ="" + Width: =640 + X: =GalleryMeetings.Width/2 - MeetingsGalleryBkg.Width/2 + Y: =6 + ZIndex: =1 + + icon2 As icon.Calendar: + Color: =If(AutoSelectMeeting, Black, RGBA(237, 41, 85, 1)) + DisabledBorderColor: =RGBA(166, 166, 166, 1) + DisabledColor: =RGBA(244, 244, 244, 1) + DisabledFill: =icon2.Fill + FocusedBorderColor: =icon2.BorderColor + Height: =28 + HoverBorderColor: =ColorFade(icon2.BorderColor, 20%) + HoverColor: =ColorFade(icon2.Color, 20%) + HoverFill: =icon2.Fill + Icon: =Icon.AddToCalendar + OnSelect: =Select(Parent) + PressedBorderColor: =ColorFade(icon2.BorderColor, -20%) + PressedColor: =ColorFade(icon2.Color, -20%) + PressedFill: =icon2.Fill + Width: =28 + X: =57+0 + Y: =38+0 + ZIndex: =2 + + LblMeetTitle As label: + Color: =If(AutoSelectMeeting, Black, RGBA(237, 41, 85, 1)) + DisabledColor: =RGBA(166, 166, 166, 1) + FocusedBorderColor: =LblMeetTitle.BorderColor + FontWeight: =Semibold + Height: =27 + HoverBorderColor: =LblMeetTitle.BorderColor + HoverColor: =LblMeetTitle.Color + HoverFill: =LblMeetTitle.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =70 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =LblMeetTitle.BorderColor + PressedColor: =LblMeetTitle.Color + PressedFill: =LblMeetTitle.Fill + Text: =ThisItem.Subject + Width: =640 + X: =30+0 + Y: =25+0 + ZIndex: =3 + + LblStart_End As label: + Color: =If(AutoSelectMeeting, Black, RGBA(237, 41, 85, 1)) + DisabledColor: =RGBA(166, 166, 166, 1) + FocusedBorderColor: =LblStart_End.BorderColor + FontWeight: =Normal + Height: =44 + HoverBorderColor: =LblStart_End.BorderColor + HoverColor: =LblStart_End.Color + HoverFill: =LblStart_End.Fill + OnSelect: =Select(Parent) + PaddingBottom: =0 + PaddingLeft: =70 + PaddingRight: =0 + PaddingTop: =0 + PressedBorderColor: =LblStart_End.BorderColor + PressedColor: =LblStart_End.Color + PressedFill: =LblStart_End.Fill + Text: |- + =Lower(Text(ThisItem.Start,"[$-en-US]hh:mm am/pm"))&" - "&Lower(Text(ThisItem.End,"[$-en-US]hh:mm am/pm"))&" | "&ThisItem.Location + Width: =640 + X: =30+0 + Y: =50+0 + ZIndex: =4 + + BtnChangeAuto As button: + BorderColor: =Black + BorderThickness: =1 + Color: =Black + DisabledBorderColor: =RGBA(166, 166, 166, 1) + DisabledColor: =RGBA(166, 166, 166, 1) + DisabledFill: =RGBA(244, 244, 244, 1) + Fill: =RGBA(62,96,170,0) + FocusedBorderColor: =BtnChangeAuto.BorderColor + Height: =30 + HoverBorderColor: =ColorFade(BtnChangeAuto.BorderColor, 20%) + HoverColor: =BtnChangeAuto.Color + HoverFill: =ColorFade(BtnChangeAuto.Fill, 20%) + OnSelect: =Set(AutoSelectMeeting, false) + PressedBorderColor: =BtnChangeAuto.Fill + PressedColor: =BtnChangeAuto.Fill + PressedFill: =BtnChangeAuto.Color + RadiusBottomLeft: =3 + RadiusBottomRight: =3 + RadiusTopLeft: =3 + RadiusTopRight: =3 + Size: =12 + Text: ="Change" + Visible: =AutoSelectMeeting = true + Width: =92 + X: =572+0 + Y: =52+0 + ZIndex: =5 + + BtnStartMeeting As button: + BorderColor: =ColorFade(BtnStartMeeting.Fill, -15%) + BorderThickness: =1 + DisabledBorderColor: =RGBA(166, 166, 166, 1) + DisplayMode: =If(IsBlank(SelectedMeeting), Disabled, DisplayMode.Edit) + Fill: =RGBA(237, 41, 85, 1) + FocusedBorderColor: =BtnStartMeeting.BorderColor + Height: =56 + HoverBorderColor: =ColorFade(BtnStartMeeting.BorderColor, 20%) + HoverColor: =BtnStartMeeting.Color + HoverFill: =ColorFade(BtnStartMeeting.Fill, 20%) + OnSelect: |- + =/*to make pop ups accessible we have a separate screen which displays pop ups separate from the main screen the pop ups are associated with*/ + Navigate(HomePopUpsScreen, None); + Set(ShowDataLossWarning, true) + PressedBorderColor: =BtnStartMeeting.Fill + PressedColor: =BtnStartMeeting.Fill + PressedFill: =BtnStartMeeting.Color + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =0 + RadiusTopRight: =0 + Text: ="Start Meeting" + Width: =700 + X: =333+0 + Y: =627 + ZIndex: =5 + + AppLogo As image: + FocusedBorderColor: =AppLogo.BorderColor + Height: =35 + HoverBorderColor: =ColorFade(AppLogo.BorderColor, 20%) + HoverFill: =ColorFade(AppLogo.Fill, 20%) + Image: ='meeting-capture-logo-full@3x' + PressedBorderColor: =ColorFade(AppLogo.BorderColor, -20%) + PressedFill: =ColorFade(AppLogo.Fill, -20%) + Width: =183 + X: =594 + Y: =146 + ZIndex: =6 + diff --git a/example/src/meetingcapturedemo/pkgs/Wadl/Office365Outlook.xml b/example/src/meetingcapturedemo/pkgs/Wadl/Office365Outlook.xml new file mode 100644 index 0000000..c0e189a --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/Wadl/Office365Outlook.xml @@ -0,0 +1,4594 @@ + + Microsoft Office 365 is a cloud-based service that is designed to help meet your organization's needs for robust security, reliability, and user productivity. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/Wadl/Office365Users.xml b/example/src/meetingcapturedemo/pkgs/Wadl/Office365Users.xml new file mode 100644 index 0000000..a0f0561 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/Wadl/Office365Users.xml @@ -0,0 +1,508 @@ + + Office 365 Users Connection provider lets you access user profiles in your organization using your Office 365 account. You can perform various actions such as get your profile, a user's profile, a user's manager or direct reports and also update a user profile. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/Wadl/OneNote%28Business%29.xml b/example/src/meetingcapturedemo/pkgs/Wadl/OneNote%28Business%29.xml new file mode 100644 index 0000000..adf66b6 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/Wadl/OneNote%28Business%29.xml @@ -0,0 +1,371 @@ + + OneNote is a note taking app from Microsoft that makes it easy to sync your ideas, sketches and notes across all your devices! Connect to your Office 365 account with OneDrive for Business enabled to track new sections, create notes and more. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/Wadl/Planner.xml b/example/src/meetingcapturedemo/pkgs/Wadl/Planner.xml new file mode 100644 index 0000000..973151b --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/Wadl/Planner.xml @@ -0,0 +1,482 @@ + + Microsoft Planner lets you easily bring together teams, tasks, documents, and conversations for better results. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/button_2.1.0.xml b/example/src/meetingcapturedemo/pkgs/button_2.1.0.xml new file mode 100644 index 0000000..71b1970 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/button_2.1.0.xml @@ -0,0 +1,229 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + + + +
+ + +
+]]> + + + The pressed state of the button. + data + boolean + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/camera_2.4.0.xml b/example/src/meetingcapturedemo/pkgs/camera_2.4.0.xml new file mode 100644 index 0000000..7785d97 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/camera_2.4.0.xml @@ -0,0 +1,144 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + + + + +
+
+
+
+
+ +
+ + ]]>
+ + + Camera image output + Data + + + Camera stream output + Data + + + Camera + design + ##camera_Camera_DisplayName## + ##camera_Camera_Tooltip## + + + StreamRate + design + ##camera_StreamRate_DisplayName## + + + OnStream + behavior + ##camera_OnStream_DisplayName## + ##camera_OnStream_Tooltip## + + + Outputs available video devices + Data + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/checkbox_2.1.0.xml b/example/src/meetingcapturedemo/pkgs/checkbox_2.1.0.xml new file mode 100644 index 0000000..163146b --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/checkbox_2.1.0.xml @@ -0,0 +1,282 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + + + +
+ ]]>
+ + + Checkbox default value + data + ##checkbox_Default_DisplayName## + ##checkbox_Default_Tooltip## + + + Checkbox value + data + + + + Checkbox checked behavior + behavior + ##checkbox_OnCheck_DisplayName## + ##checkbox_OnCheck_Tooltip## + + + + Checkbox unchecked behavior + behavior + ##checkbox_OnUncheck_DisplayName## + ##checkbox_OnUncheck_Tooltip## + + + Reset + data + ##commonProperties_Reset_DisplayName## + ##commonProperties_Reset_Tooltip## + + + Checkbox Checkmark Fill + design + color + ##checkbox_CheckmarkFill_DisplayName## + ##checkbox_CheckmarkFill_Tooltip## + + + Checkbox Background Fill + design + color + ##checkbox_BackgroundFill_DisplayName## + ##checkbox_BackgroundFill_Tooltip## + + + Checkbox Border Color + design + color + ##checkbox_BorderColor_DisplayName## + ##checkbox_BorderColor_Tooltip## + + + Checkbox Size + design + fontSize + ##checkbox_CheckboxSize_DisplayName## + ##checkbox_CheckboxSize_Tooltip## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/circle_2.2.0.xml b/example/src/meetingcapturedemo/pkgs/circle_2.2.0.xml new file mode 100644 index 0000000..588535c --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/circle_2.2.0.xml @@ -0,0 +1,148 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + = 0) && (viewState.displayMode() !== AppMagic.Constants.DisplayMode.Edit), + 'aria-hidden': properties.TabIndex() < 0 && !properties.AccessibleLabel() + }"> + + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/datepicker_2.5.0.xml b/example/src/meetingcapturedemo/pkgs/datepicker_2.5.0.xml new file mode 100644 index 0000000..cdef54c --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/datepicker_2.5.0.xml @@ -0,0 +1,362 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + + + + +
+ +
+ + ]]>
+ + + + Selected Date + data + ##Calendar_SelectedDate_DisplayName## + + + DefaultDate + data + ##Calendar_DefaultDate_DisplayName## + + + + IsEditable + design + ##Calendar_IsEditable_DisplayName## + ##Calendar_IsEditable_Tooltip## + + + DateTimeZone + data + ##DatePicker_DateTimeZone_DisplayName## + ##DatePicker_DateTimeZone_Tooltip## + + + Format + data + ##DatePicker_Format_DisplayName## + ##DatePicker_Format_Tooltip## + + + Language + data + ##DatePicker_Language_DisplayName## + ##DatePicker_Language_Tooltip## + + + Input Text Placeholder + data + ##DatePicker_InputTextPlaceholder_DisplayName## + ##DatePicker_InputTextPlaceholder_Tooltip## + + + + Start Year + data + ##Calendar_StartYear_DisplayName## + + + End Year + data + ##Calendar_EndYear_DisplayName## + + + Start Of Week + data + ##Calendar_StartOfWeek_DisplayName## + ##Calendar_StartOfWeek_Tooltip## + + + + + + + + + + Icon Fill + design + color + ##Calendar_Icon_Fill_DisplayName## + + + Icon Background + design + color + ##Calendar_Icon_Background_DisplayName## + + + + + + + + + + + + + Reset + data + ##commonProperties_Reset_DisplayName## + ##commonProperties_Reset_Tooltip## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/dropdown_2.3.0.xml b/example/src/meetingcapturedemo/pkgs/dropdown_2.3.0.xml new file mode 100644 index 0000000..1ca5e14 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/dropdown_2.3.0.xml @@ -0,0 +1,425 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + + + +
+
+
+ +
+ +
+
+ +
+
+
+
+
+ + + + ]]>
+ + + dropdown items + data + ##dropdown_Items_DisplayName## + + + + + ##dropdown_Items_Tooltip## + + + Value of the selected item + Items + data + + + Text value of the selected item + data + Items + + + + + + Selected item + data + ##dropdown_Default_DisplayName## + ##dropdown_Default_Tooltip## + + + Reset + data + ##commonProperties_Reset_DisplayName## + ##commonProperties_Reset_Tooltip## + + + AllowEmptySelection + data + ##dropdown_AllowEmptySelection_DisplayName## + ##dropdown_AllowEmptySelection_Tooltip## + + + Selected Text color + design + color + ##dropdown_SelectionColor_DisplayName## + ##dropdown_SelectionColor_Tooltip## + + + + + Dropdown Chevron Fill + design + color + ##Dropdown_Chevron_Fill_DisplayName## + ##Dropdown_Chevron_Fill_Tooltip## + + + Dropdown Chevron Hover Fill + design + color + ##Dropdown_Chevron_HoverFill_DisplayName## + + + Dropdown Chevron Disabled Fill + design + color + ##Dropdown_Chevron_DisabledFill_DisplayName## + + + Dropdown Chevron Fill + design + color + ##Dropdown_Chevron_Background_DisplayName## + ##Dropdown_Chevron_Background_Tooltip## + + + Dropdown Chevron Hover Fill + design + color + ##Dropdown_Chevron_HoverBackground_DisplayName## + + + Dropdown Chevron Disabled Fill + design + color + ##Dropdown_Chevron_DisabledBackground_DisplayName## + + + Selected Fill color + design + color + ##dropdown_SelectionFill_DisplayName## + ##dropdown_SelectionFill_Tooltip## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/gallery_2.12.0.xml b/example/src/meetingcapturedemo/pkgs/gallery_2.12.0.xml new file mode 100644 index 0000000..4674dee --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/gallery_2.12.0.xml @@ -0,0 +1,728 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + + + + + + + + + + + + + ##gallery_IsSelected_Description## + data + + + Accessible label for a gallery item + data + ##gallery_ItemAccessibleLabel_DisplayName## + ##gallery_ItemAccessibleLabel_Tooltip## + + + + ##gallery_TemplateFill_Description## + ##gallery_TemplateFill_Tooltip## + design + color + ##gallery_TemplateFill_DisplayName## + + + + On select + ##gallery_OnSelect_Tooltip## + behavior + ##gallery_OnSelect_DisplayName## + + + + + + + ##gallery_Items_Description## + data + + ##gallery_Items_DisplayName## + ##gallery_Items_Tooltip## + + + + ##gallery_Default_Description## + data + Items + ##gallery_Default_DisplayName## + ##gallery_Default_Tooltip## + + + ##gallery_AllItems_Description## + data + Items + + + + + Selectable + data + ##gallery_Selectable_DisplayName## + ##gallery_Selectable_Tooltip## + + + ##gallery_Selected_Description## + data + Items + + + + ##gallery_VisibleIndex_Description## + data + ##gallery_VisibleIndex_DisplayName## + + + ##gallery_TemplateSize_Description## + design + templateSize + ##gallery_TemplateSize_DisplayName## + ##gallery_TemplateSize_Tooltip## + + + ##gallery_TemplateWidth_Description## + design + ##gallery_TemplateWidth_DisplayName## + + + + + ##gallery_TemplateHeight_Description## + design + ##gallery_TemplateHeight_DisplayName## + + + ##gallery_TemplatePadding_Description## + design + ##gallery_TemplatePadding_DisplayName## + templatePadding + ##gallery_TemplatePadding_Tooltip## + + + + ##gallery_Transition_Description## + design + transition + ##gallery_Transition_DisplayName## + ##gallery_Transition_Tooltip## + + + ##gallery_ShowNavigation_Description## + design + boolean + ##gallery_ShowNavigation_DisplayName## + ##gallery_ShowNavigation_Tooltip## + + + ##gallery_NavigationStep_Description## + design + ##gallery_NavigationStep_DisplayName## + ##gallery_NavigationStep_Tooltip## + + + ShowScrollbar + ##gallery_ShowScrollbar_Tooltip## + design + boolean + ##gallery_ShowScrollbar_DisplayName## + + + Valid + data + ##commonProperties_Valid_DisplayName## + ##commonProperties_Valid_Tooltip## + + + + + + + + DelayItemLoading + design + boolean + ##gallery_DelayItemLoading_DisplayName## + ##gallery_DelayItemLoading_Tooltip## + + + LoadingSpinner + design + ##CommonProperties_LoadingSpinner_DisplayName## + ##CommonProperties_LoadingSpinner_Tooltip## + + + LoadingSpinner + design + color + ##CommonProperties_LoadingSpinnerColor_DisplayName## + ##CommonProperties_LoadingSpinnerColor_Tooltip## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/htmlViewer_2.1.0.xml b/example/src/meetingcapturedemo/pkgs/htmlViewer_2.1.0.xml new file mode 100644 index 0000000..abc9127 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/htmlViewer_2.1.0.xml @@ -0,0 +1,143 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + +
+
+
+
+
+
+
+ + ]]>
+ + + HtmlViewer contents + data + ##htmlViewer_HtmlText_DisplayName## + ##htmlViewer_HtmlText_Tooltip## + + + + AutoHeight + design + ##CommonProperties_AutoHeight_DisplayName## + ##CommonProperties_AutoHeight_Tooltip## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/icon_2.4.0.xml b/example/src/meetingcapturedemo/pkgs/icon_2.4.0.xml new file mode 100644 index 0000000..7cf5c04 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/icon_2.4.0.xml @@ -0,0 +1,1068 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + = 0) && (viewState.displayMode() !== AppMagic.Constants.DisplayMode.Edit), + 'aria-hidden': properties.TabIndex() < 0 && !properties.AccessibleLabel() + }, + style: { + cursor: viewState.displayMode() !== AppMagic.Constants.DisplayMode.Edit ? 'default' : 'pointer', + transform: iconRotationComputed() + } + "> + + + + + ]]> + + + Icon + false + design + ##icon_Icon_DisplayName## + ##icon_Icon_Tooltip## + + + Rotation + design + ##icon_Rotation_DisplayName## + ##icon_Rotation_Tooltip## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/image_2.2.0.xml b/example/src/meetingcapturedemo/pkgs/image_2.2.0.xml new file mode 100644 index 0000000..be2a5c9 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/image_2.2.0.xml @@ -0,0 +1,309 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + + + = 1 ? '0' : 1 - properties.Transparency(), + visibility: properties.Transparency() >= 1 ? 'hidden' : '' + }, + visible: properties.Visible + }"> +
+
+
+
+ + + + ]]>
+ + + Image content + true + data + ##image_Image_DisplayName## + ##CommonProperties_Image_Tooltip## + + + + Image transparency + design + ##image_Transparency_DisplayName## + ##image_Transparency_Tooltip## + + + Image stretch style + design + imagePosition + ##image_ImagePosition_DisplayName## + ##CommonProperties_ImagePosition_Tooltip## + + + CalculateOriginalDimensions + design + boolean + ##image_CalculateOriginalDimensions_DisplayName## + + + ImageRotation + design + ##image_ImageRotation_DisplayName## + ##image_ImageRotation_Tooltip## + + + FlipHorizontal + design + boolean + ##image_FlipHorizontal_DisplayName## + + + FlipVertical + design + boolean + ##image_FlipVertical_DisplayName## + + + ApplyEXIFOrientation + design + boolean + ##image_ApplyEXIFOrientation_DisplayName## + + + EXIFOrientation + design + ##image_EXIFOrientation_DisplayName## + + + OriginalWidth + design + imagePosition + ##image_OriginalWidth_DisplayName## + + + OriginalHeight + design + imagePosition + ##image_OriginalHeight_DisplayName## + + + DisplayedWidth + design + ##image_DisplayedWidth_DisplayName## + + + DisplayedHeight + design + ##image_DisplayedHeight_DisplayName## + + + OffsetX + design + ##image_OffsetX_DisplayName## + + + OffsetY + design + ##image_OffsetY_DisplayName## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/inkControl_2.2.0.xml b/example/src/meetingcapturedemo/pkgs/inkControl_2.2.0.xml new file mode 100644 index 0000000..2a31dc6 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/inkControl_2.2.0.xml @@ -0,0 +1,455 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + + + + + + + + + + + ]]> + + + Recognized Text + Data + + + Strokes output + Data + + + Image output + Data + + + + + Reset + data + boolean + ##commonProperties_Reset_DisplayName## + ##commonProperties_Reset_Tooltip## + + + + Mode + design + penMode + ##inkControl_Mode_DisplayName## + ##inkControl_Mode_Tooltip## + + + Color + design + color + ##inkControl_Color_DisplayName## + ##inkControl_Color_Tooltip## + + + Input device Type + design + penType + ##inkControl_Input_DisplayName## + ##inkControl_Input_Tooltip## + + + Pen size + design + penThickness + ##inkControl_Size_DisplayName## + ##inkControl_Size_Tooltip## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/label_2.4.0.xml b/example/src/meetingcapturedemo/pkgs/label_2.4.0.xml new file mode 100644 index 0000000..c80b1f0 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/label_2.4.0.xml @@ -0,0 +1,335 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + = 0 ? 'button' : null, + 'aria-disabled': properties.TabIndex() >= 0 && viewState.displayMode() !== AppMagic.Constants.DisplayMode.Edit + }, + event: { + click: handleClick + }, + shortcut: { + provider: shortcutProvider, + enabled: shortcutsEnabled + }" + > + +
+
+ + +

+

+ + +

+

+ + +

+

+ + +

+

+ + + ]]>
+ + + + Live + data + ##label_Live_DisplayName## + ##label_Live_Tooltip## + + + + Line Height + design + ##label_LineHeight_DisplayName## + ##label_LineHeight_Tooltip## + lineWidth + + + Overflow + design + ##label_Overflow_DisplayName## + ##label_Overflow_Tooltip## + overflow + + + + AutoHeight + design + ##CommonProperties_AutoHeight_DisplayName## + ##CommonProperties_AutoHeight_Tooltip## + + + Wrap + design + ##label_Wrap_DisplayName## + ##label_Wrap_Tooltip## + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/rectangle_2.2.0.xml b/example/src/meetingcapturedemo/pkgs/rectangle_2.2.0.xml new file mode 100644 index 0000000..49177b8 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/rectangle_2.2.0.xml @@ -0,0 +1,144 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + = 0) && (viewState.displayMode() !== AppMagic.Constants.DisplayMode.Edit), + 'aria-hidden': properties.TabIndex() < 0 && !properties.AccessibleLabel() + }"> + + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/text_2.3.1.xml b/example/src/meetingcapturedemo/pkgs/text_2.3.1.xml new file mode 100644 index 0000000..5e8e6e9 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/text_2.3.1.xml @@ -0,0 +1,366 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + + + + + + + + +
+ +
+ + +
+ + + ]]>
+ + + Initial text + data + ##text_Default_DisplayName## + ##text_Default_Tooltip## + + + Output Text + data + + + Textbox Mode + design + TextMode + ##text_Mode_DisplayName## + ##text_Mode_Tooltip## + + + Input textbox Format + design + TextFormat + ##text_Format_DisplayName## + ##text_Format_Tooltip## + + + Input Keyboard Type + design + VirtualKeyboardMode + ##text_VirtualKeyboardMode_DisplayName## + ##text_VirtualKeyboardMode_Tooltip## + + + Clear Button + design + boolean + ##text_Clear_DisplayName## + ##text_Clear_Tooltip## + + + Enable spell check + design + boolean + ##text_EnableSpellCheck_DisplayName## + ##text_EnableSpellCheck_Tooltip## + + + Reset + data + ##commonProperties_Reset_DisplayName## + ##commonProperties_Reset_Tooltip## + + + Line Height + design + ##text_LineHeight_DisplayName## + lineWidth + ##label_LineHeight_Tooltip## + + + Hint text + data + ##text_HintText_DisplayName## + ##text_HintText_Tooltip## + + + MaxLength + data + ##commonProperties_MaxLength_DisplayName## + ##commonProperties_MaxLength_Tooltip## + + + DelayOutput + data + ##text_DelayOutput_DisplayName## + ##text_DelayOutput_Tooltip## + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/example/src/meetingcapturedemo/pkgs/timer_2.1.0.xml b/example/src/meetingcapturedemo/pkgs/timer_2.1.0.xml new file mode 100644 index 0000000..eeff6c9 --- /dev/null +++ b/example/src/meetingcapturedemo/pkgs/timer_2.1.0.xml @@ -0,0 +1,283 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + +
+ +
+ + ]]>
+ + + When true, timer will start playing or continue to play. When false, timer stops playing + data + boolean + ##timer_Start_DisplayName## + ##timer_Start_Tooltip## + + + Duration value for the timer + data + ##timer_Duration_DisplayName## + ##timer_Duration_Tooltip## + + + When End is reached, reset Value property to 0 and continues + data + boolean + ##timer_Repeat_DisplayName## + ##timer_Repeat_Tooltip## + + + When transistioning from false to true, Resets timer + data + boolean + ##timer_Reset_DisplayName## + ##timer_Reset_Tooltip## + + + Automatically start timer when parent screen becomes active + data + boolean + ##timer_AutoStart_DisplayName## + ##timer_AutoStart_Tooltip## + + + Automatically pause timer when parent screen becomes inactive + data + boolean + ##timer_AutoPause_DisplayName## + ##timer_AutoPause_Tooltip## + + + Value of the timer in milliseconds + data + + + + Timer Start + behavior + ##timer_OnTimerStart_DisplayName## + ##timer_OnTimerStart_Tooltip## + + + Timer End + behavior + ##timer_OnTimerEnd_DisplayName## + ##timer_OnTimerEnd_Tooltip## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file From 2898394195920c8dd83192054d79d8f1183de8ff Mon Sep 17 00:00:00 2001 From: Sebastian Muthwill Date: Wed, 13 Oct 2021 14:49:11 +0200 Subject: [PATCH 7/8] fix: adds missing screen description on sub screens --- powerapps_docstring/documentation.py | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/powerapps_docstring/documentation.py b/powerapps_docstring/documentation.py index 475760d..e3e8a4e 100644 --- a/powerapps_docstring/documentation.py +++ b/powerapps_docstring/documentation.py @@ -38,7 +38,7 @@ def _extract_parts_from_propperty(self, propperty) -> tuple: Returns: tuple: bool for contains docstring, docstring, function """ - if propperty[:3] == "=/*": + if propperty.startswith("=/*"): start = propperty.find("/*") + len("/*") end = propperty.find("*/") docstring = propperty[start:end] @@ -66,8 +66,15 @@ def _recursive(key, value): for sub_dict_key, sub_dict_item in value.items(): if sub_dict_key in self.relevant_objects.get(rel_obj_key): - self.md_file.new_header(level=4, title=sub_dict_key) - self.md_file.insert_code(str(sub_dict_item)) + if sub_dict_key == "OnVisible": + screen_docstring = self._extract_parts_from_propperty(sub_dict_item) + # check if docstring exists then add screen docstring + if screen_docstring[0]: + self.md_file.new_paragraph(screen_docstring[1]) + sub_dict_item = screen_docstring[2] + if sub_dict_item != "": + self.md_file.new_header(level=4, title=sub_dict_key) + self.md_file.insert_code(str(sub_dict_item)) elif type(sub_dict_item) == dict: # we found another dict so start over @@ -179,9 +186,14 @@ def create_documentation(self, format=None): connections = self.parser.get_connections() if len(connections) > 0: for connection in connections.items(): + # not all connections have an apiTier + try: + api_tier = f" ({connection[1]['connectionRef']['apiTier']})" + except KeyError: + api_tier = "" self.md_file.new_line(connection[1]["connectionRef"]["displayName"] + - f" ({connection[1]['connectionRef']['apiTier']})", "b") # Header + api_tier, "b") # Header self.md_file.new_line("") for parameter in connection[1]["connectionParameters"].items(): From 8ef8f3b028fe91b9d1c5f50048a5ca63cf50d3b7 Mon Sep 17 00:00:00 2001 From: Sebastian Muthwill Date: Wed, 13 Oct 2021 15:22:58 +0200 Subject: [PATCH 8/8] doc: add getting started and example to readme --- README.md | 39 ++++++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 21e154f..822d27a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ PowerApps-docstring is a console based, pipeline ready application that automatically generates user and technical documentation for PowerApps. -[v0.1.0-alpha version available](https://github.com/sebastian-muthwill/powerapps-docstring/releases/tag/v0.1.0-alpha) +[powerapps-docstring alpha](https://github.com/sebastian-muthwill/powerapps-docstring/releases/latest) ## Purpose of this application Documentation of Microsoft Power Apps is an important building block in the software lifecycle. As in the traditional software development process, the developed Power App should also be documented propperly to ensure further development/support and maintenance as well as onboarding of new developers. @@ -16,30 +16,39 @@ This application shall solve this problem by providing a way to: - create documentation based on an exported app ## Getting started -1. clone repository `git clone https://....` and change into directory `cd powerapps-docstring` +1. clone repository `git clone https://github.com/sebastian-muthwill/powerapps-docstring.git` and change into directory `cd powerapps-docstring` 2. install requirements with `pip install -r requirements.txt` -3. run with `python3 main.py -s path/to/src/folder -o path/to/output/folder` +3. run with `python3 main.py -s example/srcmeetingcapturedemo -o example` + +Once the application finished successfully the documentation file is created in the specified folder in markdown format. + +### Example +The example [Meeting Capture Demo-doc.md](example/Meeting Capture Demo-doc.md) is based on the template "Meeting Capture App" provided by Microsoft. The app has not been modified except docstrings have been added within the `OnVisible` propperties of each screen as well as `OnStart`. The source files are also available in the example folder. + +### Known issues / optimizations +- screens are not in the order as in Power Apps Studio see: #10 +- mermaid graph looks wierd whe to many screens and is not displayed in github since github currently does not support mermaid +- currently not tested with modell driven apps ## Feature ideas -If you would like to submit your idea, please comment this issue: https://github.com/sebastian-muthwill/powerapps-docstring/issues/1 +If you would like to submit your idea, feel free to create an issue. -- screenflow from navigations -- screen descriptions from comments -- used functions (configurable) -- comments -- used connections +- ~~screen descriptions from comments~~ +- ~~screenflow from navigations~~ +- ~~used functions (configurable)~~ +- ~~used connections~~ - output - - user and technical documentation - - markdown + - user ~~and technical~~ documentation + - ~~markdown~~ - html - pdf -- handels the following formats: +- handle following formats: - zip - mssap - - src -- usable via Azure DevOps CI-CD pipeline + - ~~src~~ +- usable via Azure DevOps CI-CD pipeline (not tested yet) ## Follow this topic -[Twitter](https://twitter.com/waszumkuckuck) +Get in touch with me on: [Twitter](https://twitter.com/waszumkuckuck) #powerapps_docstring #PowerAtelier #CloudCouchRocks