diff --git a/samples/gym-management-app/README.md b/samples/gym-management-app/README.md
new file mode 100644
index 00000000..5e8353ca
--- /dev/null
+++ b/samples/gym-management-app/README.md
@@ -0,0 +1,171 @@
+# Gym Management App
+
+## Summary
+
+The Gym Management App is designed to enhance efficiency and reduce costs for gym owners. This application streamlines the process of member registration, subscription management, and communication through automated workflows.
+
+![picture of the sample](assets/LandingPage.PNG)
+
+## Applies to
+
+![Power Apps](https://img.shields.io/badge/Power%20Apps-Yes-green "Yes")
+![Power Automate](https://img.shields.io/badge/Power%20Automate-Yes-green "Yes")
+![Power BI](https://img.shields.io/badge/Power%20BI-No-red "No")
+![Power Pages](https://img.shields.io/badge/Power%20Pages-No-red "No")
+![Power Virtual Agents](https://img.shields.io/badge/Power%20Virtual%20Agents-No-red "No")
+![Dataverse](https://img.shields.io/badge/Dataverse-No-red "No")
+![AI Builder](https://img.shields.io/badge/AI%20Builder-No-red "No")
+![Custom Connectors](https://img.shields.io/badge/Custom%20Connectors-No-red "No")
+![Power Fx](https://img.shields.io/badge/Power%20Fx-Yes-green "Yes")
+
+## Compatibility
+
+![Premium License](https://img.shields.io/badge/Premium%20License-Not%20Required-red.svg "Premium license not required")
+![Experimental Features](https://img.shields.io/badge/Experimental%20Features-Yes-green.svg "Does rely on experimental features")
+
+## Contributors
+
+* [Marvelous Omotoso](https://github.com/Marvelous-O)
+
+## Version history
+
+|Version|Date|Comments|
+|-------|------|---------------|
+|1.0|October 27, 2024|Initial release|
+
+## Prerequisites
+
+- Make sure Office 365 Outlook is enabled in your environment for E-mail sending
+- The Sharepoint list must be the Datasource, the app uses Sharepoint as the Datasource.
+
+### Creating the Data Source
+
+- Create a SharePoint List with the following columns:
+
+ | Column Name | Column Type |
+ | ------------------ | ------------------------------------------------------------------------------------ |
+ | Date | Date and Time |
+ | Name | Single Line of Text |
+ |EmailAddress | Single Line of Text |
+ |PhoneNumber | Number |
+ |MembershipPlan | Choice (Daily, Weekly, Monthly, Quarterly(3 Months), Half a year(6 Months), Yaerly(12 Months))|
+ |PersonalTraining | Choice(No, Daily, Silver, Diamond, Gold, VIP, Boxing) |
+ |DueDate | Calculated Column (Check how to create this below) |
+ |Gender | Choice (Male, Female) |
+ |DueDate2 | Date and Time |
+
+ **NOTE:** Make sure your column names are exactly the way it is written above.
+
+### How to Create Due Date Calculated Column
+
+ Step 1: Add a Column
+ ![Prompt Admin Products](assets/DueDateStep1.png)
+
+ Step 2: Scroll Down to select see all column types
+
+ ![Prompt Admin Products](assets/DueDateStep2.png)
+
+ Step 3: Click on Next
+
+ ![Prompt Admin Products](assets/DueDateStep3.png)
+
+ Step 4: Select Calculated(Calculations based on other columns) and Due Date : as the column name
+
+ ![Prompt Admin Products](assets/DueDateStep4.png)
+
+ Step 5: Scroll down to formula and paste in this formula:
+
+ ```
+ =IF([MembershipPlan]="Daily",[Date]+1,IF([MembershipPlan]="Weekly",[Date]+7,IF([MembershipPlan]="Monthly",[Date]+30,IF([MembershipPlan]="Quarterly(3 Months)",[Date]+90,IF([MembershipPlan]="Half a year(6 Months)",[Date]+180,IF([MembershipPlan]="Yearly(12 Months)",[Date]+365))))))
+ ```
+
+ Scroll down to select Date and Time where it says `The data type returned from this formula is: ` and change the Date and Time Format to **Date Only**
+
+ ![Prompt Admin Products](assets/DueDateStep5.png)
+
+## Minimal path to awesome
+
+### Using the solution zip
+
+* [Download](./solution/gym-management-app.zip) the `.zip` from the `solution` folder.
+* Within **Power Apps Studio**, import the solution `.zip` file using **Solutions** > **Import Solution** and select the `.zip` file you just packed.
+* When importing the solution you will be prompted to connect a SharePoint site and Office 365 Outlook, kindly connect your SharePoint Site and Office365 Outlook. Use the SharePoint list you created in step 1 as the data source.
+
+### Using the source code
+
+You can also use the [Power Apps CLI](https://docs.microsoft.com/powerapps/developer/data-platform/powerapps-cli) to pack the source code by following these steps:
+
+* Clone the repository to a local drive
+* Pack the source files back into a solution `.zip` file:
+
+ ```bash
+ pac solution pack --zipfile pathtodestinationfile --folder pathtosourcefolder --processCanvasApps
+ ```
+
+ Making sure to replace `pathtosourcefolder` to point to the path to this sample's `sourcecode` folder, and `pathtodestinationfile` to point to the path of this solution's `.zip` file (located under the `solution` folder)
+
+* Within **Power Apps Studio**, import the solution `.zip` file using **Solutions** > **Import Solution** and select the `.zip` file you just packed.
+
+## Features
+
+This template not only gives you a good foundation for customizing your own Membership Registration system, it also demonstrates patterns that you can use across other apps.
+
+### Key Features of the solution include:
+
+A dashboard landing page featuring Registered Memebers and Subscription Due Date which was calculated by the app in respect to the Memeber's Subcription Package . Ability to search for a member's details either by Name or E-mail, without having to search through a long list of Excel Spreadsheet.
+ ![Prompt Admin Products](assets/LandingPage.PNG)
+
+**Automated Member Registration**: New members' information is directly entered into the app, eliminating manual data entry.
+![Prompt Admin Products](assets/NewReg1.PNG)
+![Prompt Admin Products](assets/NewReg2.PNG)
+
+**Subscription Management**: The app automatically calculates the subscription due date based on the plan selected during registration.
+![Prompt Admin Products](assets/EditScreen.PNG)
+
+**Automated Communication**:
+
+- Sends a welcome message immediately after registration.
+ ![Prompt Admin Products](assets/EmailScreenshot.PNG)
+
+- Sends a reminder email 7 days before the subscription is due.
+- Sends another reminder email 3 days before the subscription is due.
+ ![Prompt Admin Products](assets/RenewalEmail.PNG)
+
+* The Ability to edit already registered member if he or she changes contacts.
+ ![Prompt Admin Products](assets/EditScreen.PNG)
+
+### Data Sources
+
+- Sharepoint List
+
+### Automated Flow
+
+**Automated Welcome Message**
+
+![Prompt Admin Products](assets/FlowForWelcomeMessage.png)
+
+**Automated Subscription Renewal**
+
+![Prompt Admin Products](assets/SubscriptionRenewalFlow.png)
+
+**Due Date Flow:** (How I used a calculated column for Filter Query in Power Automate)
+
+![Prompt Admin Products](assets/DueDateFlow.png)
+
+Calculated columns can't be used for filter queries in Power Automate. Here's what I did: I created another flow to always copy the data from the calculated column (which is the calculated due date) to another column named DueDate2 as soon as a new member is registered. This new column became a regular date column, making it non-calculated. The Subscription Reminder Flow filters the DueDate2 column to check which members' subscriptions are almost due.
+
+## Help
+
+We do not support samples, but this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues.
+
+If you encounter any issues while using this sample, you can [create a new issue](https://github.com/pnp/powerapps-samples/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=bug-report.yml&sample=gym-management-app&authors=@Marvelous-O&title=gym-management-app%20-%20).
+
+For questions regarding this sample, [create a new question](https://github.com/pnp/powerapps-samples/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=question.yml&sample=gym-management-app&authors=@Marvelous-O&title=gym-management-app%20-%20).
+
+Finally, if you have an idea for improvement, [make a suggestion](https://github.com/pnp/powerapps-samples/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=suggestion.yml&sample=gym-management-app&authors=@Marvelous-O&title=gym-management-app%20-%20).
+
+## Disclaimer
+
+**THIS CODE IS PROVIDED _AS IS_ WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.**
+
+
diff --git a/samples/gym-management-app/assets/DueDateFlow.png b/samples/gym-management-app/assets/DueDateFlow.png
new file mode 100644
index 00000000..3dbfe95c
Binary files /dev/null and b/samples/gym-management-app/assets/DueDateFlow.png differ
diff --git a/samples/gym-management-app/assets/DueDateStep1.png b/samples/gym-management-app/assets/DueDateStep1.png
new file mode 100644
index 00000000..6850e29b
Binary files /dev/null and b/samples/gym-management-app/assets/DueDateStep1.png differ
diff --git a/samples/gym-management-app/assets/DueDateStep2.png b/samples/gym-management-app/assets/DueDateStep2.png
new file mode 100644
index 00000000..2febc375
Binary files /dev/null and b/samples/gym-management-app/assets/DueDateStep2.png differ
diff --git a/samples/gym-management-app/assets/DueDateStep3.png b/samples/gym-management-app/assets/DueDateStep3.png
new file mode 100644
index 00000000..9d71f821
Binary files /dev/null and b/samples/gym-management-app/assets/DueDateStep3.png differ
diff --git a/samples/gym-management-app/assets/DueDateStep4.png b/samples/gym-management-app/assets/DueDateStep4.png
new file mode 100644
index 00000000..dfb6d587
Binary files /dev/null and b/samples/gym-management-app/assets/DueDateStep4.png differ
diff --git a/samples/gym-management-app/assets/DueDateStep5.png b/samples/gym-management-app/assets/DueDateStep5.png
new file mode 100644
index 00000000..b71dc480
Binary files /dev/null and b/samples/gym-management-app/assets/DueDateStep5.png differ
diff --git a/samples/gym-management-app/assets/EditScreen.PNG b/samples/gym-management-app/assets/EditScreen.PNG
new file mode 100644
index 00000000..ee368653
Binary files /dev/null and b/samples/gym-management-app/assets/EditScreen.PNG differ
diff --git a/samples/gym-management-app/assets/EmailScreenshot.PNG b/samples/gym-management-app/assets/EmailScreenshot.PNG
new file mode 100644
index 00000000..13e4f0ef
Binary files /dev/null and b/samples/gym-management-app/assets/EmailScreenshot.PNG differ
diff --git a/samples/gym-management-app/assets/FlowForWelcomeMessage.png b/samples/gym-management-app/assets/FlowForWelcomeMessage.png
new file mode 100644
index 00000000..79da2eb3
Binary files /dev/null and b/samples/gym-management-app/assets/FlowForWelcomeMessage.png differ
diff --git a/samples/gym-management-app/assets/LandingPage.PNG b/samples/gym-management-app/assets/LandingPage.PNG
new file mode 100644
index 00000000..92035cf2
Binary files /dev/null and b/samples/gym-management-app/assets/LandingPage.PNG differ
diff --git a/samples/gym-management-app/assets/NewReg1.PNG b/samples/gym-management-app/assets/NewReg1.PNG
new file mode 100644
index 00000000..08d3b9c4
Binary files /dev/null and b/samples/gym-management-app/assets/NewReg1.PNG differ
diff --git a/samples/gym-management-app/assets/NewReg2.PNG b/samples/gym-management-app/assets/NewReg2.PNG
new file mode 100644
index 00000000..48a5373c
Binary files /dev/null and b/samples/gym-management-app/assets/NewReg2.PNG differ
diff --git a/samples/gym-management-app/assets/RenewalEmail.PNG b/samples/gym-management-app/assets/RenewalEmail.PNG
new file mode 100644
index 00000000..a34512a8
Binary files /dev/null and b/samples/gym-management-app/assets/RenewalEmail.PNG differ
diff --git a/samples/gym-management-app/assets/SubscriptionRenewalFlow.png b/samples/gym-management-app/assets/SubscriptionRenewalFlow.png
new file mode 100644
index 00000000..916a3265
Binary files /dev/null and b/samples/gym-management-app/assets/SubscriptionRenewalFlow.png differ
diff --git a/samples/gym-management-app/assets/SuccessScreen.PNG b/samples/gym-management-app/assets/SuccessScreen.PNG
new file mode 100644
index 00000000..5c243f9d
Binary files /dev/null and b/samples/gym-management-app/assets/SuccessScreen.PNG differ
diff --git a/samples/gym-management-app/assets/sample.json b/samples/gym-management-app/assets/sample.json
new file mode 100644
index 00000000..9e015ca3
--- /dev/null
+++ b/samples/gym-management-app/assets/sample.json
@@ -0,0 +1,68 @@
+[
+ {
+ "name": "pnp-powerplatform-samples-gym-management-app",
+ "source": "pnp",
+ "title": "Gym Management App",
+ "shortDescription": "The Gym Management App is designed to enhance efficiency and reduce costs for gym owners.",
+ "url": "https://github.com/pnp/powerplatform-samples/tree/main/samples/gym-management-app",
+ "downloadUrl": "https://pnp.github.io/download-partial/?url=https://github.com/pnp/powerplatform-samples/tree/main/samples/gym-management-app",
+ "longDescription": [
+ "The Gym Management App is designed to enhance efficiency and reduce costs for gym owners."
+ ],
+ "creationDateTime": "2024-10-27",
+ "updateDateTime": "2024-10-27",
+ "products": [
+ "Power Apps",
+ "Power Automate",
+ "Power Fx",
+ "Power Platform"
+ ],
+ "tags": [
+ "management app"
+ ],
+ "categories": [
+ "CANVAS",
+ "CLOUD-FLOW"
+ ],
+ "metadata": [
+ {
+ "key": "POWERAPPS-EXPERIMENTAL",
+ "value": "No"
+ },
+ {
+ "key": "POWERAPPS-PREMIUM",
+ "value": "No"
+ },
+ {
+ "key": "POWERAPPS-ONPREM",
+ "value": "No"
+ },
+ {
+ "key": "POWERAPPS-CUSTOMCONNECTOR",
+ "value": "No"
+ }
+ ],
+ "thumbnails": [
+ {
+ "type": "image",
+ "order": 100,
+ "url": "https://github.com/pnp/powerplatform-samples/raw/main/samples/gym-management-app/assets/LandingPage.PNG",
+ "alt": "App preview"
+ }
+ ],
+ "authors": [
+ {
+ "gitHubAccount": "Marvelous-O",
+ "pictureUrl": "https://github.com/Marvelous-O.png",
+ "name": "Marvelous Omotoso"
+ }
+ ],
+ "references": [
+ {
+ "name": "Microsoft Power Platform documentation",
+ "description": "Discover how to make the most of Microsoft Power Platform products with online training courses, docs, and videos covering product capabilities and how-to guides.",
+ "url": "https://learn.microsoft.com/power-platform/"
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/samples/gym-management-app/solution/gym-management-app.zip b/samples/gym-management-app/solution/gym-management-app.zip
new file mode 100644
index 00000000..868ed974
Binary files /dev/null and b/samples/gym-management-app/solution/gym-management-app.zip differ
diff --git a/samples/gym-management-app/sourcecode/.gitignore b/samples/gym-management-app/sourcecode/.gitignore
new file mode 100644
index 00000000..ba59257a
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/.gitignore
@@ -0,0 +1,8 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# msbuild output directories
+/bin
+/obj
+
+# MSBuild Binary and Structured Log
+*.binlog
diff --git a/samples/gym-management-app/sourcecode/GymMembershipRegistration.cdsproj b/samples/gym-management-app/sourcecode/GymMembershipRegistration.cdsproj
new file mode 100644
index 00000000..7e79f04f
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/GymMembershipRegistration.cdsproj
@@ -0,0 +1,54 @@
+
+
+
+ $(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\PowerApps
+
+
+
+
+
+
+ 5cc85dd8-7b42-4fcb-938d-c6b3e190d3ab
+ v4.6.2
+
+ net462
+ PackageReference
+ src
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PreserveNewest
+
+
+
+
+
+
+
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/gym_703fitnessmembershipregapp_9e622.meta.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/gym_703fitnessmembershipregapp_9e622.meta.xml
new file mode 100644
index 00000000..4e0d16e5
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/gym_703fitnessmembershipregapp_9e622.meta.xml
@@ -0,0 +1,34 @@
+
+
+ gym_703fitnessmembershipregapp_9e622
+ 2024-11-18T18:23:30Z
+ Ready
+ 3.24111.11.0
+ 3.24111.11.0
+ {"primaryDeviceWidth":"1366","primaryDeviceHeight":"768","supportsPortrait":"true","supportsLandscape":"true","primaryFormFactor":"Tablet","showStatusBar":"true","publisherVersion":"3.24111.11","minimumRequiredApiVersion":"2.2.0","hasComponent":"false","hasUnlockedComponent":"false","isUnifiedRootApp":"false","offlineLargeFilesSupport":"false","sienaVersion":"20241109T164816Z-3.24102.17.0","coauthoringEnabled":"true","multipleWritersEnabled":"true","acceptedCoauthoringTerms":"true"}
+ 0
+
+ RGBA(0,176,240,1)
+ Gym Membership Reg App
+ Gym Membership Registration App
+
+
+ []
+ {"7e410418-325a-4130-b683-8e3a17115e7f":{"id":"/providers/microsoft.powerapps/apis/shared_sharepointonline","displayName":"SharePoint","iconUri":"https://connectoricons-prod.azureedge.net/u/jayawan/releases/v1.0.1697/1.0.1697.3786/sharepointonline/icon.png","dataSources":["ListVariables"],"dependencies":[],"dependents":[],"parameterHints":{},"parameterHintsV2":{},"isOnPremiseConnection":false,"bypassConsent":false,"dataSets":{"https://1zvkt.sharepoint.com/sites/DRMARV_marv_EnvVariables":{"datasetOverride":{"name":"https://1zvkt.sharepoint.com/sites/DRMARV","environmentVariableName":"marv_EnvVariables"},"dataSources":{"ListVariables":{"tableName":"edbad80d-1941-4655-80b7-18b6542c364e","tableNameOverride":{"name":"edbad80d-1941-4655-80b7-18b6542c364e","environmentVariableName":"marv_ListVariables"}}}}},"apiTier":"Standard","actions":["providers/PowerPlatform.Governance/Operations/Read","providers/PowerPlatform.Governance/Operations/Write","providers/PowerPlatform.Governance/Operations/Delete"]}}
+ {}
+ []
+ []
+ 1
+ 0
+ 0
+ 0
+
+ 1.0
+ {"cdsdependencies":[{"logicalname":"marv_EnvVariables","componenttype":380,"componenttypeplatformname":"EnvironmentVariableDefinition"},{"logicalname":"marv_ListVariables","componenttype":380,"componenttypeplatformname":"EnvironmentVariableDefinition"}]}
+ 1
+ /CanvasApps/gym_703fitnessmembershipregapp_9e622_BackgroundImageUri
+ /CanvasApps/gym_703fitnessmembershipregapp_9e622_DocumentUri.msapp
+
+ /CanvasApps/gym_703fitnessmembershipregapp_9e622_AdditionalUris0_identity.json
+
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/gym_703fitnessmembershipregapp_9e622_AdditionalUris0_identity.json b/samples/gym-management-app/sourcecode/src/CanvasApps/gym_703fitnessmembershipregapp_9e622_AdditionalUris0_identity.json
new file mode 100644
index 00000000..7b039a60
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/gym_703fitnessmembershipregapp_9e622_AdditionalUris0_identity.json
@@ -0,0 +1 @@
+{"__Version":"0.1","App":"5babb609-698a-4a6c-aff2-ff1c25c18cdc","Test_7F478737223C4B69":"8f094292-242c-4c06-a644-cc8013359d58","Host":"3f5916f6-ebe6-479d-a634-57b0088bec50","Screen1":"406b3abb-d3b1-4140-9c96-af76804ce977","Rectangle1":"16ea62d1-fe56-48b7-8048-c9f4ffe405da","Image3":"40ec3915-21b2-490d-9218-bdba05d5adfe","Icon2":"ae67077a-96a6-4cc4-a516-87869952cd28","Rectangle3":"0879bd11-2f5c-4125-983c-75304968716e","Label3":"0d200efe-2fcc-45a6-bdd8-feeba4930b39","Icon1":"53c4c52b-c8a1-4bfd-be4e-19758f1e9ebc","TextInput1":"7b00a8af-6a75-413b-9604-eeab2ab54ea3","Label1":"4ce3d085-81fd-4431-8868-4f6248790f7b","Button3":"1ce891e0-86a8-4d2b-8331-a19ba3bf678c","Gallery1":"6cd8b451-3438-46f4-a216-f0a0f2213595","galleryTemplate1":"df14a4db-3885-4ac6-8f82-f56ce6058f99","Rectangle8":"65f53290-cdca-45c5-825e-6203a042147a","NextArrow5":"76f5fe36-c4c6-4054-b60b-e37d94fbc937","Title5":"d3e33869-d3af-44ab-b94d-187ec410df2b","Subtitle4":"7fd47350-8c7b-4340-ab04-a73a990598a8","Separator5":"d4f5ac54-b5ba-49f5-b273-d39b2dd3662a","Rectangle5":"03cf4a24-0832-4f63-bdfa-74fd040f9b03","FormViewer3":"4b96f782-7489-4b0b-ab41-55c4246c0718","Name :_DataCard2":"309192e7-2d68-49fb-b5e2-5d93179db579","DataCardKey1":"aafec36c-89d4-41ad-9701-9144cc289b6b","DataCardValue1":"0e4fb2cf-f1c9-401b-9117-60a26e01fc82","Phone Number:_DataCard1":"99b1de4d-2023-449d-9038-50b670a4d9ac","DataCardKey10":"66b32d56-a8cf-4f53-ba92-afcca50eba49","DataCardValue10":"2f79b40b-af19-4303-b06b-9ef05a85c813","E-mail Address :_DataCard1":"372c66b0-68dc-4d22-b437-9d55e635c112","DataCardKey11":"19fbaca1-a792-413d-8447-ceea4fee242c","DataCardValue11":"79d80ca1-281e-4724-9521-d3e3f4c3780b","Gender_DataCard1":"9fb42db7-a6e4-4dd3-bf5c-aea36f871dd7","StarVisible9":"e850cf6c-cdfd-4021-8354-85392e7b860a","ErrorMessage9":"d47f8808-6876-443c-be37-3c3df605eeae","DataCardValue14":"f93b1f06-1ff0-4ba0-9202-703e64d30960","DataCardKey14":"b2fde5cc-64a6-4130-84a5-134dbe37ba21","Date :_DataCard2":"70b15ee7-0fb6-460f-9136-1ec27304d89c","DataCardKey8":"502cd429-3f46-42ee-881d-95375f8de92b","DataCardValue8":"4da45e97-495a-40c3-bf7e-667522dd1c26","MembershipPlan_DataCard3":"e15f3a3b-1379-4293-945b-2c3da9c345e7","StarVisible6":"7b4994c9-a8c0-4c08-a61b-3a01436b64e0","ErrorMessage6":"a0a121d2-8372-4e44-9d11-7c280982f9b4","DataCardValue12":"0c158c98-11cf-4eee-abef-7bd9a21ebe2d","DataCardKey12":"6208a69e-d98d-4160-b66d-3dd39c864b55","PersonalTraining_DataCard3":"4c1e0b0a-78c9-4bb9-b6b1-fb877579813a","StarVisible5":"6a77156f-60a2-4077-8584-52822841e4f3","ErrorMessage5":"2b2e9919-859f-47bc-9a41-536a7864f1ba","DataCardValue9":"81cb5036-d4e7-4cf5-b353-f3dac4654dd0","DataCardKey9":"8122ef87-eb7e-4148-8243-35b3ec1fb07d","Due Date :_DataCard1":"b657651d-0fd1-46e1-b078-51122709e9e7","DataCardKey13":"effcafac-e540-4fb7-b69c-91ab10b75434","DataCardValue13":"ee0a941e-367a-4438-845e-cea18402ef14","Label2":"6cd0304e-9dce-4d3d-8a17-c248e441cc62","Button4":"146b2b75-d3a4-4708-bf71-591519961d45","Button4_1":"8d1d6eca-b455-4275-a2b3-ff00fe7f099d","Header":"fe1fd942-397a-4d5f-b83a-60f1d30f884d","DeletePopup":"9864c5a2-9438-468d-84b6-af78faaf6851","EditScreen":"91cbd51b-2598-4d0c-8fb7-2d2c86361204","Rectangle1_1":"4c854544-9d6c-47a1-82f4-de1330629fef","Image3_1":"bc01fd50-fba0-4ee8-867b-ee9f13fb5d91","Label3_1":"b5689c71-0187-4e93-9e22-9d8aeb97642a","Icon3":"577ecb8d-2bed-4c29-9564-03a31d241fc3","EditForm":"33aee913-330f-4da5-b4bb-f33a86a85bb0","ErrorMessage20":"fe6774c4-316e-48e3-89ac-ce80218a4fd3","DataCardValue26":"2f8d240b-2bf1-4bc8-8ba6-c2052426718a","DataCardKey26":"bd063493-d29b-41ef-b007-7d66d7d7cf7c","PhoneNumber_DataCard1":"fab72dc8-b2a5-4db2-9ccc-82b212062103","StarVisible20":"7068da9c-5083-49df-be0f-d6dd4ce575b8","ErrorMessage19":"0c8705e6-d23e-4ca6-b634-03496652ca41","DataCardValue25":"e282545b-1529-46aa-9f25-45663e92ee96","DataCardKey25":"9b814697-4b17-445c-8077-12d2814686fb","PersonalTraining_DataCard4":"71c2faa6-3f6a-44a1-a0a1-4bfeaec5673d","StarVisible19":"7dbb8672-6c8a-4186-b98a-52395438f76a","ErrorMessage18":"2dd4c1b4-2fd4-4e11-a40b-d4097ad8e169","DataCardValue24":"92f1b8d3-67e7-4554-895c-df4e29ab52d7","DataCardKey24":"71da164e-b53e-4693-95a5-19394c4ad5bf","MembershipPlan_DataCard4":"4d726a11-94c8-4ead-a6c2-5773b89e5b94","StarVisible18":"838e3a69-3f2f-435f-9a9d-e18be1981a2b","ErrorMessage17":"286e4456-714e-48be-a94c-8d45109e9908","DataCardValue23":"2b3d1037-36bc-48ca-bc81-1488546d8b6c","DataCardKey23":"7dc72a6c-ec7e-40a8-8577-7243d13a8084","Gender_DataCard2":"cb302c2b-1707-416e-a50c-28d8f176f3b6","StarVisible17":"7d2ec134-a9c2-4cc1-9c8f-ffdb327bdf81","ErrorMessage10":"8767825a-0a11-4a0e-941b-079f432e968c","DataCardValue16":"51735b04-5a79-4f42-ae49-e0cb3e8bab5c","DataCardKey16":"fa5d7c8e-cb87-4b1d-8f2a-2a7011ce1050","EmailAddress_DataCard1":"abd03bce-1885-49ed-90dc-40903c408b78","StarVisible10":"3a01a8d2-e609-45f7-a9e4-f9842ba57747","Title_DataCard1":"753b2e81-e4b8-4a47-bdbf-a42663f525ae","StarVisible22":"c4e158fa-d7e3-47e0-9ad4-37647ca89ed9","ErrorMessage22":"aae1d865-c0d1-4747-b71e-6a8eae378b96","DataCardValue28":"76deed00-d11a-4931-afcd-ebf1523b956b","DataCardKey28":"ba0eb7fd-8c06-4a92-a84a-92f3a7074997","ErrorMessage21":"d130f8af-0099-4888-83c7-252827714d92","StarVisible21":"0e315e54-865e-44de-9611-87853f5238bc","Date_DataCard1":"01b46676-ce18-4968-b23f-0e1adcb20fca","DataCardValue15":"b832b106-e29a-49c2-8aa7-56eb8c0e16a4","DataCardKey15":"3cb489e5-afba-48b2-94cd-4cd61f1a3030","Button1":"25290bb4-2e2c-433b-b328-e449bc4a5976","Header 2":"397c2ff8-5d9a-4358-ba16-5c81116dbe00","Screen2":"14297fa6-a68d-435b-a6e2-a3f27608a017","Rectangle1_2":"c488fe66-f454-4b64-bc86-a218909e07af","Image3_2":"a6849d2f-fb6f-49cc-b7bb-14f35127119c","Label3_2":"0caa4b64-ef24-4ae2-b7af-0da42deaaca6","LblSuccessMsg1":"c2ec6ae4-ce54-41c4-8704-1457ba8ac1dd","iconCircle1":"96b960ba-7637-4fa9-90d5-8dd118871cc4","iconCheck1":"9bd15959-de7e-47ae-bba9-39f8a01ef8d4","Button2":"95102414-a272-4408-b15b-4069b538a2a7","Header_1":"9d79ecb7-2f79-4752-96dd-8ff0e33e5e92","EditDetailsScreen":"716408c8-aceb-4603-babd-c0b49a2a3860","Rectangle1_3":"7f38f88c-11be-4394-a57c-10fe80c9fc13","Image3_3":"b320b088-ff90-4c07-b1ad-575450c8f1a9","Label3_3":"82012408-217e-4c8c-827d-767a012ae780","Icon3_1":"8fd662ed-0c6c-4753-8a3e-ad2ab19dc4f6","Form2":"6001569b-c4cb-4747-853a-15efc3cd9a89","Title_DataCard2":"df0e0756-19d7-40fb-8cde-366809057b03","StarVisible28":"cdc2c9dc-f8ea-4a36-ad68-af98a9fc1d7b","ErrorMessage28":"a17e3287-f538-4e7d-8da5-ded5cd4801ee","DataCardValue34":"0ee12324-d159-4234-8736-f528aa8e6f7f","DataCardKey34":"ad2bac16-1f19-4f90-b060-fcd1d3013189","PhoneNumber_DataCard2":"295d5162-7e34-4cb0-b5e0-0ee81c73d750","StarVisible27":"61c6ffd0-1e0c-42d5-b360-c4a351ba7d86","ErrorMessage27":"c3c66810-e53e-4d32-b110-ad059d2ae24e","DataCardValue33":"282e7702-f5f8-47b2-bb8f-b6ea29c2d062","DataCardKey33":"aa835fda-2a6a-48e2-8a9c-9033ccc41ed3","PersonalTraining_DataCard5":"97137b5c-28f8-40f2-aa31-b60cdefb582f","StarVisible26":"12968a5a-da5e-4149-895b-1b3e713854a2","ErrorMessage26":"7389b0ea-7f5b-45db-be32-d157188f6b55","DataCardValue32":"e8997df7-e25d-43ce-b1d5-a6b7556e0436","DataCardKey32":"fadd7524-602b-4bd8-a889-36457b347e63","MembershipPlan_DataCard5":"5ec3b4f8-6f3d-4292-b108-66ba8b203acc","StarVisible25":"f5ee7f5a-9345-4956-8eb8-fcdba0cd1d0f","ErrorMessage25":"05c842bd-9de9-4fc2-91ab-a0199d8b77b9","DataCardValue31":"ae58ea76-834e-4104-8da1-2658b2cb02d3","DataCardKey31":"880f97be-4660-4e60-95b5-32b3d5843091","Gender_DataCard3":"47fb2389-862f-45bd-a7fd-54eb553265ba","StarVisible24":"46e0c4da-41a0-455c-9a7c-aedfc2bafada","ErrorMessage24":"4ee4ee32-1dc8-4c62-99f7-94ede7aa7779","DataCardValue30":"1477c65f-dd68-43a4-91ba-aad4ce8e9e06","DataCardKey30":"d8554efa-120c-4df3-9004-6b8e942d42e5","EmailAddress_DataCard2":"0dfd3077-ded4-4d84-99f5-0d5a9d00ffbf","StarVisible23":"34490b45-9dee-4513-87f8-1d8ccd5cb9b9","ErrorMessage23":"acd8f4a5-9e95-4c0c-b676-2216aa8476ff","DataCardValue29":"53438dfb-817b-4d06-ad94-cfeff1d951a7","DataCardKey29":"7850ea3c-9ac0-4732-b2df-02b08e9d9150","Button1_1":"df5f25ae-1888-4546-8d74-01c55732d465","Group5":"4c578b89-e1c9-4080-985d-ec523a93695d"}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/gym_703fitnessmembershipregapp_9e622_BackgroundImageUri b/samples/gym-management-app/sourcecode/src/CanvasApps/gym_703fitnessmembershipregapp_9e622_BackgroundImageUri
new file mode 100644
index 00000000..c67f0065
Binary files /dev/null and b/samples/gym-management-app/sourcecode/src/CanvasApps/gym_703fitnessmembershipregapp_9e622_BackgroundImageUri differ
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/gym_703fitnessmembershipregapp_9e622_DocumentUri.msapp b/samples/gym-management-app/sourcecode/src/CanvasApps/gym_703fitnessmembershipregapp_9e622_DocumentUri.msapp
new file mode 100644
index 00000000..c2e7067a
Binary files /dev/null and b/samples/gym-management-app/sourcecode/src/CanvasApps/gym_703fitnessmembershipregapp_9e622_DocumentUri.msapp differ
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Assets/Images/703 FITNESS.png b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Assets/Images/703 FITNESS.png
new file mode 100644
index 00000000..f33d1819
Binary files /dev/null and b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Assets/Images/703 FITNESS.png differ
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Assets/SampleImage.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Assets/SampleImage.json
new file mode 100644
index 00000000..ce6ca28a
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Assets/SampleImage.json
@@ -0,0 +1,12 @@
+{
+ "Content": "Image",
+ "FileName": "/ctrllib/image/images/SampleImage.svg",
+ "IsSampleData": true,
+ "IsWritable": false,
+ "Name": "SampleImage",
+ "Path": "/ctrllib/image/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/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/CanvasManifest.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/CanvasManifest.json
new file mode 100644
index 00000000..64d33166
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/CanvasManifest.json
@@ -0,0 +1,149 @@
+{
+ "FormatVersion": "0.24",
+ "Header": {
+ "AnalysisOptions": {
+ "DataflowAnalysisEnabled": false,
+ "DataflowAnalysisFlagStateToggledByUser": false
+ },
+ "DocVersion": "1.343",
+ "MinVersionToLoad": "1.331",
+ "MSAppStructureVersion": "2.0"
+ },
+ "Properties": {
+ "AppCreationSource": "AppFromScratch",
+ "AppDescription": "Gym Membership Registration App",
+ "AppPreviewFlagsMap": {
+ "aibuilderserviceenrollment": false,
+ "allowmultiplescreensincanvaspages": false,
+ "appinsightserrortracing": false,
+ "appinstrumentationcorrelationtracing": false,
+ "autocreateenvironmentvariables": true,
+ "behaviorpropertyui": false,
+ "blockmovingcontrol": true,
+ "cdsdataformatting": false,
+ "classiccontrols": false,
+ "commentgeneratedformulasv2": false,
+ "consistentreturnschemafortabularfunctions": true,
+ "copyandmerge": false,
+ "dataflowanalysisenabled": false,
+ "datatablev2control": true,
+ "dataverseactionsenabled": true,
+ "delaycontrolrendering": true,
+ "delayloadscreens": true,
+ "disablebehaviorreturntypecheck": false,
+ "disablecdsfileandlargeimage": false,
+ "disabledeferloadingunusedscreenswithstartscreen": false,
+ "disableloadcomponentdefinitionsondemand": false,
+ "disableruntimepolicies": false,
+ "dynamicschema": false,
+ "enableappembeddingux": false,
+ "enablecanvasappruntimecopilot": false,
+ "enablecomponentnamemaps": false,
+ "enablecomponentscopeoldbehavior": false,
+ "enablecopilotanswercontrol": false,
+ "enablecopilotcontrol": true,
+ "enablecreateaformula": false,
+ "enabledataverseoffline": false,
+ "enableeditcacherefreshfrequency": false,
+ "enableeditinmcs": false,
+ "enableexcelonlinebusinessv2connector": true,
+ "enableideaspanel": true,
+ "enablelegacybarcodescanner": false,
+ "enablelegacydatatable": false,
+ "enableonstart": true,
+ "enableonstartnavigate": false,
+ "enablepcfmoderndatasets": true,
+ "enablerowscopeonetonexpand": false,
+ "enablerpawarecomponentdependency": true,
+ "enablesaveloadcleardataonweb": true,
+ "enableupdateifdelegation": false,
+ "errorhandling": true,
+ "expandedsavedatasupport": true,
+ "exportimportcomponents2": true,
+ "externalmessage": false,
+ "fluentv9controls": false,
+ "fluentv9controlspreview": false,
+ "formuladataprefetch": true,
+ "formularepair": false,
+ "generatedebugpublishedapp": false,
+ "herocontrols": false,
+ "improvedtabstopbehavior": false,
+ "isemptyrequirestableargument": true,
+ "keeprecentscreensloaded": false,
+ "legacyformulabar": false,
+ "longlivingcache": false,
+ "mobilenativerendering": false,
+ "nativecdsexperimental": true,
+ "offlineprofilegenerationemitscolumns": false,
+ "onegrid": false,
+ "optimizedforteamsmeeting": false,
+ "packagemodernruntime": false,
+ "parallelcodegen": false,
+ "pdffunction": false,
+ "powerfxdecimal": false,
+ "powerfxv1": false,
+ "preferpayamlv3inux": false,
+ "primaryoutputpropertycoerciondeprecated": true,
+ "proactivecontrolrename": false,
+ "projectionmapping": true,
+ "reliableconcurrent": true,
+ "reservedkeywords": false,
+ "rtlinstudiopreview": false,
+ "rtlsupport": false,
+ "sharepointselectsenabled": false,
+ "showclassicthemes": false,
+ "smartemaildatacard": false,
+ "supportcolumnnamesasidentifiers": true,
+ "tabledoesntwraprecords": true,
+ "usedisplaynamemetadata": true,
+ "useenforcesavedatalimits": true,
+ "useexperimentalcdsconnector": true,
+ "useexperimentalsqlconnector": true,
+ "useguiddatatypes": true,
+ "usenonblockingonstartrule": true,
+ "userdefinedfunctions": false,
+ "userdefinedtypes": false,
+ "webbarcodescanner": false,
+ "zeroalltabindexes": false
+ },
+ "Author": "",
+ "BindingErrorCount": 0,
+ "ContainsThirdPartyPcfControls": false,
+ "DefaultConnectedDataSourceMaxGetRowsCount": 500,
+ "DocumentAppType": "DesktopOrTablet",
+ "DocumentLayoutHeight": 768,
+ "DocumentLayoutLockOrientation": false,
+ "DocumentLayoutMaintainAspectRatio": true,
+ "DocumentLayoutOrientation": "landscape",
+ "DocumentLayoutScaleToFit": true,
+ "DocumentLayoutWidth": 1366,
+ "DocumentType": "App",
+ "EnableInstrumentation": false,
+ "FileID": "2fbb283b-b1a6-4a7f-ab4d-74150d630918",
+ "Id": "2fbb283b-b1a6-4a7f-ab4d-74150d630918",
+ "InstrumentationKey": "",
+ "LocalDatabaseReferences": "",
+ "ManualOfflineProfileId": "",
+ "Name": "Gym Membership Reg App",
+ "OriginatingVersion": "1.336",
+ "ParserErrorCount": 0,
+ "ShowStatusBar": true
+ },
+ "PublishInfo": {
+ "AppName": "Gym Membership Reg App",
+ "BackgroundColor": "RGBA(0,176,240,1)",
+ "IconColor": "RGBA(255,255,255,1)",
+ "IconName": "Edit",
+ "LogoFileName": "",
+ "PublishDataLocally": false,
+ "PublishResourcesLocally": false,
+ "PublishTarget": "player",
+ "UserLocale": "en-US"
+ },
+ "ScreenOrder": [
+ "Screen1",
+ "EditScreen",
+ "Screen2",
+ "EditDetailsScreen"
+ ]
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/ComponentReferences.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/ComponentReferences.json
new file mode 100644
index 00000000..0637a088
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/ComponentReferences.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Connections/Connections.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Connections/Connections.json
new file mode 100644
index 00000000..f75c065d
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Connections/Connections.json
@@ -0,0 +1,40 @@
+{
+ "7e410418-325a-4130-b683-8e3a17115e7f": {
+ "appActions": [
+ "providers/PowerPlatform.Governance/Operations/Read",
+ "providers/PowerPlatform.Governance/Operations/Write",
+ "providers/PowerPlatform.Governance/Operations/Delete"
+ ],
+ "connectionRef": {
+ "apiTier": "Standard",
+ "displayName": "SharePoint",
+ "iconUri": "https://connectoricons-prod.azureedge.net/u/jayawan/releases/v1.0.1697/1.0.1697.3786/sharepointonline/icon.png",
+ "id": "/providers/microsoft.powerapps/apis/shared_sharepointonline",
+ "parameterHints": {},
+ "parameterHintsV2": {}
+ },
+ "datasets": {
+ "https://1zvkt.sharepoint.com/sites/DRMARV_marv_EnvVariables": {
+ "datasetOverride": {
+ "environmentVariableName": "marv_EnvVariables",
+ "name": "https://1zvkt.sharepoint.com/sites/DRMARV"
+ },
+ "dataSources": {
+ "ListVariables": {
+ "tableName": "edbad80d-1941-4655-80b7-18b6542c364e",
+ "tableNameOverride": {
+ "environmentVariableName": "marv_ListVariables",
+ "name": "edbad80d-1941-4655-80b7-18b6542c364e"
+ }
+ }
+ }
+ }
+ },
+ "dataSources": [
+ "ListVariables"
+ ],
+ "dependencies": {},
+ "dependents": [],
+ "id": "7e410418-325a-4130-b683-8e3a17115e7f"
+ }
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/ControlTemplates.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/ControlTemplates.json
new file mode 100644
index 00000000..73b62fe0
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/ControlTemplates.json
@@ -0,0 +1,265 @@
+{
+ "appinfo": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/appinfo",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "appinfo",
+ "OverridableProperties": {},
+ "Version": "1.0"
+ },
+ "button": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/button",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "button",
+ "OverridableProperties": {},
+ "Version": "2.2.0"
+ },
+ "circle": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/shapes/circle",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "circle",
+ "OverridableProperties": {},
+ "Version": "2.3.0"
+ },
+ "combobox": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/combobox",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "combobox",
+ "OverridableProperties": {},
+ "Version": "2.4.0"
+ },
+ "datepicker": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/datepicker",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "datepicker",
+ "OverridableProperties": {},
+ "Version": "2.6.0"
+ },
+ "form": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/form",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "form",
+ "OverridableProperties": {},
+ "Version": "2.4.2"
+ },
+ "formViewer": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/formViewer",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "formViewer",
+ "OverridableProperties": {},
+ "Version": "2.3.4"
+ },
+ "gallery": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/gallery",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "gallery",
+ "OverridableProperties": {},
+ "Version": "2.15.0"
+ },
+ "galleryTemplate": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/galleryTemplate",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "galleryTemplate",
+ "OverridableProperties": {},
+ "Version": "1.0"
+ },
+ "group": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/group",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "group",
+ "OverridableProperties": {},
+ "Version": "1"
+ },
+ "groupContainer": {
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/groupContainer",
+ "IsComponentTemplate": false,
+ "IsPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "groupContainer",
+ "Version": "1.0"
+ },
+ "Host": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "HostType": "Default",
+ "Id": "http://microsoft.com/appmagic/hostcontrol",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "hostControl",
+ "OverridableProperties": {},
+ "Version": "1.6.0"
+ },
+ "icon": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/icon",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "icon",
+ "OverridableProperties": {},
+ "Version": "2.5.0"
+ },
+ "image": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/image",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "image",
+ "OverridableProperties": {},
+ "Version": "2.2.3"
+ },
+ "label": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/label",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "label",
+ "OverridableProperties": {},
+ "Version": "2.5.1"
+ },
+ "rectangle": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/shapes/rectangle",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "rectangle",
+ "OverridableProperties": {},
+ "Version": "2.3.0"
+ },
+ "screen": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/screen",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "screen",
+ "OverridableProperties": {},
+ "Version": "1.0"
+ },
+ "text": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/text",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "text",
+ "OverridableProperties": {},
+ "Version": "2.3.2"
+ },
+ "typedDataCard": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/card",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "typedDataCard",
+ "OverridableProperties": {},
+ "Version": "1.0.6"
+ }
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/DataSources/ComboBoxSample.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/DataSources/ComboBoxSample.json
new file mode 100644
index 00000000..fdb0d53f
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/DataSources/ComboBoxSample.json
@@ -0,0 +1,17 @@
+[
+ {
+ "Data": "[{\"Value1\":\"Item 1\",\"Value2\":1,\"Value3\":10},{\"Value1\":\"Item 2\",\"Value2\":2,\"Value3\":20},{\"Value1\":\"Item 3\",\"Value2\":3,\"Value3\":30},{\"Value1\":\"Item 4\",\"Value2\":4,\"Value3\":40},{\"Value1\":\"Item 5\",\"Value2\":5,\"Value3\":50},{\"Value1\":\"Item 6\",\"Value2\":6,\"Value3\":60},{\"Value1\":\"Item 7\",\"Value2\":7,\"Value3\":70},{\"Value1\":\"Item 8\",\"Value2\":8,\"Value3\":80},{\"Value1\":\"Item 9\",\"Value2\":9,\"Value3\":90},{\"Value1\":\"Item 10\",\"Value2\":10,\"Value3\":100},{\"Value1\":\"Item 11\",\"Value2\":11,\"Value3\":110},{\"Value1\":\"Item 12\",\"Value2\":12,\"Value3\":120},{\"Value1\":\"Item 13\",\"Value2\":13,\"Value3\":130},{\"Value1\":\"Item 14\",\"Value2\":14,\"Value3\":140},{\"Value1\":\"Item 15\",\"Value2\":15,\"Value3\":150}]",
+ "IsSampleData": true,
+ "IsWritable": false,
+ "Name": "ComboBoxSample",
+ "OrderedColumnNames": [
+ "Value1",
+ "Value2",
+ "Value3"
+ ],
+ "OriginalName": "ComboBoxSample",
+ "OriginalSchema": "*[Value1:s, Value2:n, Value3:n]",
+ "Schema": "*[Value1:s, Value2:n, Value3:n]",
+ "Type": "StaticDataSourceInfo"
+ }
+]
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/DataSources/CustomGallerySample.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/DataSources/CustomGallerySample.json
new file mode 100644
index 00000000..03563808
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/DataSources/CustomGallerySample.json
@@ -0,0 +1,17 @@
+[
+ {
+ "Data": "[{\"SampleHeading\":\"Lorem ipsum 1\",\"SampleImage\":\"/ctrllib/image/images/SampleImage.svg\",\"SampleText\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\"},{\"SampleHeading\":\"Lorem ipsum 2\",\"SampleImage\":\"/ctrllib/image/images/SampleImage.svg\",\"SampleText\":\"Suspendisse enim metus, tincidunt quis lobortis a, fringilla dignissim neque.\"},{\"SampleHeading\":\"Lorem ipsum 3\",\"SampleImage\":\"/ctrllib/image/images/SampleImage.svg\",\"SampleText\":\"Ut pharetra a dolor ac vehicula.\"},{\"SampleHeading\":\"Lorem ipsum 4\",\"SampleImage\":\"/ctrllib/image/images/SampleImage.svg\",\"SampleText\":\"Vestibulum dui felis, fringilla nec mi sed, tristique dictum nisi.\"}]",
+ "IsSampleData": true,
+ "IsWritable": false,
+ "Name": "CustomGallerySample",
+ "OrderedColumnNames": [
+ "SampleImage",
+ "SampleHeading",
+ "SampleText"
+ ],
+ "OriginalName": "CustomGallerySample",
+ "OriginalSchema": "*[SampleHeading:s, SampleImage:i, SampleText:s]",
+ "Schema": "*[SampleHeading:s, SampleImage:i, SampleText:s]",
+ "Type": "StaticDataSourceInfo"
+ }
+]
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/DataSources/ListVariables.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/DataSources/ListVariables.json
new file mode 100644
index 00000000..5ba238f6
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/DataSources/ListVariables.json
@@ -0,0 +1,55 @@
+[
+ {
+ "ApiId": "/providers/microsoft.powerapps/apis/shared_sharepointonline",
+ "CdpRevision": {
+ "BaseUrl": "/",
+ "LastChangedTimeString": "2024-08-23T15:08:14.8170000Z",
+ "RevisionNumber": 1
+ },
+ "ConnectedDataSourceInfoNameMapping": {
+ "{Attachments}": "Attachments",
+ "{Attachments}@odata.type": "{Attachments} ({Attachments}@odata.type)",
+ "{FilenameWithExtension}": "File name with extension",
+ "{FullPath}": "Full Path",
+ "{HasAttachments}": "Has attachments",
+ "{Identifier}": "Identifier",
+ "{IsFolder}": "IsFolder",
+ "{Link}": "Link to item",
+ "{ModerationComment}": "Comments associated with the content approval of this list item",
+ "{ModerationStatus}": "Content approval status",
+ "{Name}": "Name",
+ "{Path}": "Folder path",
+ "{Thumbnail}": "Thumbnail",
+ "{TriggerWindowEndToken}": "Trigger Window End Token",
+ "{TriggerWindowStartToken}": "Trigger Window Start Token",
+ "{VersionNumber}": "Version number",
+ "Author": "Created By",
+ "Author#Claims": "Created By Claims",
+ "ComplianceAssetId": "Compliance Asset Id",
+ "Created": "Created",
+ "Date": "Date",
+ "DueDate": "DueDate",
+ "DueDate2": "DueDate2",
+ "Editor": "Modified By",
+ "Editor#Claims": "Modified By Claims",
+ "EmailAddress": "EmailAddress",
+ "Gender": "Gender",
+ "Gender#Id": "Gender Id",
+ "ID": "ID",
+ "MembershipPlan": "MembershipPlan",
+ "MembershipPlan#Id": "MembershipPlan Id",
+ "Modified": "Modified",
+ "OData__ColorTag": "Color Tag",
+ "PersonalTraining": "PersonalTraining",
+ "PersonalTraining#Id": "PersonalTraining Id",
+ "PhoneNumber": "PhoneNumber",
+ "Title": "Title"
+ },
+ "DatasetName": "https://1zvkt.sharepoint.com/sites/DRMARV",
+ "EncodeDataset": true,
+ "IsSampleData": false,
+ "IsWritable": true,
+ "Name": "ListVariables",
+ "Type": "ConnectedDataSourceInfo"
+ }
+]
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Entropy/AppCheckerResult.sarif b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Entropy/AppCheckerResult.sarif
new file mode 100644
index 00000000..7f610720
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Entropy/AppCheckerResult.sarif
@@ -0,0 +1,931 @@
+{
+ "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.4.json",
+ "runs": [
+ {
+ "columnKind": "utf16CodeUnits",
+ "invocations": [
+ {
+ "executionSuccessful": true
+ }
+ ],
+ "results": [
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "module": "Screen1",
+ "type": "Screen1"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Low"
+ },
+ "ruleId": "acc-ReadableScreenNameNeeded",
+ "ruleIndex": 0
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1.Icon2.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1.Icon2.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "Screen1",
+ "type": "Screen1.Icon2"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1.Icon2.TabIndex"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1.Icon2.TabIndex",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "TabIndex",
+ "module": "Screen1",
+ "type": "Screen1.Icon2"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl",
+ "ruleIndex": 2
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1.TextInput1.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1.TextInput1.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "Screen1",
+ "type": "Screen1.TextInput1"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1.Gallery1.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1.Gallery1.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "Screen1",
+ "type": "Screen1.Gallery1"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1.Gallery1.TabIndex"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1.Gallery1.TabIndex",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "TabIndex",
+ "module": "Screen1",
+ "type": "Screen1.Gallery1"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl",
+ "ruleIndex": 2
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1.FormViewer3.Gender_DataCard1.DataCardValue14.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1.FormViewer3.Gender_DataCard1.DataCardValue14.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "Screen1",
+ "type": "Screen1.FormViewer3.Gender_DataCard1.DataCardValue14"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1.FormViewer3.MembershipPlan_DataCard3.DataCardValue12.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1.FormViewer3.MembershipPlan_DataCard3.DataCardValue12.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "Screen1",
+ "type": "Screen1.FormViewer3.MembershipPlan_DataCard3.DataCardValue12"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1.FormViewer3.PersonalTraining_DataCard3.DataCardValue9.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1.FormViewer3.PersonalTraining_DataCard3.DataCardValue9.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "Screen1",
+ "type": "Screen1.FormViewer3.PersonalTraining_DataCard3.DataCardValue9"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditScreen.Icon3.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditScreen.Icon3.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditScreen",
+ "type": "EditScreen.Icon3"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditScreen.Icon3.TabIndex"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditScreen.Icon3.TabIndex",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "TabIndex",
+ "module": "EditScreen",
+ "type": "EditScreen.Icon3"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl",
+ "ruleIndex": 2
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditScreen.EditForm.PersonalTraining_DataCard4.DataCardValue25.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditScreen.EditForm.PersonalTraining_DataCard4.DataCardValue25.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditScreen",
+ "type": "EditScreen.EditForm.PersonalTraining_DataCard4.DataCardValue25"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditScreen.EditForm.MembershipPlan_DataCard4.DataCardValue24.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditScreen.EditForm.MembershipPlan_DataCard4.DataCardValue24.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditScreen",
+ "type": "EditScreen.EditForm.MembershipPlan_DataCard4.DataCardValue24"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditScreen.EditForm.Gender_DataCard2.DataCardValue23.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditScreen.EditForm.Gender_DataCard2.DataCardValue23.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditScreen",
+ "type": "EditScreen.EditForm.Gender_DataCard2.DataCardValue23"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditScreen.EditForm.EmailAddress_DataCard1.DataCardValue16.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditScreen.EditForm.EmailAddress_DataCard1.DataCardValue16.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditScreen",
+ "type": "EditScreen.EditForm.EmailAddress_DataCard1.DataCardValue16"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditScreen.EditForm.Date_DataCard1.DataCardValue15.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditScreen.EditForm.Date_DataCard1.DataCardValue15.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditScreen",
+ "type": "EditScreen.EditForm.Date_DataCard1.DataCardValue15"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditScreen.EditForm.Title_DataCard1.DataCardValue28.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditScreen.EditForm.Title_DataCard1.DataCardValue28.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditScreen",
+ "type": "EditScreen.EditForm.Title_DataCard1.DataCardValue28"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditScreen.EditForm.PhoneNumber_DataCard1.DataCardValue26.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditScreen.EditForm.PhoneNumber_DataCard1.DataCardValue26.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditScreen",
+ "type": "EditScreen.EditForm.PhoneNumber_DataCard1.DataCardValue26"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen2"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen2",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "module": "Screen2",
+ "type": "Screen2"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Low"
+ },
+ "ruleId": "acc-ReadableScreenNameNeeded",
+ "ruleIndex": 0
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditDetailsScreen.Icon3_1.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditDetailsScreen.Icon3_1.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditDetailsScreen",
+ "type": "EditDetailsScreen.Icon3_1"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditDetailsScreen.Icon3_1.TabIndex"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditDetailsScreen.Icon3_1.TabIndex",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "TabIndex",
+ "module": "EditDetailsScreen",
+ "type": "EditDetailsScreen.Icon3_1"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl",
+ "ruleIndex": 2
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditDetailsScreen.Form2.Title_DataCard2.DataCardValue34.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditDetailsScreen.Form2.Title_DataCard2.DataCardValue34.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditDetailsScreen",
+ "type": "EditDetailsScreen.Form2.Title_DataCard2.DataCardValue34"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditDetailsScreen.Form2.PhoneNumber_DataCard2.DataCardValue33.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditDetailsScreen.Form2.PhoneNumber_DataCard2.DataCardValue33.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditDetailsScreen",
+ "type": "EditDetailsScreen.Form2.PhoneNumber_DataCard2.DataCardValue33"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditDetailsScreen.Form2.PersonalTraining_DataCard5.DataCardValue32.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditDetailsScreen.Form2.PersonalTraining_DataCard5.DataCardValue32.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditDetailsScreen",
+ "type": "EditDetailsScreen.Form2.PersonalTraining_DataCard5.DataCardValue32"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditDetailsScreen.Form2.MembershipPlan_DataCard5.DataCardValue31.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditDetailsScreen.Form2.MembershipPlan_DataCard5.DataCardValue31.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditDetailsScreen",
+ "type": "EditDetailsScreen.Form2.MembershipPlan_DataCard5.DataCardValue31"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditDetailsScreen.Form2.Gender_DataCard3.DataCardValue30.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditDetailsScreen.Form2.Gender_DataCard3.DataCardValue30.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditDetailsScreen",
+ "type": "EditDetailsScreen.Form2.Gender_DataCard3.DataCardValue30"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditDetailsScreen.Form2.EmailAddress_DataCard2.DataCardValue29.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditDetailsScreen.Form2.EmailAddress_DataCard2.DataCardValue29.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "EditDetailsScreen",
+ "type": "EditDetailsScreen.Form2.EmailAddress_DataCard2.DataCardValue29"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "EditDetailsScreen.SelectedItem"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "EditDetailsScreen.SelectedItem",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "SelectedItem",
+ "module": "EditDetailsScreen",
+ "type": "EditDetailsScreen"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "app-UnusedVariables",
+ "ruleIndex": 3
+ }
+ ],
+ "tool": {
+ "driver": {
+ "fullName": "PowerApps app checker",
+ "name": "PowerApps app checker",
+ "rules": [
+ {
+ "id": "acc-ReadableScreenNameNeeded",
+ "messageStrings": {
+ "issue": {
+ "text": "Revise screen name"
+ }
+ },
+ "properties": {
+ "componentType": "app",
+ "howToFix": [
+ "Give the screen a title that describes what's on the screen or what it's used for."
+ ],
+ "level": "Low",
+ "primaryCategory": "accessibility",
+ "whyFix": "People who are blind, have low vision, or a reading disability rely on screen titles to navigate using the screen reader. "
+ }
+ },
+ {
+ "id": "acc-AccessibleLabelNeeded",
+ "messageStrings": {
+ "issue": {
+ "text": "Missing accessible label"
+ }
+ },
+ "properties": {
+ "componentType": "app",
+ "howToFix": [
+ "Edit the accessible label property to describe the item."
+ ],
+ "level": "Medium",
+ "primaryCategory": "accessibility",
+ "whyFix": "If there's no accessible text, people who can’t see the screen won't understand what’s in images and controls."
+ }
+ },
+ {
+ "id": "acc-TabIndexShouldBeDefinedForInteractiveControl",
+ "messageStrings": {
+ "issue": {
+ "text": "Missing tab stop"
+ }
+ },
+ "properties": {
+ "componentType": "app",
+ "howToFix": [
+ "Set TabIndex to 0 or greater to ensure that interactive elements have a tab stop."
+ ],
+ "level": "Medium",
+ "primaryCategory": "accessibility",
+ "whyFix": "People who use the keyboard with your app will not be able to access this element without a tab stop."
+ }
+ },
+ {
+ "id": "app-UnusedVariables",
+ "messageStrings": {
+ "issue": {
+ "text": "Unused variable"
+ }
+ },
+ "properties": {
+ "componentType": "app",
+ "howToFix": [
+ "Remove the unused variable."
+ ],
+ "level": "Medium",
+ "primaryCategory": "performance",
+ "whyFix": "This variable is declared but is not referenced by any control, so it is not needed."
+ }
+ }
+ ],
+ "version": "1.343"
+ }
+ }
+ }
+ ],
+ "version": "2.1.0"
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Entropy/Entropy.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Entropy/Entropy.json
new file mode 100644
index 00000000..ffa5f1f5
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Entropy/Entropy.json
@@ -0,0 +1,545 @@
+{
+ "ComponentIndexes": {},
+ "ControlUniqueGuids": {},
+ "ControlUniqueIds": {
+ "App": 1,
+ "Button1": 102,
+ "Button1_1": 149,
+ "Button2": 111,
+ "Button3": 13,
+ "Button4": 54,
+ "Button4_1": 55,
+ "DataCardKey1": 24,
+ "DataCardKey10": 27,
+ "DataCardKey11": 30,
+ "DataCardKey12": 157,
+ "DataCardKey13": 51,
+ "DataCardKey14": 162,
+ "DataCardKey15": 167,
+ "DataCardKey16": 172,
+ "DataCardKey23": 177,
+ "DataCardKey24": 182,
+ "DataCardKey25": 187,
+ "DataCardKey26": 192,
+ "DataCardKey28": 200,
+ "DataCardKey29": 205,
+ "DataCardKey30": 210,
+ "DataCardKey31": 215,
+ "DataCardKey32": 220,
+ "DataCardKey33": 225,
+ "DataCardKey34": 230,
+ "DataCardKey8": 38,
+ "DataCardKey9": 152,
+ "DataCardValue1": 25,
+ "DataCardValue10": 28,
+ "DataCardValue11": 31,
+ "DataCardValue12": 158,
+ "DataCardValue13": 52,
+ "DataCardValue14": 163,
+ "DataCardValue15": 168,
+ "DataCardValue16": 173,
+ "DataCardValue23": 178,
+ "DataCardValue24": 183,
+ "DataCardValue25": 188,
+ "DataCardValue26": 193,
+ "DataCardValue28": 201,
+ "DataCardValue29": 206,
+ "DataCardValue30": 211,
+ "DataCardValue31": 216,
+ "DataCardValue32": 221,
+ "DataCardValue33": 226,
+ "DataCardValue34": 231,
+ "DataCardValue8": 39,
+ "DataCardValue9": 153,
+ "Date :_DataCard2": 37,
+ "Date_DataCard1": 166,
+ "DeletePopup": 57,
+ "Due Date :_DataCard1": 50,
+ "EditDetailsScreen": 113,
+ "EditForm": 63,
+ "EditScreen": 58,
+ "E-mail Address :_DataCard1": 29,
+ "EmailAddress_DataCard1": 171,
+ "EmailAddress_DataCard2": 204,
+ "ErrorMessage10": 169,
+ "ErrorMessage17": 174,
+ "ErrorMessage18": 179,
+ "ErrorMessage19": 184,
+ "ErrorMessage20": 189,
+ "ErrorMessage21": 194,
+ "ErrorMessage22": 202,
+ "ErrorMessage23": 207,
+ "ErrorMessage24": 212,
+ "ErrorMessage25": 217,
+ "ErrorMessage26": 222,
+ "ErrorMessage27": 227,
+ "ErrorMessage28": 232,
+ "ErrorMessage5": 154,
+ "ErrorMessage6": 159,
+ "ErrorMessage9": 164,
+ "Form2": 118,
+ "FormViewer3": 22,
+ "Gallery1": 14,
+ "galleryTemplate1": 15,
+ "Gender_DataCard1": 161,
+ "Gender_DataCard2": 176,
+ "Gender_DataCard3": 209,
+ "Group5": 150,
+ "Header": 56,
+ "Header 2": 103,
+ "Header_1": 112,
+ "Host": 3,
+ "Icon1": 10,
+ "Icon2": 7,
+ "Icon3": 62,
+ "Icon3_1": 117,
+ "iconCheck1": 110,
+ "iconCircle1": 109,
+ "Image3": 6,
+ "Image3_1": 60,
+ "Image3_2": 106,
+ "Image3_3": 115,
+ "Label1": 12,
+ "Label2": 53,
+ "Label3": 9,
+ "Label3_1": 61,
+ "Label3_2": 107,
+ "Label3_3": 116,
+ "LblSuccessMsg1": 108,
+ "MembershipPlan_DataCard3": 156,
+ "MembershipPlan_DataCard4": 181,
+ "MembershipPlan_DataCard5": 214,
+ "Name :_DataCard2": 23,
+ "NextArrow5": 17,
+ "PersonalTraining_DataCard3": 151,
+ "PersonalTraining_DataCard4": 186,
+ "PersonalTraining_DataCard5": 219,
+ "Phone Number:_DataCard1": 26,
+ "PhoneNumber_DataCard1": 191,
+ "PhoneNumber_DataCard2": 224,
+ "Rectangle1": 5,
+ "Rectangle1_1": 59,
+ "Rectangle1_2": 105,
+ "Rectangle1_3": 114,
+ "Rectangle3": 8,
+ "Rectangle5": 21,
+ "Rectangle8": 16,
+ "Screen1": 4,
+ "Screen2": 104,
+ "Separator5": 20,
+ "StarVisible10": 170,
+ "StarVisible17": 175,
+ "StarVisible18": 180,
+ "StarVisible19": 185,
+ "StarVisible20": 190,
+ "StarVisible21": 195,
+ "StarVisible22": 203,
+ "StarVisible23": 208,
+ "StarVisible24": 213,
+ "StarVisible25": 218,
+ "StarVisible26": 223,
+ "StarVisible27": 228,
+ "StarVisible28": 233,
+ "StarVisible5": 155,
+ "StarVisible6": 160,
+ "StarVisible9": 165,
+ "Subtitle4": 19,
+ "TextInput1": 11,
+ "Title_DataCard1": 199,
+ "Title_DataCard2": 229,
+ "Title5": 18
+ },
+ "FunctionParamsInvariantScripts": {},
+ "FunctionParamsInvariantScriptsOnInstances": {},
+ "HeaderLastSavedDateTimeUTC": "11/18/2024 18:23:30",
+ "IsLegacyComponentAllowGlobalScopeCase": false,
+ "LocalConnectionIDReferences": {
+ "7e410418-325a-4130-b683-8e3a17115e7f": "\"/providers/microsoft.powerapps/apis/shared_sharepointonline/connections/shared-sharepointonl-434479bb-b731-4622-a0a1-ec04310718dc\""
+ },
+ "LocalDatabaseReferencesAsEmpty": true,
+ "LocalResourceFileNames": {
+ "703 FITNESS": "e8f46a38-4168-4ddf-8213-235d8aa77663.png"
+ },
+ "LocalResourceRootPaths": {
+ "703 FITNESS": "https://docserverpwaprodwus.blob.core.windows.net/25b1b6bf-4637-4878-99d7-2737a8b2f26b-1/resource/Assets0Images0e8f46a38-4168-4ddf-8213-235d8aa77663.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2024-11-18T17%3A58%3A51Z&ske=2024-11-19T18%3A13%3A51Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2024-11-19T18%3A13%3A51Z&sr=b&sp=r&sig=xKCJAW1D7vbcyo4bfO69%2F4e9o5LtFotnPhOyhSAVLTw%3D"
+ },
+ "OrderComponentMetadata": {},
+ "OrderComponentTemplate": {},
+ "OrderDataSource": {
+ "ComboBoxSample": 1,
+ "CustomGallerySample": 0,
+ "ListVariables": 2
+ },
+ "OrderGroupControls": {
+ "DeletePopup": {
+ "Button4": 4,
+ "Button4_1": 5,
+ "Label1": 2,
+ "Label2": 3,
+ "Rectangle3": 0,
+ "Rectangle5": 1
+ },
+ "Group5": {
+ "Image3_3": 1,
+ "Label3_3": 0
+ },
+ "Header": {
+ "Image3": 1,
+ "Label3": 0,
+ "Rectangle1": 2
+ },
+ "Header 2": {
+ "Image3_1": 0,
+ "Label3_1": 1,
+ "Rectangle1_1": 2
+ },
+ "Header_1": {
+ "Image3_2": 1,
+ "Label3_2": 0,
+ "Rectangle1_2": 2
+ }
+ },
+ "OrderPcfTemplate": {},
+ "OrderTemplate": {},
+ "OrderXMLTemplate": {
+ "button": 5,
+ "circle": 11,
+ "combobox": 8,
+ "datepicker": 10,
+ "form": 9,
+ "formViewer": 7,
+ "gallery": 6,
+ "icon": 2,
+ "image": 1,
+ "label": 3,
+ "rectangle": 0,
+ "text": 4
+ },
+ "OverridablePropertiesEntry": {
+ "App": {},
+ "Button1": {},
+ "Button1_1": {},
+ "Button2": {},
+ "Button3": {},
+ "Button4": {},
+ "Button4_1": {},
+ "DataCardKey1": {},
+ "DataCardKey10": {},
+ "DataCardKey11": {},
+ "DataCardKey12": {},
+ "DataCardKey13": {},
+ "DataCardKey14": {},
+ "DataCardKey15": {},
+ "DataCardKey16": {},
+ "DataCardKey23": {},
+ "DataCardKey24": {},
+ "DataCardKey25": {},
+ "DataCardKey26": {},
+ "DataCardKey28": {},
+ "DataCardKey29": {},
+ "DataCardKey30": {},
+ "DataCardKey31": {},
+ "DataCardKey32": {},
+ "DataCardKey33": {},
+ "DataCardKey34": {},
+ "DataCardKey8": {},
+ "DataCardKey9": {},
+ "DataCardValue1": {},
+ "DataCardValue10": {},
+ "DataCardValue11": {},
+ "DataCardValue12": {},
+ "DataCardValue13": {},
+ "DataCardValue14": {},
+ "DataCardValue15": {},
+ "DataCardValue16": {},
+ "DataCardValue23": {},
+ "DataCardValue24": {},
+ "DataCardValue25": {},
+ "DataCardValue26": {},
+ "DataCardValue28": {},
+ "DataCardValue29": {},
+ "DataCardValue30": {},
+ "DataCardValue31": {},
+ "DataCardValue32": {},
+ "DataCardValue33": {},
+ "DataCardValue34": {},
+ "DataCardValue8": {},
+ "DataCardValue9": {},
+ "Date :_DataCard2": {},
+ "Date_DataCard1": {},
+ "DeletePopup": {},
+ "Due Date :_DataCard1": {},
+ "EditDetailsScreen": {},
+ "EditForm": {},
+ "EditScreen": {},
+ "E-mail Address :_DataCard1": {},
+ "EmailAddress_DataCard1": {},
+ "EmailAddress_DataCard2": {},
+ "ErrorMessage10": {},
+ "ErrorMessage17": {},
+ "ErrorMessage18": {},
+ "ErrorMessage19": {},
+ "ErrorMessage20": {},
+ "ErrorMessage21": {},
+ "ErrorMessage22": {},
+ "ErrorMessage23": {},
+ "ErrorMessage24": {},
+ "ErrorMessage25": {},
+ "ErrorMessage26": {},
+ "ErrorMessage27": {},
+ "ErrorMessage28": {},
+ "ErrorMessage5": {},
+ "ErrorMessage6": {},
+ "ErrorMessage9": {},
+ "Form2": {},
+ "FormViewer3": {},
+ "Gallery1": {},
+ "galleryTemplate1": {},
+ "Gender_DataCard1": {},
+ "Gender_DataCard2": {},
+ "Gender_DataCard3": {},
+ "Group5": {},
+ "Header": {},
+ "Header 2": {},
+ "Header_1": {},
+ "Host": {},
+ "Icon1": {},
+ "Icon2": {},
+ "Icon3": {},
+ "Icon3_1": {},
+ "iconCheck1": {},
+ "iconCircle1": {},
+ "Image3": {},
+ "Image3_1": {},
+ "Image3_2": {},
+ "Image3_3": {},
+ "Label1": {},
+ "Label2": {},
+ "Label3": {},
+ "Label3_1": {},
+ "Label3_2": {},
+ "Label3_3": {},
+ "LblSuccessMsg1": {},
+ "MembershipPlan_DataCard3": {},
+ "MembershipPlan_DataCard4": {},
+ "MembershipPlan_DataCard5": {},
+ "Name :_DataCard2": {},
+ "NextArrow5": {},
+ "PersonalTraining_DataCard3": {},
+ "PersonalTraining_DataCard4": {},
+ "PersonalTraining_DataCard5": {},
+ "Phone Number:_DataCard1": {},
+ "PhoneNumber_DataCard1": {},
+ "PhoneNumber_DataCard2": {},
+ "Rectangle1": {},
+ "Rectangle1_1": {},
+ "Rectangle1_2": {},
+ "Rectangle1_3": {},
+ "Rectangle3": {},
+ "Rectangle5": {},
+ "Rectangle8": {},
+ "Screen1": {},
+ "Screen2": {},
+ "Separator5": {},
+ "StarVisible10": {},
+ "StarVisible17": {},
+ "StarVisible18": {},
+ "StarVisible19": {},
+ "StarVisible20": {},
+ "StarVisible21": {},
+ "StarVisible22": {},
+ "StarVisible23": {},
+ "StarVisible24": {},
+ "StarVisible25": {},
+ "StarVisible26": {},
+ "StarVisible27": {},
+ "StarVisible28": {},
+ "StarVisible5": {},
+ "StarVisible6": {},
+ "StarVisible9": {},
+ "Subtitle4": {},
+ "TextInput1": {},
+ "Title_DataCard1": {},
+ "Title_DataCard2": {},
+ "Title5": {}
+ },
+ "PCFDynamicSchemaForIRRetrievalEntry": {},
+ "PCFTemplateEntry": {},
+ "PublishOrderIndices": {
+ "App": 0,
+ "Button1": 94,
+ "Button1_1": 139,
+ "Button2": 102,
+ "Button3": 10,
+ "Button4": 51,
+ "Button4_1": 52,
+ "DataCardKey1": 21,
+ "DataCardKey10": 24,
+ "DataCardKey11": 27,
+ "DataCardKey12": 45,
+ "DataCardKey13": 48,
+ "DataCardKey14": 32,
+ "DataCardKey15": 81,
+ "DataCardKey16": 71,
+ "DataCardKey23": 76,
+ "DataCardKey24": 86,
+ "DataCardKey25": 91,
+ "DataCardKey26": 66,
+ "DataCardKey28": 61,
+ "DataCardKey29": 121,
+ "DataCardKey30": 136,
+ "DataCardKey31": 126,
+ "DataCardKey32": 131,
+ "DataCardKey33": 116,
+ "DataCardKey34": 111,
+ "DataCardKey8": 35,
+ "DataCardKey9": 40,
+ "DataCardValue1": 22,
+ "DataCardValue10": 25,
+ "DataCardValue11": 28,
+ "DataCardValue12": 43,
+ "DataCardValue13": 49,
+ "DataCardValue14": 30,
+ "DataCardValue15": 82,
+ "DataCardValue16": 72,
+ "DataCardValue23": 77,
+ "DataCardValue24": 87,
+ "DataCardValue25": 92,
+ "DataCardValue26": 67,
+ "DataCardValue28": 62,
+ "DataCardValue29": 122,
+ "DataCardValue30": 137,
+ "DataCardValue31": 127,
+ "DataCardValue32": 132,
+ "DataCardValue33": 117,
+ "DataCardValue34": 112,
+ "DataCardValue8": 36,
+ "DataCardValue9": 38,
+ "Date :_DataCard2": 34,
+ "Date_DataCard1": 79,
+ "DeletePopup": 5,
+ "Due Date :_DataCard1": 47,
+ "EditDetailsScreen": 0,
+ "EditForm": 58,
+ "EditScreen": 0,
+ "E-mail Address :_DataCard1": 26,
+ "EmailAddress_DataCard1": 69,
+ "EmailAddress_DataCard2": 119,
+ "ErrorMessage10": 83,
+ "ErrorMessage17": 73,
+ "ErrorMessage18": 78,
+ "ErrorMessage19": 88,
+ "ErrorMessage20": 93,
+ "ErrorMessage21": 68,
+ "ErrorMessage22": 63,
+ "ErrorMessage23": 123,
+ "ErrorMessage24": 138,
+ "ErrorMessage25": 128,
+ "ErrorMessage26": 133,
+ "ErrorMessage27": 118,
+ "ErrorMessage28": 113,
+ "ErrorMessage5": 41,
+ "ErrorMessage6": 46,
+ "ErrorMessage9": 33,
+ "Form2": 108,
+ "FormViewer3": 19,
+ "Gallery1": 11,
+ "galleryTemplate1": 12,
+ "Gender_DataCard1": 29,
+ "Gender_DataCard2": 74,
+ "Gender_DataCard3": 134,
+ "Group5": 105,
+ "Header": 2,
+ "Header 2": 54,
+ "Header_1": 97,
+ "Host": 0,
+ "Icon1": 7,
+ "Icon2": 3,
+ "Icon3": 57,
+ "Icon3_1": 107,
+ "iconCheck1": 101,
+ "iconCircle1": 100,
+ "Image3": 1,
+ "Image3_1": 55,
+ "Image3_2": 96,
+ "Image3_3": 104,
+ "Label1": 9,
+ "Label2": 50,
+ "Label3": 6,
+ "Label3_1": 56,
+ "Label3_2": 98,
+ "Label3_3": 106,
+ "LblSuccessMsg1": 99,
+ "MembershipPlan_DataCard3": 42,
+ "MembershipPlan_DataCard4": 84,
+ "MembershipPlan_DataCard5": 124,
+ "Name :_DataCard2": 20,
+ "NextArrow5": 14,
+ "PersonalTraining_DataCard3": 37,
+ "PersonalTraining_DataCard4": 89,
+ "PersonalTraining_DataCard5": 129,
+ "Phone Number:_DataCard1": 23,
+ "PhoneNumber_DataCard1": 64,
+ "PhoneNumber_DataCard2": 114,
+ "Rectangle1": 0,
+ "Rectangle1_1": 53,
+ "Rectangle1_2": 95,
+ "Rectangle1_3": 103,
+ "Rectangle3": 4,
+ "Rectangle5": 18,
+ "Rectangle8": 13,
+ "Screen1": 0,
+ "Screen2": 0,
+ "Separator5": 17,
+ "StarVisible10": 80,
+ "StarVisible17": 70,
+ "StarVisible18": 75,
+ "StarVisible19": 85,
+ "StarVisible20": 90,
+ "StarVisible21": 65,
+ "StarVisible22": 60,
+ "StarVisible23": 120,
+ "StarVisible24": 135,
+ "StarVisible25": 125,
+ "StarVisible26": 130,
+ "StarVisible27": 115,
+ "StarVisible28": 110,
+ "StarVisible5": 39,
+ "StarVisible6": 44,
+ "StarVisible9": 31,
+ "Subtitle4": 16,
+ "TextInput1": 8,
+ "Title_DataCard1": 59,
+ "Title_DataCard2": 109,
+ "Title5": 15
+ },
+ "ResourcesJsonIndices": {
+ "Image-703 FITNESS": 1,
+ "Image-SampleImage": 0
+ },
+ "RuleScreenIdWithoutScreen": {},
+ "TemplateVersions": {},
+ "VolatileProperties": {
+ "AnalysisLoadTime": 1.1177916999999999,
+ "ControlCount": {
+ "button": 6,
+ "circle": 1,
+ "combobox": 9,
+ "datepicker": 1,
+ "form": 2,
+ "formViewer": 1,
+ "gallery": 1,
+ "galleryTemplate": 1,
+ "group": 5,
+ "icon": 6,
+ "image": 4,
+ "label": 69,
+ "rectangle": 8,
+ "screen": 4,
+ "text": 7,
+ "typedDataCard": 22
+ },
+ "DeserializationLoadTime": 2.9322029999999999
+ },
+ "WasLocalDatabaseReferencesEmpty": true
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Entropy/checksum.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Entropy/checksum.json
new file mode 100644
index 00000000..b13747ef
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Entropy/checksum.json
@@ -0,0 +1,40 @@
+{
+ "ClientPerFileChecksums": {
+ ".gitignore": "C8_VaC8EcEG56Ufcy1DFyC8Ky19iV9xSsXMDIAcmF2GTj8=",
+ "AppCheckerResult.sarif": "C8_/1tDoyGIVGeIViio36lvOtkLdZeLWr4sns/5KpquFlQ=",
+ "Assets\\Images\\e8f46a38-4168-4ddf-8213-235d8aa77663.png": "C8_w9f5ten8L5ImmqwaVyUeULZyFyxJwzuf5I+ApSMH9I0=",
+ "Controls\\1.json": "C8_+9bWWWaDtzI/rA9xGR0GFD302+//iUIr6k2V6TsJM50=",
+ "Controls\\104.json": "C8_GVXHvfHNTHtqmpTzehqkwRegYiHXLnUjkKduRc8cnus=",
+ "Controls\\113.json": "C8_GF+JpVb73eZRNiwLUmeR3zpVhdU9l0kgCk6dY8cJxeg=",
+ "Controls\\4.json": "C8_BzzwpoSZB5Kto40W2fpyJ0nOPheTv7nS8lkTnObvuLU=",
+ "Controls\\58.json": "C8_AIknxS84QW9QggV7Q4JX0YvpPoN+GLEJhtSThTAGwpA=",
+ "Header.json": "C8_HScwhstxvUaYCjXrIyzrlOBKRXIVySZBW4bXrI/Ev2Q=",
+ "Properties.json": "C8_G4U/5pu2nNCohzeE+C36q9+/rgjLn0IG88V7FhXUbjY=",
+ "References\\DataSources.json": "C8_H/dEj7v6jmRKkUAwTWduMYcMZIR0Y3f+oqOaJVZGbzg=",
+ "References\\ModernThemes.json": "C8_KDQJ/3t27vgKx25iCQB/PGqxkWE34ZB7Eyb+RxNxY0k=",
+ "References\\Resources.json": "C8_1ienidAQ+ooZtWcSut7H+92dlSVMT0onouo1phPVrww=",
+ "References\\Templates.json": "C8_9RaiTYHND6TX5FdKZTxuz0uo9fRNM5KcCiHer9dRtZc=",
+ "References\\Themes.json": "C8_eOza8B6n6agKbZokkiHnouaa/Zrheh7vinirgCWP+vg=",
+ "Resources\\PublishInfo.json": "C8_NXUmRrYtI/jEJwhNfEOEL+427DMmi4PV57zZBY7QM/o="
+ },
+ "ClientStampedChecksum": "C8_tZHiuqqewPa5WiB7C5cc5QWcxFIF6LE6SudaEoUVf6A=",
+ "ServerPerFileChecksums": {
+ ".gitignore": "C8_VaC8EcEG56Ufcy1DFyC8Ky19iV9xSsXMDIAcmF2GTj8=",
+ "AppCheckerResult.sarif": "C8_/1tDoyGIVGeIViio36lvOtkLdZeLWr4sns/5KpquFlQ=",
+ "Assets\\Images\\e8f46a38-4168-4ddf-8213-235d8aa77663.png": "C8_w9f5ten8L5ImmqwaVyUeULZyFyxJwzuf5I+ApSMH9I0=",
+ "Controls\\1.json": "C8_+9bWWWaDtzI/rA9xGR0GFD302+//iUIr6k2V6TsJM50=",
+ "Controls\\104.json": "C8_GVXHvfHNTHtqmpTzehqkwRegYiHXLnUjkKduRc8cnus=",
+ "Controls\\113.json": "C8_GF+JpVb73eZRNiwLUmeR3zpVhdU9l0kgCk6dY8cJxeg=",
+ "Controls\\4.json": "C8_BzzwpoSZB5Kto40W2fpyJ0nOPheTv7nS8lkTnObvuLU=",
+ "Controls\\58.json": "C8_AIknxS84QW9QggV7Q4JX0YvpPoN+GLEJhtSThTAGwpA=",
+ "Header.json": "C8_HScwhstxvUaYCjXrIyzrlOBKRXIVySZBW4bXrI/Ev2Q=",
+ "Properties.json": "C8_G4U/5pu2nNCohzeE+C36q9+/rgjLn0IG88V7FhXUbjY=",
+ "References\\DataSources.json": "C8_H/dEj7v6jmRKkUAwTWduMYcMZIR0Y3f+oqOaJVZGbzg=",
+ "References\\ModernThemes.json": "C8_KDQJ/3t27vgKx25iCQB/PGqxkWE34ZB7Eyb+RxNxY0k=",
+ "References\\Resources.json": "C8_1ienidAQ+ooZtWcSut7H+92dlSVMT0onouo1phPVrww=",
+ "References\\Templates.json": "C8_9RaiTYHND6TX5FdKZTxuz0uo9fRNM5KcCiHer9dRtZc=",
+ "References\\Themes.json": "C8_eOza8B6n6agKbZokkiHnouaa/Zrheh7vinirgCWP+vg=",
+ "Resources\\PublishInfo.json": "C8_NXUmRrYtI/jEJwhNfEOEL+427DMmi4PV57zZBY7QM/o="
+ },
+ "ServerStampedChecksum": "C8_tZHiuqqewPa5WiB7C5cc5QWcxFIF6LE6SudaEoUVf6A="
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Other/.gitignore b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Other/.gitignore
new file mode 100644
index 00000000..6d99c528
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Other/.gitignore
@@ -0,0 +1,5 @@
+## MsApp specific overrides
+/[Cc]ontrols/
+/[Cc]hecksum.json
+/[Hh]eader.json
+/[Aa]pp[Cc]hecker[Rr]esult.sarif
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Other/References/ModernThemes.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Other/References/ModernThemes.json
new file mode 100644
index 00000000..b809c455
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Other/References/ModernThemes.json
@@ -0,0 +1,8 @@
+{
+ "Themes": [
+ {
+ "EntityName": "PowerAppsTheme",
+ "ThemeName": "PowerAppsTheme"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/App.fx.yaml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/App.fx.yaml
new file mode 100644
index 00000000..a8638f0c
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/App.fx.yaml
@@ -0,0 +1,11 @@
+App As appinfo:
+ BackEnabled: =true
+ Theme: =PowerAppsTheme
+
+ Host As hostControl.DefaultHostControlVariant:
+ OnCancel: =false
+ OnEdit: =false
+ OnNew: =false
+ OnSave: =false
+ OnView: =false
+
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditDetailsScreen.fx.yaml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditDetailsScreen.fx.yaml
new file mode 100644
index 00000000..07e0a760
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditDetailsScreen.fx.yaml
@@ -0,0 +1,838 @@
+EditDetailsScreen As screen:
+ Fill: =RGBA(30, 45, 62, 1)
+ LoadingSpinnerColor: =RGBA(0, 188, 242, 1)
+ OnVisible: =Set(SelectedData,Gallery1.Selected)
+
+ Form2 As form:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ DataSource: =ListVariables
+ Height: =625
+ Item: =SelectedData
+ Width: =1282
+ X: =36
+ Y: =143
+ ZIndex: =1
+
+ Title_DataCard2 As typedDataCard.textualEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="Title"
+ Default: =ThisItem.Title
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'Title')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ MaxLength: =DataSourceInfo([@ListVariables], DataSourceInfo.MaxLength, 'Title')
+ Required: =false
+ Update: =DataCardValue34.Text
+ Width: =427
+ X: =0
+ Y: =0
+ ZIndex: =1
+
+ DataCardKey34 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "Title", "Name:", Parent.DisplayName)
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue34 As text:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ Default: =Parent.Default
+ DelayOutput: =true
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(30, 45, 62, 1)
+ MaxLength: =Parent.MaxLength
+ PaddingLeft: =5
+ PressedBorderColor: =RGBA(0, 188, 242, 1)
+ PressedColor: =RGBA(255, 255, 255, 1)
+ PressedFill: =RGBA(30, 45, 62, 1)
+ RadiusBottomLeft: =0
+ RadiusBottomRight: =0
+ RadiusTopLeft: =0
+ RadiusTopRight: =0
+ Size: =13
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey34.Y + DataCardKey34.Height + 5
+ ZIndex: =2
+
+ ErrorMessage28 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue34.Y + DataCardValue34.Height
+ ZIndex: =3
+
+ StarVisible28 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey34.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey34.Y
+ ZIndex: =4
+
+ PhoneNumber_DataCard2 As typedDataCard.numberEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="PhoneNumber"
+ Default: =ThisItem.PhoneNumber
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'PhoneNumber')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ Required: =false
+ Update: =Value(DataCardValue33.Text)
+ Width: =427
+ X: =1
+ Y: =0
+ ZIndex: =1
+
+ DataCardKey33 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ LineHeight: =
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "PhoneNumber", "Phone Number:", Parent.DisplayName)
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue33 As text:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ Default: =Parent.Default
+ DelayOutput: =true
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ Format: =TextFormat.Number
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(30, 45, 62, 1)
+ LineHeight: =
+ PaddingLeft: =5
+ PressedBorderColor: =RGBA(0, 188, 242, 1)
+ PressedColor: =RGBA(255, 255, 255, 1)
+ PressedFill: =RGBA(30, 45, 62, 1)
+ RadiusBottomLeft: =0
+ RadiusBottomRight: =0
+ RadiusTopLeft: =0
+ RadiusTopRight: =0
+ Size: =13
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey33.Y + DataCardKey33.Height + 5
+ ZIndex: =2
+
+ ErrorMessage27 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ LineHeight: =
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue33.Y + DataCardValue33.Height
+ ZIndex: =3
+
+ StarVisible27 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey33.Height
+ LineHeight: =
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey33.Y
+ ZIndex: =4
+
+ EmailAddress_DataCard2 As typedDataCard.textualEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="EmailAddress"
+ Default: =ThisItem.EmailAddress
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'EmailAddress')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ MaxLength: =DataSourceInfo([@ListVariables], DataSourceInfo.MaxLength, 'EmailAddress')
+ Required: =false
+ Update: =DataCardValue29.Text
+ Width: =427
+ X: =2
+ Y: =0
+ ZIndex: =1
+
+ DataCardKey29 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "EmailAddress", "E-mail Address:", Parent.DisplayName)
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue29 As text:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ Default: =Parent.Default
+ DelayOutput: =true
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(30, 45, 62, 1)
+ MaxLength: =Parent.MaxLength
+ PaddingLeft: =5
+ PressedBorderColor: =RGBA(0, 188, 242, 1)
+ PressedColor: =RGBA(255, 255, 255, 1)
+ PressedFill: =RGBA(30, 45, 62, 1)
+ RadiusBottomLeft: =0
+ RadiusBottomRight: =0
+ RadiusTopLeft: =0
+ RadiusTopRight: =0
+ Size: =13
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey29.Y + DataCardKey29.Height + 5
+ ZIndex: =2
+
+ ErrorMessage23 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue29.Y + DataCardValue29.Height
+ ZIndex: =3
+
+ StarVisible23 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey29.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey29.Y
+ ZIndex: =4
+
+ MembershipPlan_DataCard5 As typedDataCard.comboBoxEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="MembershipPlan"
+ Default: =ThisItem.MembershipPlan
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'MembershipPlan')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ Required: =false
+ Update: =DataCardValue31.Selected
+ Width: =427
+ X: =1
+ Y: =1
+ ZIndex: =1
+
+ DataCardKey31 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "MembershipPlan", "Membership Plan:", Parent.DisplayName)
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue31 As combobox:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ ChevronBackground: =RGBA(30, 45, 62, 1)
+ ChevronDisabledBackground: =RGBA(244, 244, 244, 1)
+ ChevronDisabledFill: =RGBA(166, 166, 166, 1)
+ ChevronFill: =RGBA(218, 218, 218, 1)
+ ChevronHoverBackground: =RGBA(67, 85, 106, 1)
+ ChevronHoverFill: =RGBA(218, 218, 218, 1)
+ Color: =RGBA(255, 255, 255, 1)
+ DefaultSelectedItems: =Parent.Default
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayFields: =["Value"]
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(67, 85, 106, 1)
+ Items: =Choices([@ListVariables].'MembershipPlan')
+ PaddingLeft: =If(Self.DisplayMode = DisplayMode.Edit, 5, 0)
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ SearchFields: =["Value"]
+ SearchItems: =Choices(ListVariables.MembershipPlan,DataCardValue31.SearchText)
+ SelectionColor: =RGBA(30, 45, 62, 1)
+ SelectionFill: =RGBA(0, 188, 242, 1)
+ SelectMultiple: =false
+ Size: =13
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey31.Y + DataCardKey31.Height + 5
+ ZIndex: =2
+
+ ErrorMessage25 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue31.Y + DataCardValue31.Height
+ ZIndex: =3
+
+ StarVisible25 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey31.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey31.Y
+ ZIndex: =4
+
+ PersonalTraining_DataCard5 As typedDataCard.comboBoxEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="PersonalTraining"
+ Default: =ThisItem.PersonalTraining
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'PersonalTraining')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ Required: =false
+ Update: =DataCardValue32.Selected
+ Width: =427
+ X: =2
+ Y: =1
+ ZIndex: =1
+
+ DataCardKey32 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "PersonalTraining", "Personal Training:", Parent.DisplayName)
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue32 As combobox:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ ChevronBackground: =RGBA(30, 45, 62, 1)
+ ChevronDisabledBackground: =RGBA(244, 244, 244, 1)
+ ChevronDisabledFill: =RGBA(166, 166, 166, 1)
+ ChevronFill: =RGBA(218, 218, 218, 1)
+ ChevronHoverBackground: =RGBA(67, 85, 106, 1)
+ ChevronHoverFill: =RGBA(218, 218, 218, 1)
+ Color: =RGBA(255, 255, 255, 1)
+ DefaultSelectedItems: =Parent.Default
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayFields: =["Value"]
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(67, 85, 106, 1)
+ Items: =Choices([@ListVariables].'PersonalTraining')
+ PaddingLeft: =If(Self.DisplayMode = DisplayMode.Edit, 5, 0)
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ SearchFields: =["Value"]
+ SearchItems: =Choices(ListVariables.PersonalTraining,DataCardValue32.SearchText)
+ SelectionColor: =RGBA(30, 45, 62, 1)
+ SelectionFill: =RGBA(0, 188, 242, 1)
+ SelectMultiple: =false
+ Size: =13
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey32.Y + DataCardKey32.Height + 5
+ ZIndex: =2
+
+ ErrorMessage26 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue32.Y + DataCardValue32.Height
+ ZIndex: =3
+
+ StarVisible26 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey32.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey32.Y
+ ZIndex: =4
+
+ Gender_DataCard3 As typedDataCard.comboBoxEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="Gender"
+ Default: =ThisItem.Gender
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'Gender')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ Required: =false
+ Update: =DataCardValue30.Selected
+ Width: =427
+ X: =0
+ Y: =1
+ ZIndex: =1
+
+ DataCardKey30 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue30 As combobox:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ ChevronBackground: =RGBA(30, 45, 62, 1)
+ ChevronDisabledBackground: =RGBA(244, 244, 244, 1)
+ ChevronDisabledFill: =RGBA(166, 166, 166, 1)
+ ChevronFill: =RGBA(218, 218, 218, 1)
+ ChevronHoverBackground: =RGBA(67, 85, 106, 1)
+ ChevronHoverFill: =RGBA(218, 218, 218, 1)
+ Color: =RGBA(255, 255, 255, 1)
+ DefaultSelectedItems: =Parent.Default
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayFields: =["Value"]
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(67, 85, 106, 1)
+ Items: =Choices([@ListVariables].'Gender')
+ PaddingLeft: =If(Self.DisplayMode = DisplayMode.Edit, 5, 0)
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ SearchFields: =["Value"]
+ SearchItems: =Choices(ListVariables.Gender,DataCardValue30.SearchText)
+ SelectionColor: =RGBA(30, 45, 62, 1)
+ SelectionFill: =RGBA(0, 188, 242, 1)
+ SelectMultiple: =false
+ Size: =13
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey30.Y + DataCardKey30.Height + 5
+ ZIndex: =2
+
+ ErrorMessage24 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue30.Y + DataCardValue30.Height
+ ZIndex: =3
+
+ StarVisible24 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey30.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey30.Y
+ ZIndex: =4
+
+ Button1_1 As button:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ Color: =RGBA(30, 45, 62, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ Fill: =RGBA(0, 188, 242, 1)
+ FocusedBorderColor: =ColorFade(Self.Fill, 75%)
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Bold
+ Height: =55
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverColor: =RGBA(30, 45, 62, 1)
+ HoverFill: =ColorFade(RGBA(0, 188, 242, 1), 10%)
+ OnSelect: =SubmitForm(Form2);Navigate(Screen1)
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 50%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ RadiusBottomLeft: =50
+ RadiusBottomRight: =50
+ RadiusTopLeft: =50
+ RadiusTopRight: =50
+ Size: =20
+ Text: ="Submit"
+ Tooltip: ="Submit"
+ Width: =205
+ X: =580
+ Y: =587
+ ZIndex: =2
+
+ Rectangle1_3 As rectangle:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ DisabledFill: =RGBA(166, 166, 166, 1)
+ Fill: =RGBA(0, 188, 242, 1)
+ FocusedBorderThickness: =4
+ Height: =105
+ HoverFill: =RGBA(0, 188, 242, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ Width: =1366
+ ZIndex: =3
+
+ Icon3_1 As icon.BackArrow:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(220, 220, 220, 1)
+ DisabledFill: =RGBA(0, 0, 0, 0)
+ FocusedBorderThickness: =4
+ Height: =49
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverFill: =RGBA(0, 0, 0, 0)
+ Icon: =Icon.BackArrow
+ OnSelect: =Back()
+ PressedBorderColor: =RGBA(0, 0, 0, 0)
+ PressedColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedFill: =RGBA(0, 0, 0, 0)
+ Tooltip: ="Go Back"
+ Width: =46
+ X: =12
+ Y: =29
+ ZIndex: =6
+
+ Group5 As group:
+ Height: =5
+ Width: =5
+ X: =40
+ Y: =40
+ ZIndex: =10
+
+ Image3_3 As image:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledFill: =RGBA(0, 0, 0, 0)
+ FocusedBorderThickness: =4
+ Height: =105
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverFill: =RGBA(0, 0, 0, 0)
+ Image: ='703 FITNESS'
+ PressedBorderColor: =RGBA(0, 0, 0, 0)
+ PressedFill: =RGBA(0, 0, 0, 0)
+ Width: =125
+ X: =54
+ ZIndex: =4
+
+ Label3_3 As label:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Lato Light'
+ FontWeight: =FontWeight.Bold
+ Height: =84
+ Size: =50
+ Text: ="703 FITNESS"
+ Width: =537
+ X: =164
+ Y: =21
+ ZIndex: =5
+
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditScreen.fx.yaml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditScreen.fx.yaml
new file mode 100644
index 00000000..563d0120
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditScreen.fx.yaml
@@ -0,0 +1,945 @@
+EditScreen As screen:
+ Fill: =RGBA(30, 45, 62, 1)
+ ImagePosition: =ImagePosition.Center
+ LoadingSpinnerColor: =RGBA(0, 188, 242, 1)
+
+ Button1 As button:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ Color: =RGBA(30, 45, 62, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ Fill: =RGBA(0, 188, 242, 1)
+ FocusedBorderColor: =ColorFade(Self.Fill, 75%)
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Bold
+ Height: =55
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverColor: =RGBA(30, 45, 62, 1)
+ HoverFill: =ColorFade(RGBA(0, 188, 242, 1), 10%)
+ OnSelect: =If(IsBlank([@EditForm]),Notify("Please fill in the Name field.", NotificationType.Error),SubmitForm(EditForm), Navigate(Screen2))
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 50%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ RadiusBottomLeft: =50
+ RadiusBottomRight: =50
+ RadiusTopLeft: =50
+ RadiusTopRight: =50
+ Size: =20
+ Text: ="Submit"
+ Tooltip: ="Submit"
+ Width: =205
+ X: =1008
+ Y: =672
+ ZIndex: =2
+
+ Icon3 As icon.BackArrow:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(220, 220, 220, 1)
+ DisabledFill: =RGBA(0, 0, 0, 0)
+ FocusedBorderThickness: =4
+ Height: =49
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverFill: =RGBA(0, 0, 0, 0)
+ Icon: =Icon.BackArrow
+ OnSelect: =Back()
+ PressedBorderColor: =RGBA(0, 0, 0, 0)
+ PressedColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedFill: =RGBA(0, 0, 0, 0)
+ Tooltip: ="Go Back"
+ Width: =46
+ X: =12
+ Y: =29
+ ZIndex: =6
+
+ EditForm As form:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ DataSource: =ListVariables
+ DefaultMode: =FormMode.New
+ Height: =555
+ NumberOfColumns: =1
+ Width: =1047
+ X: =52
+ Y: =117
+ ZIndex: =7
+
+ Title_DataCard1 As typedDataCard.textualEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="Title"
+ Default: =ThisItem.Title
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'Title')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ MaxLength: =DataSourceInfo([@ListVariables], DataSourceInfo.MaxLength, 'Title')
+ Required: =false
+ Update: =DataCardValue28.Text
+ Width: =1047
+ X: =0
+ Y: =0
+ ZIndex: =1
+
+ DataCardKey28 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "Title", "Name:", Parent.DisplayName)
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue28 As text:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ Default: =Parent.Default
+ DelayOutput: =true
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(30, 45, 62, 1)
+ MaxLength: =Parent.MaxLength
+ PaddingLeft: =5
+ PressedBorderColor: =RGBA(0, 188, 242, 1)
+ PressedColor: =RGBA(255, 255, 255, 1)
+ PressedFill: =RGBA(30, 45, 62, 1)
+ RadiusBottomLeft: =0
+ RadiusBottomRight: =0
+ RadiusTopLeft: =0
+ RadiusTopRight: =0
+ Size: =13
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey28.Y + DataCardKey28.Height + 5
+ ZIndex: =2
+
+ ErrorMessage22 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue28.Y + DataCardValue28.Height
+ ZIndex: =3
+
+ StarVisible22 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey28.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey28.Y
+ ZIndex: =4
+
+ PhoneNumber_DataCard1 As typedDataCard.numberEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="PhoneNumber"
+ Default: =ThisItem.PhoneNumber
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'PhoneNumber')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ Required: =false
+ Update: =Value(DataCardValue26.Text)
+ Width: =1047
+ X: =0
+ Y: =1
+ ZIndex: =1
+
+ DataCardKey26 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "PhoneNumber", "Phone Number:", Parent.DisplayName)
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue26 As text:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ Default: =Parent.Default
+ DelayOutput: =true
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ Format: =TextFormat.Number
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(30, 45, 62, 1)
+ PaddingLeft: =5
+ PressedBorderColor: =RGBA(0, 188, 242, 1)
+ PressedColor: =RGBA(255, 255, 255, 1)
+ PressedFill: =RGBA(30, 45, 62, 1)
+ RadiusBottomLeft: =0
+ RadiusBottomRight: =0
+ RadiusTopLeft: =0
+ RadiusTopRight: =0
+ Size: =13
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey26.Y + DataCardKey26.Height + 5
+ ZIndex: =2
+
+ ErrorMessage21 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue26.Y + DataCardValue26.Height
+ ZIndex: =3
+
+ StarVisible21 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey26.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey26.Y
+ ZIndex: =4
+
+ EmailAddress_DataCard1 As typedDataCard.textualEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="EmailAddress"
+ Default: =ThisItem.EmailAddress
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'EmailAddress')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ MaxLength: =DataSourceInfo([@ListVariables], DataSourceInfo.MaxLength, 'EmailAddress')
+ Required: =false
+ Update: =DataCardValue16.Text
+ Width: =1047
+ X: =0
+ Y: =2
+ ZIndex: =1
+
+ DataCardKey16 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "EmailAddress", "E-mail Address:", Parent.DisplayName)
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue16 As text:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ Default: =Parent.Default
+ DelayOutput: =true
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(30, 45, 62, 1)
+ MaxLength: =Parent.MaxLength
+ PaddingLeft: =5
+ PressedBorderColor: =RGBA(0, 188, 242, 1)
+ PressedColor: =RGBA(255, 255, 255, 1)
+ PressedFill: =RGBA(30, 45, 62, 1)
+ RadiusBottomLeft: =0
+ RadiusBottomRight: =0
+ RadiusTopLeft: =0
+ RadiusTopRight: =0
+ Size: =13
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey16.Y + DataCardKey16.Height + 5
+ ZIndex: =2
+
+ ErrorMessage17 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue16.Y + DataCardValue16.Height
+ ZIndex: =3
+
+ StarVisible17 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey16.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey16.Y
+ ZIndex: =4
+
+ Gender_DataCard2 As typedDataCard.comboBoxEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="Gender"
+ Default: =ThisItem.Gender
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'Gender')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ Required: =false
+ Update: =DataCardValue23.Selected
+ Width: =1047
+ X: =0
+ Y: =3
+ ZIndex: =1
+
+ DataCardKey23 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue23 As combobox:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ ChevronBackground: =RGBA(30, 45, 62, 1)
+ ChevronDisabledBackground: =RGBA(244, 244, 244, 1)
+ ChevronDisabledFill: =RGBA(166, 166, 166, 1)
+ ChevronFill: =RGBA(218, 218, 218, 1)
+ ChevronHoverBackground: =RGBA(67, 85, 106, 1)
+ ChevronHoverFill: =RGBA(218, 218, 218, 1)
+ Color: =RGBA(255, 255, 255, 1)
+ DefaultSelectedItems: =Parent.Default
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayFields: =["Value"]
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(67, 85, 106, 1)
+ Items: =Choices([@ListVariables].'Gender')
+ PaddingLeft: =If(Self.DisplayMode = DisplayMode.Edit, 5, 0)
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ SearchFields: =["Value"]
+ SearchItems: =Choices(ListVariables.Gender,DataCardValue23.SearchText)
+ SelectionColor: =RGBA(30, 45, 62, 1)
+ SelectionFill: =RGBA(0, 188, 242, 1)
+ SelectMultiple: =false
+ Size: =13
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey23.Y + DataCardKey23.Height + 5
+ ZIndex: =2
+
+ ErrorMessage18 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue23.Y + DataCardValue23.Height
+ ZIndex: =3
+
+ StarVisible18 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey23.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey23.Y
+ ZIndex: =4
+
+ Date_DataCard1 As typedDataCard.dateEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="Date"
+ Default: =ThisItem.Date
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'Date')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ Required: =false
+ Update: =DataCardValue15.SelectedDate
+ Width: =1047
+ X: =0
+ Y: =4
+ ZIndex: =1
+
+ DataCardKey15 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue15 As datepicker:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ CalendarHeaderFill: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ Color: =RGBA(255, 255, 255, 1)
+ DefaultDate: =Parent.Default
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayMode: =Parent.DisplayMode
+ EndYear: =Year(Today())+100
+ Fill: =RGBA(30, 45, 62, 1)
+ Font: =Font.'Segoe UI'
+ HoverDateFill: =RGBA(85, 106, 129, 1)
+ IconBackground: =RGBA(0, 188, 242, 1)
+ IconFill: =RGBA(30, 45, 62, 1)
+ IsEditable: =true
+ PaddingBottom: =0
+ PaddingLeft: =If(Self.DisplayMode = DisplayMode.Edit, 5, 0)
+ SelectedDateFill: =RGBA(0, 188, 242, 1)
+ Size: =13
+ StartYear: =1899
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey15.Y + DataCardKey15.Height + 5
+ ZIndex: =2
+
+ ErrorMessage10 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue15.Y + DataCardValue15.Height
+ ZIndex: =3
+
+ StarVisible10 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey15.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey15.Y
+ ZIndex: =4
+
+ MembershipPlan_DataCard4 As typedDataCard.comboBoxEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="MembershipPlan"
+ Default: =ThisItem.MembershipPlan
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'MembershipPlan')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ Required: =false
+ Update: =DataCardValue24.Selected
+ Width: =1047
+ X: =0
+ Y: =5
+ ZIndex: =1
+
+ DataCardKey24 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "MembershipPlan", "Membership Plan:", Parent.DisplayName)
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue24 As combobox:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ ChevronBackground: =RGBA(30, 45, 62, 1)
+ ChevronDisabledBackground: =RGBA(244, 244, 244, 1)
+ ChevronDisabledFill: =RGBA(166, 166, 166, 1)
+ ChevronFill: =RGBA(218, 218, 218, 1)
+ ChevronHoverBackground: =RGBA(67, 85, 106, 1)
+ ChevronHoverFill: =RGBA(218, 218, 218, 1)
+ Color: =RGBA(255, 255, 255, 1)
+ DefaultSelectedItems: =Parent.Default
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayFields: =["Value"]
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(67, 85, 106, 1)
+ Items: =Choices([@ListVariables].'MembershipPlan')
+ PaddingLeft: =If(Self.DisplayMode = DisplayMode.Edit, 5, 0)
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ SearchFields: =["Value"]
+ SearchItems: =Choices(ListVariables.MembershipPlan,DataCardValue24.SearchText)
+ SelectionColor: =RGBA(30, 45, 62, 1)
+ SelectionFill: =RGBA(0, 188, 242, 1)
+ SelectMultiple: =false
+ Size: =13
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey24.Y + DataCardKey24.Height + 5
+ ZIndex: =2
+
+ ErrorMessage19 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue24.Y + DataCardValue24.Height
+ ZIndex: =3
+
+ StarVisible19 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey24.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey24.Y
+ ZIndex: =4
+
+ PersonalTraining_DataCard4 As typedDataCard.comboBoxEditCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="PersonalTraining"
+ Default: =ThisItem.PersonalTraining
+ DisplayMode: =Parent.DisplayMode
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'PersonalTraining')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ Required: =false
+ Update: =DataCardValue25.Selected
+ Width: =1047
+ X: =0
+ Y: =6
+ ZIndex: =1
+
+ DataCardKey25 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "PersonalTraining", "Personal Training:", Parent.DisplayName)
+ Width: =Parent.Width - 60
+ Wrap: =false
+ X: =30
+ Y: =10
+ ZIndex: =1
+
+ DataCardValue25 As combobox:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ ChevronBackground: =RGBA(30, 45, 62, 1)
+ ChevronDisabledBackground: =RGBA(244, 244, 244, 1)
+ ChevronDisabledFill: =RGBA(166, 166, 166, 1)
+ ChevronFill: =RGBA(218, 218, 218, 1)
+ ChevronHoverBackground: =RGBA(67, 85, 106, 1)
+ ChevronHoverFill: =RGBA(218, 218, 218, 1)
+ Color: =RGBA(255, 255, 255, 1)
+ DefaultSelectedItems: =Parent.Default
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayFields: =["Value"]
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(67, 85, 106, 1)
+ Items: =Choices([@ListVariables].'PersonalTraining')
+ PaddingLeft: =If(Self.DisplayMode = DisplayMode.Edit, 5, 0)
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ SearchFields: =["Value"]
+ SearchItems: =Choices(ListVariables.PersonalTraining,DataCardValue25.SearchText)
+ SelectionColor: =RGBA(30, 45, 62, 1)
+ SelectionFill: =RGBA(0, 188, 242, 1)
+ SelectMultiple: =false
+ Size: =13
+ Tooltip: =Parent.DisplayName
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardKey25.Y + DataCardKey25.Height + 5
+ ZIndex: =2
+
+ ErrorMessage20 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue25.Y + DataCardValue25.Height
+ ZIndex: =3
+
+ StarVisible20 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey25.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey25.Y
+ ZIndex: =4
+
+ "'Header 2' As group":
+ Height: =5
+ Width: =5
+ X: =40
+ Y: =40
+ ZIndex: =7
+
+ Rectangle1_1 As rectangle:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ DisabledFill: =RGBA(166, 166, 166, 1)
+ Fill: =RGBA(0, 188, 242, 1)
+ FocusedBorderThickness: =4
+ Height: =105
+ HoverFill: =RGBA(0, 188, 242, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ Width: =1366
+ ZIndex: =3
+
+ Image3_1 As image:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledFill: =RGBA(0, 0, 0, 0)
+ FocusedBorderThickness: =4
+ Height: =105
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverFill: =RGBA(0, 0, 0, 0)
+ Image: ='703 FITNESS'
+ PressedBorderColor: =RGBA(0, 0, 0, 0)
+ PressedFill: =RGBA(0, 0, 0, 0)
+ Width: =125
+ X: =52
+ ZIndex: =4
+
+ Label3_1 As label:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Lato Light'
+ FontWeight: =FontWeight.Bold
+ Height: =84
+ Size: =50
+ Text: ="703 FITNESS"
+ Width: =537
+ X: =165
+ Y: =21
+ ZIndex: =5
+
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/App.editorstate.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/App.editorstate.json
new file mode 100644
index 00000000..3d0c6b3c
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/App.editorstate.json
@@ -0,0 +1,114 @@
+{
+ "ControlStates": {
+ "App": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "MinScreenHeight",
+ "MinScreenWidth",
+ "ConfirmExit",
+ "SizeBreakpoints",
+ "BackEnabled",
+ "Theme"
+ ],
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": true,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "App",
+ "OptimizeForDevices": "Off",
+ "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": "Design",
+ "PropertyName": "Theme",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "ConstantData",
+ "PropertyName": "SizeBreakpoints",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ },
+ "Host": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "OnNew",
+ "OnEdit",
+ "OnView",
+ "OnSave",
+ "OnCancel"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": true,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Host",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnNew",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnEdit",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnView",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSave",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnCancel",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ }
+ },
+ "TopParentName": "App"
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/EditDetailsScreen.editorstate.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/EditDetailsScreen.editorstate.json
new file mode 100644
index 00000000..52fbac8d
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/EditDetailsScreen.editorstate.json
@@ -0,0 +1,9380 @@
+{
+ "ControlStates": {
+ "Button1_1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "DisplayMode",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ {
+ "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": "?"
+ },
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Size",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "false",
+ "InvariantPropertyName": "OnSelect",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Button1_1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 5,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "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": "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": "ZIndex",
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultButtonStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey29": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey29",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey30": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey30",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey31": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey31",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey32": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey32",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey33": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "1.2",
+ "InvariantPropertyName": "LineHeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey33",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey34": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey34",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue29": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "MaxLength",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Mode",
+ "Format",
+ "VirtualKeyboardMode",
+ "DelayOutput",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "RadiusTopLeft",
+ "RadiusTopRight"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue29",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DelayOutput",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "MaxLength",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Mode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Format",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VirtualKeyboardMode",
+ "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": "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": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopRight",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultTextStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue30": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Items",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DefaultSelectedItems",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SelectMultiple",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "NavigateFields",
+ "Template",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SearchItems",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "MoreItemsButtonColor",
+ "DisplayFields",
+ "SearchFields",
+ "SelectionColor",
+ "ChevronFill",
+ "ChevronHoverFill",
+ "ChevronDisabledFill",
+ "ChevronBackground",
+ "ChevronHoverBackground",
+ "ChevronDisabledBackground",
+ "SelectionFill",
+ "SelectionTagFill",
+ "SelectionTagColor",
+ "Color",
+ "HoverColor",
+ "PressedColor",
+ "DisabledColor",
+ "DisabledBorderColor",
+ "HoverBorderColor",
+ "PressedBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue30",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "NavigateFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Items",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DefaultSelectedItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SelectMultiple",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Template",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MoreItemsButtonColor",
+ "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": "SelectionTagFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "SelectionTagColor",
+ "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": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultComboBoxStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue31": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Items",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DefaultSelectedItems",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SelectMultiple",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "NavigateFields",
+ "Template",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SearchItems",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "MoreItemsButtonColor",
+ "DisplayFields",
+ "SearchFields",
+ "SelectionColor",
+ "ChevronFill",
+ "ChevronHoverFill",
+ "ChevronDisabledFill",
+ "ChevronBackground",
+ "ChevronHoverBackground",
+ "ChevronDisabledBackground",
+ "SelectionFill",
+ "SelectionTagFill",
+ "SelectionTagColor",
+ "Color",
+ "HoverColor",
+ "PressedColor",
+ "DisabledColor",
+ "DisabledBorderColor",
+ "HoverBorderColor",
+ "PressedBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue31",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "NavigateFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Items",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DefaultSelectedItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SelectMultiple",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Template",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MoreItemsButtonColor",
+ "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": "SelectionTagFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "SelectionTagColor",
+ "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": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultComboBoxStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue32": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Items",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DefaultSelectedItems",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SelectMultiple",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "NavigateFields",
+ "Template",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SearchItems",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "MoreItemsButtonColor",
+ "DisplayFields",
+ "SearchFields",
+ "SelectionColor",
+ "ChevronFill",
+ "ChevronHoverFill",
+ "ChevronDisabledFill",
+ "ChevronBackground",
+ "ChevronHoverBackground",
+ "ChevronDisabledBackground",
+ "SelectionFill",
+ "SelectionTagFill",
+ "SelectionTagColor",
+ "Color",
+ "HoverColor",
+ "PressedColor",
+ "DisabledColor",
+ "DisabledBorderColor",
+ "HoverBorderColor",
+ "PressedBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue32",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "NavigateFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Items",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DefaultSelectedItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SelectMultiple",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Template",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MoreItemsButtonColor",
+ "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": "SelectionTagFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "SelectionTagColor",
+ "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": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultComboBoxStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue33": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Format",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Mode",
+ "VirtualKeyboardMode",
+ "DelayOutput",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "RadiusTopLeft",
+ "RadiusTopRight",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "1.2",
+ "InvariantPropertyName": "LineHeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue33",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DelayOutput",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Mode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Format",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VirtualKeyboardMode",
+ "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": "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": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultTextStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue34": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "MaxLength",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Mode",
+ "Format",
+ "VirtualKeyboardMode",
+ "DelayOutput",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "RadiusTopLeft",
+ "RadiusTopRight"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue34",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DelayOutput",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "MaxLength",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Mode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Format",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VirtualKeyboardMode",
+ "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": "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": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopRight",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultTextStyle",
+ "Type": "ControlInfo"
+ },
+ "EditDetailsScreen": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "ImagePosition",
+ "Height",
+ "Width",
+ "Size",
+ "Orientation",
+ "LoadingSpinner",
+ "LoadingSpinnerColor",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "OnVisible",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "EditDetailsScreen",
+ "OptimizeForDevices": "Off",
+ "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": "User"
+ }
+ ],
+ "StyleName": "defaultScreenStyle",
+ "Type": "ControlInfo"
+ },
+ "EmailAddress_DataCard2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "MaxLength",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "EmailAddress_DataCard2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "MaxLength",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage23": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage23",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage24": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage24",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage25": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage25",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage26": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage26",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage27": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "1.2",
+ "InvariantPropertyName": "LineHeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage27",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage28": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage28",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Form2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DefaultMode",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Fill",
+ "BorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataSource",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Item",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "vertical",
+ "MetaDataIDKey": "",
+ "Name": "Form2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 4,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DefaultMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DataSource",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Item",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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": "ZIndex",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultFormStyle",
+ "Type": "ControlInfo"
+ },
+ "Gender_DataCard3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Gender_DataCard3",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 5,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "Group5": {
+ "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": "Group5",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 6,
+ "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"
+ },
+ "Icon3_1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Icon",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Color",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "BorderStyle",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "FocusedBorderColor",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "false",
+ "InvariantPropertyName": "OnSelect",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Icon3_1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultIconStyle",
+ "Type": "ControlInfo"
+ },
+ "Image3_3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Image",
+ "ImagePosition",
+ "ImageRotation",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "FocusedBorderColor",
+ "BorderStyle",
+ "DisplayMode",
+ "ZIndex",
+ "RadiusTopLeft",
+ "RadiusTopRight",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Image3_3",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Image",
+ "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"
+ },
+ {
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultImageStyle",
+ "Type": "ControlInfo"
+ },
+ "Label3_3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Font",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Size",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Label3_3",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "MembershipPlan_DataCard5": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "MembershipPlan_DataCard5",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "PersonalTraining_DataCard5": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "PersonalTraining_DataCard5",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 4,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "PhoneNumber_DataCard2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "PhoneNumber_DataCard2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "Rectangle1_3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Rectangle1_3",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "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": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultRectangleStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible23": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible23",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible24": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible24",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible25": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible25",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible26": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible26",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible27": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "1.2",
+ "InvariantPropertyName": "LineHeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible27",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible28": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible28",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Title_DataCard2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "MaxLength",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Title_DataCard2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "MaxLength",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ }
+ },
+ "TopParentName": "EditDetailsScreen"
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/EditScreen.editorstate.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/EditScreen.editorstate.json
new file mode 100644
index 00000000..7d054a5f
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/EditScreen.editorstate.json
@@ -0,0 +1,10660 @@
+{
+ "ControlStates": {
+ "Button1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "DisplayMode",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ {
+ "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": "?"
+ },
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Size",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "false",
+ "InvariantPropertyName": "OnSelect",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Button1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 5,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "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": "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": "ZIndex",
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultButtonStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey15": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey15",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey16": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey16",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey23": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey23",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey24": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey24",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey25": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey25",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey26": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey26",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey28": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey28",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue15": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DefaultDate",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DateTimeZone",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Format",
+ "InputTextPlaceholder",
+ "StartYear",
+ "EndYear",
+ "StartOfWeek",
+ "IconFill",
+ "IconBackground",
+ "SelectedDateFill",
+ "HoverDateFill",
+ "CurrentDateFill",
+ "CalendarHeaderFill",
+ "MonthColor",
+ "WeekColor",
+ "DayColor",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "DisabledBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "Font",
+ "FontWeight",
+ "Color",
+ "DisabledColor",
+ "Width",
+ "Height",
+ "X",
+ "Y",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "IsEditable",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue15",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DefaultDate",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DateTimeZone",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Format",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "InputTextPlaceholder",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "StartYear",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "EndYear",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "StartOfWeek",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "IconFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "IconBackground",
+ "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": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "IsEditable",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultDatePickerStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue16": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "MaxLength",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Mode",
+ "Format",
+ "VirtualKeyboardMode",
+ "DelayOutput",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "RadiusTopLeft",
+ "RadiusTopRight"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue16",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DelayOutput",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "MaxLength",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Mode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Format",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VirtualKeyboardMode",
+ "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": "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": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopRight",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultTextStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue23": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Items",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DefaultSelectedItems",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SelectMultiple",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "NavigateFields",
+ "Template",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SearchItems",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "MoreItemsButtonColor",
+ "DisplayFields",
+ "SearchFields",
+ "SelectionColor",
+ "ChevronFill",
+ "ChevronHoverFill",
+ "ChevronDisabledFill",
+ "ChevronBackground",
+ "ChevronHoverBackground",
+ "ChevronDisabledBackground",
+ "SelectionFill",
+ "SelectionTagFill",
+ "SelectionTagColor",
+ "Color",
+ "HoverColor",
+ "PressedColor",
+ "DisabledColor",
+ "DisabledBorderColor",
+ "HoverBorderColor",
+ "PressedBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue23",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "NavigateFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Items",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DefaultSelectedItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SelectMultiple",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Template",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MoreItemsButtonColor",
+ "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": "SelectionTagFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "SelectionTagColor",
+ "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": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultComboBoxStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue24": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Items",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DefaultSelectedItems",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SelectMultiple",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "NavigateFields",
+ "Template",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SearchItems",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "MoreItemsButtonColor",
+ "DisplayFields",
+ "SearchFields",
+ "SelectionColor",
+ "ChevronFill",
+ "ChevronHoverFill",
+ "ChevronDisabledFill",
+ "ChevronBackground",
+ "ChevronHoverBackground",
+ "ChevronDisabledBackground",
+ "SelectionFill",
+ "SelectionTagFill",
+ "SelectionTagColor",
+ "Color",
+ "HoverColor",
+ "PressedColor",
+ "DisabledColor",
+ "DisabledBorderColor",
+ "HoverBorderColor",
+ "PressedBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue24",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "NavigateFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Items",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DefaultSelectedItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SelectMultiple",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Template",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MoreItemsButtonColor",
+ "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": "SelectionTagFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "SelectionTagColor",
+ "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": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultComboBoxStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue25": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Items",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DefaultSelectedItems",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SelectMultiple",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "NavigateFields",
+ "Template",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SearchItems",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "MoreItemsButtonColor",
+ "DisplayFields",
+ "SearchFields",
+ "SelectionColor",
+ "ChevronFill",
+ "ChevronHoverFill",
+ "ChevronDisabledFill",
+ "ChevronBackground",
+ "ChevronHoverBackground",
+ "ChevronDisabledBackground",
+ "SelectionFill",
+ "SelectionTagFill",
+ "SelectionTagColor",
+ "Color",
+ "HoverColor",
+ "PressedColor",
+ "DisabledColor",
+ "DisabledBorderColor",
+ "HoverBorderColor",
+ "PressedBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue25",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "NavigateFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Items",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DefaultSelectedItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SelectMultiple",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Template",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MoreItemsButtonColor",
+ "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": "SelectionTagFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "SelectionTagColor",
+ "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": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultComboBoxStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue26": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Format",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Mode",
+ "VirtualKeyboardMode",
+ "DelayOutput",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "RadiusTopLeft",
+ "RadiusTopRight"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue26",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DelayOutput",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Mode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Format",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VirtualKeyboardMode",
+ "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": "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": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopRight",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultTextStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue28": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "MaxLength",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Mode",
+ "Format",
+ "VirtualKeyboardMode",
+ "DelayOutput",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "RadiusTopLeft",
+ "RadiusTopRight"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue28",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DelayOutput",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "MaxLength",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Mode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Format",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VirtualKeyboardMode",
+ "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": "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": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopRight",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultTextStyle",
+ "Type": "ControlInfo"
+ },
+ "Date_DataCard1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Date_DataCard1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 4,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "EditForm": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DefaultMode",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Fill",
+ "BorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataSource",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "NumberOfColumns",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "vertical",
+ "MetaDataIDKey": "",
+ "Name": "EditForm",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 4,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataSource",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DefaultMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "NumberOfColumns",
+ "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": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultFormStyle",
+ "Type": "ControlInfo"
+ },
+ "EditScreen": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "ImagePosition",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Height",
+ "Width",
+ "Size",
+ "Orientation",
+ "LoadingSpinner",
+ "LoadingSpinnerColor"
+ ],
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "EditScreen",
+ "OptimizeForDevices": "Off",
+ "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"
+ }
+ ],
+ "StyleName": "defaultScreenStyle",
+ "Type": "ControlInfo"
+ },
+ "EmailAddress_DataCard1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "MaxLength",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "EmailAddress_DataCard1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "MaxLength",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage10": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage10",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage17": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage17",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage18": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage18",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage19": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage19",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage20": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage20",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage21": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage21",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage22": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage22",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Gender_DataCard2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Gender_DataCard2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "Header 2": {
+ "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": "Header 2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 6,
+ "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"
+ },
+ "Icon3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Icon",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Color",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "BorderStyle",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "FocusedBorderColor",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "false",
+ "InvariantPropertyName": "OnSelect",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Icon3",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultIconStyle",
+ "Type": "ControlInfo"
+ },
+ "Image3_1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Image",
+ "ImagePosition",
+ "ImageRotation",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "FocusedBorderColor",
+ "BorderStyle",
+ "DisplayMode",
+ "ZIndex",
+ "RadiusTopLeft",
+ "RadiusTopRight",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Image3_1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Image",
+ "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"
+ },
+ {
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultImageStyle",
+ "Type": "ControlInfo"
+ },
+ "Label3_1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Font",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Size",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Label3_1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "MembershipPlan_DataCard4": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "MembershipPlan_DataCard4",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 5,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "PersonalTraining_DataCard4": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "PersonalTraining_DataCard4",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 6,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "PhoneNumber_DataCard1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "PhoneNumber_DataCard1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "Rectangle1_1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Rectangle1_1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "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": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultRectangleStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible10": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible10",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible17": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible17",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible18": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible18",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible19": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible19",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible20": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible20",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible21": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible21",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible22": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible22",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Title_DataCard1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "MaxLength",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Title_DataCard1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "MaxLength",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ }
+ },
+ "TopParentName": "EditScreen"
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/Screen1.editorstate.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/Screen1.editorstate.json
new file mode 100644
index 00000000..5c6348d4
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/Screen1.editorstate.json
@@ -0,0 +1,11941 @@
+{
+ "ControlStates": {
+ "Button3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "DisplayMode",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ {
+ "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": "?"
+ },
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "false",
+ "InvariantPropertyName": "OnSelect",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "true",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Button3",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 8,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "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": "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": "ZIndex",
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultButtonStyle",
+ "Type": "ControlInfo"
+ },
+ "Button4": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "DisplayMode",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ {
+ "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": "?"
+ },
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "true",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "false",
+ "InvariantPropertyName": "OnSelect",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Button4",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 13,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "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": "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": "ZIndex",
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultButtonStyle",
+ "Type": "ControlInfo"
+ },
+ "Button4_1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "DisplayMode",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ {
+ "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": "?"
+ },
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "true",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "false",
+ "InvariantPropertyName": "OnSelect",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Button4_1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 14,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "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": "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": "ZIndex",
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultButtonStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey10": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey10",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey11": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey11",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey12": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey12",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey13": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey13",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey14": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey14",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey8": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey8",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardKey9": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "Parent.DisplayName",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "AutoHeight",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldName.ID%",
+ "Name": "DataCardKey9",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue10": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue10",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue11": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue11",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue12": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Items",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DefaultSelectedItems",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SelectMultiple",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "NavigateFields",
+ "Template",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SearchItems",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "MoreItemsButtonColor",
+ "DisplayFields",
+ "SearchFields",
+ "SelectionColor",
+ "ChevronFill",
+ "ChevronHoverFill",
+ "ChevronDisabledFill",
+ "ChevronBackground",
+ "ChevronHoverBackground",
+ "ChevronDisabledBackground",
+ "SelectionFill",
+ "SelectionTagFill",
+ "SelectionTagColor",
+ "Color",
+ "HoverColor",
+ "PressedColor",
+ "DisabledColor",
+ "DisabledBorderColor",
+ "HoverBorderColor",
+ "PressedBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue12",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "NavigateFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Items",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DefaultSelectedItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SelectMultiple",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Template",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MoreItemsButtonColor",
+ "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": "SelectionTagFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "SelectionTagColor",
+ "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": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultComboBoxStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue13": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue13",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue14": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Items",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DefaultSelectedItems",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SelectMultiple",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "NavigateFields",
+ "Template",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SearchItems",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "MoreItemsButtonColor",
+ "DisplayFields",
+ "SearchFields",
+ "SelectionColor",
+ "ChevronFill",
+ "ChevronHoverFill",
+ "ChevronDisabledFill",
+ "ChevronBackground",
+ "ChevronHoverBackground",
+ "ChevronDisabledBackground",
+ "SelectionFill",
+ "SelectionTagFill",
+ "SelectionTagColor",
+ "Color",
+ "HoverColor",
+ "PressedColor",
+ "DisabledColor",
+ "DisabledBorderColor",
+ "HoverBorderColor",
+ "PressedBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue14",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "NavigateFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Items",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DefaultSelectedItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SelectMultiple",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Template",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MoreItemsButtonColor",
+ "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": "SelectionTagFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "SelectionTagColor",
+ "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": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultComboBoxStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue8": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue8",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "DataCardValue9": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Items",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DefaultSelectedItems",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SelectMultiple",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderColor",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "NavigateFields",
+ "Template",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SearchItems",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "MoreItemsButtonColor",
+ "DisplayFields",
+ "SearchFields",
+ "SelectionColor",
+ "ChevronFill",
+ "ChevronHoverFill",
+ "ChevronDisabledFill",
+ "ChevronBackground",
+ "ChevronHoverBackground",
+ "ChevronDisabledBackground",
+ "SelectionFill",
+ "SelectionTagFill",
+ "SelectionTagColor",
+ "Color",
+ "HoverColor",
+ "PressedColor",
+ "DisabledColor",
+ "DisabledBorderColor",
+ "HoverBorderColor",
+ "PressedBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldValue.ID%",
+ "Name": "DataCardValue9",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "NavigateFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SearchFields",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Items",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DefaultSelectedItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "SelectMultiple",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Template",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MoreItemsButtonColor",
+ "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": "SelectionTagFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "SelectionTagColor",
+ "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": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultComboBoxStyle",
+ "Type": "ControlInfo"
+ },
+ "Date :_DataCard2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "DataSourceInfo([@'703 Fitness Membership Reg'],DataSourceInfo.DisplayName,'Date :')",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Date :_DataCard2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 4,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "DeletePopup": {
+ "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": "DeletePopup",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 16,
+ "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"
+ },
+ "Due Date :_DataCard1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "DataSourceInfo([@'703 Fitness Membership Reg'],DataSourceInfo.DisplayName,'Due Date :')",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "ThisItem.Due_x0020_Date",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Due Date :_DataCard1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 7,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "E-mail Address :_DataCard1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "DataSourceInfo([@'703 Fitness Membership Reg'],DataSourceInfo.DisplayName,'E-mail Address :')",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "ThisItem.'E-mailAddress'",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "E-mail Address :_DataCard1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage5": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage5",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage6": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage6",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "ErrorMessage9": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ErrorMessage.ID%",
+ "Name": "ErrorMessage9",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "criticalErrorLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "FormViewer3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "BorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataSource",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "NumberOfColumns",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "SnapToColumns",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Item",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "horizontal",
+ "MetaDataIDKey": "",
+ "Name": "FormViewer3",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 11,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataSource",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Item",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "NumberOfColumns",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "SnapToColumns",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultFormViewerStyle",
+ "Type": "ControlInfo"
+ },
+ "Gallery1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Items",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "WrapCount",
+ "TemplateSize",
+ "TemplatePadding",
+ "Layout",
+ "Transition",
+ "DelayItemLoading",
+ "LoadingSpinner",
+ "LoadingSpinnerColor",
+ "DisplayMode",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "#CopilotOverlayLabel",
+ "#CopilotOverlayVisible"
+ ],
+ "GalleryTemplateChildName": "galleryTemplate1",
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Gallery1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 9,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Items",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "WrapCount",
+ "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": "DelayItemLoading",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LoadingSpinner",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LoadingSpinnerColor",
+ "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": "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": "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": "#CopilotOverlayLabel",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "#CopilotOverlayVisible",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultGalleryStyle",
+ "Type": "ControlInfo"
+ },
+ "galleryTemplate1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "TemplateFill"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": true,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "galleryTemplate1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Design",
+ "PropertyName": "TemplateFill",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ },
+ "Gender_DataCard1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Gender_DataCard1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "Header": {
+ "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": "Header",
+ "OptimizeForDevices": "Off",
+ "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"
+ },
+ "Icon1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Icon",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "BorderStyle",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "FocusedBorderColor",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Icon1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 5,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultIconStyle",
+ "Type": "ControlInfo"
+ },
+ "Icon2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Icon",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Color",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "BorderStyle",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "FocusedBorderColor",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "false",
+ "InvariantPropertyName": "OnSelect",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Tooltip",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Icon2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultIconStyle",
+ "Type": "ControlInfo"
+ },
+ "Image3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Image",
+ "ImagePosition",
+ "ImageRotation",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "FocusedBorderColor",
+ "BorderStyle",
+ "DisplayMode",
+ "ZIndex",
+ "RadiusTopLeft",
+ "RadiusTopRight",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Image3",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Image",
+ "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"
+ },
+ {
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultImageStyle",
+ "Type": "ControlInfo"
+ },
+ "Label1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Color",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "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",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Size",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "true",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Label1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 7,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Label2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "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",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Size",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "true",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Label2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 12,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Label3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Font",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Size",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Label3",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 4,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "MembershipPlan_DataCard3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "MembershipPlan_DataCard3",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 6,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "Name :_DataCard2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "DataSourceInfo([@'703 Fitness Membership Reg'],DataSourceInfo.DisplayName,'Name :')",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "ThisItem.'Name (Title)'",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Name :_DataCard2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "NextArrow5": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Icon",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "BorderStyle",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "FocusedBorderColor",
+ "OnSelect",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Tooltip",
+ "AccessibleLabel",
+ "PaddingLeft",
+ "PaddingRight",
+ "PaddingTop",
+ "PaddingBottom",
+ "TabIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%TemplateBrowseGalleryNextIcon.ID%",
+ "Name": "NextArrow5",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Tooltip",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "AccessibleLabel",
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "TabIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultIconStyle",
+ "Type": "ControlInfo"
+ },
+ "PersonalTraining_DataCard3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Update",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "PersonalTraining_DataCard3",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 5,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Update",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "Phone Number:_DataCard1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DataField",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "DataSourceInfo([@'703 Fitness Membership Reg'],DataSourceInfo.DisplayName,'Phone Number:')",
+ "InvariantPropertyName": "DisplayName",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Required",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "DisplayMode",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Default",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": true,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Phone Number:_DataCard1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DataField",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DisplayName",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Required",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "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"
+ }
+ ],
+ "StyleName": "defaultTypedDataCardStyle",
+ "Type": "ControlInfo"
+ },
+ "Rectangle1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Rectangle1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "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": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultRectangleStyle",
+ "Type": "ControlInfo"
+ },
+ "Rectangle3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 188, 242, 1)",
+ "InvariantPropertyName": "Fill",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "true",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Rectangle3",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "User"
+ },
+ {
+ "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": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultRectangleStyle",
+ "Type": "ControlInfo"
+ },
+ "Rectangle5": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Fill",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "true",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Rectangle5",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 10,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "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": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultRectangleStyle",
+ "Type": "ControlInfo"
+ },
+ "Rectangle8": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "OnSelect",
+ "ZIndex",
+ "Visible",
+ "BorderThickness",
+ "TabIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%TemplateBrowseGalleryRectangle1.ID%",
+ "Name": "Rectangle8",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "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": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "TabIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "primary2RectangleStyle",
+ "Type": "ControlInfo"
+ },
+ "Screen1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "ImagePosition",
+ "Height",
+ "Width",
+ "Size",
+ "Orientation",
+ "LoadingSpinner",
+ "LoadingSpinnerColor"
+ ],
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Screen1",
+ "OptimizeForDevices": "Off",
+ "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": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Orientation",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LoadingSpinner",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LoadingSpinnerColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultScreenStyle",
+ "Type": "ControlInfo"
+ },
+ "Separator5": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "OnSelect",
+ "ZIndex",
+ "BorderThickness",
+ "TabIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%TemplateBrowseGallerySeparator1.ID%",
+ "Name": "Separator5",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 5,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "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": "TabIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "dividerStyle2020",
+ "Type": "ControlInfo"
+ },
+ "StarVisible5": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible5",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible6": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible6",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "StarVisible9": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": true,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": true,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "Wrap",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "%FieldRequired.ID%",
+ "Name": "StarVisible9",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "Wrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "accentLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Subtitle4": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "ThisItem.Title",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "OnSelect",
+ "ZIndex",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "TabIndex",
+ "Size"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%TemplateBrowseGallerySubtitle.ID%",
+ "Name": "Subtitle4",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 4,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "TabIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "subtitleLabelStyle_galleryLayouts_ver5",
+ "Type": "ControlInfo"
+ },
+ "TextInput1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Default",
+ "Mode",
+ "Format",
+ "VirtualKeyboardMode",
+ "DelayOutput",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "X",
+ "Y",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Width",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Height",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisplayMode",
+ "ZIndex",
+ "RadiusTopLeft",
+ "RadiusTopRight",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "EnableSpellCheck",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Clear",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "HintText",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "TextInput1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 6,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Default",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DelayOutput",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "HintText",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Mode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Format",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VirtualKeyboardMode",
+ "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": "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": "RadiusTopLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "EnableSpellCheck",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Clear",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultTextStyle",
+ "Type": "ControlInfo"
+ },
+ "Title5": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "OnSelect",
+ "ZIndex",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft",
+ "TabIndex",
+ "Size"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%TemplateBrowseGalleryTitle.ID%",
+ "Name": "Title5",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "TabIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "titleLabelStyle_galleryLayouts_ver5",
+ "Type": "ControlInfo"
+ }
+ },
+ "TopParentName": "Screen1"
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/Screen2.editorstate.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/Screen2.editorstate.json
new file mode 100644
index 00000000..fd9eb24c
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/EditorState/Screen2.editorstate.json
@@ -0,0 +1,1513 @@
+{
+ "ControlStates": {
+ "Button2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "DisplayMode",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ {
+ "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": "?"
+ },
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Size",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "false",
+ "InvariantPropertyName": "OnSelect",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Button2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 6,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "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": "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": "ZIndex",
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultButtonStyle",
+ "Type": "ControlInfo"
+ },
+ "Header_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": "Header_1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 7,
+ "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"
+ },
+ "iconCheck1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Icon",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "BorderStyle",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "FocusedBorderColor",
+ "ZIndex",
+ "PaddingTop",
+ "PaddingLeft",
+ "PaddingRight",
+ "PaddingBottom"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": true,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%TemplatePhoneIconCheck.ID%",
+ "Name": "iconCheck1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 5,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "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": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "invertedBkgHeaderIconStyle",
+ "Type": "ControlInfo"
+ },
+ "iconCircle1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": true,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%TemplatePhoneIconCircle.ID%",
+ "Name": "iconCircle1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 4,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "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"
+ }
+ ],
+ "StyleName": "defaultCircleStyle",
+ "Type": "ControlInfo"
+ },
+ "Image3_2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Image",
+ "ImagePosition",
+ "ImageRotation",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "FocusedBorderColor",
+ "BorderStyle",
+ "DisplayMode",
+ "ZIndex",
+ "RadiusTopLeft",
+ "RadiusTopRight",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Image3_2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Image",
+ "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"
+ },
+ {
+ "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": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultImageStyle",
+ "Type": "ControlInfo"
+ },
+ "Label3_2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Font",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Size",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Label3_2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "LblSuccessMsg1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Live",
+ "Overflow",
+ "Role",
+ "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",
+ "AutoHeight",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Size",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": true,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%TemplatePhoneSuccessMsg.ID%",
+ "Name": "LblSuccessMsg1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "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": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "basicNoSizeLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Rectangle1_2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "BorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "DisplayMode",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "BorderThickness",
+ "FocusedBorderThickness"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Rectangle1_2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "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": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultRectangleStyle",
+ "Type": "ControlInfo"
+ },
+ "Screen2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "ImagePosition",
+ "Height",
+ "Width",
+ "Size",
+ "Orientation",
+ "LoadingSpinner",
+ "LoadingSpinnerColor"
+ ],
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Screen2",
+ "OptimizeForDevices": "Off",
+ "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": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Orientation",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LoadingSpinner",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LoadingSpinnerColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultScreenStyle",
+ "Type": "ControlInfo"
+ }
+ },
+ "TopParentName": "Screen2"
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/Screen1.fx.yaml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/Screen1.fx.yaml
new file mode 100644
index 00000000..a35d6c8e
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/Screen1.fx.yaml
@@ -0,0 +1,1061 @@
+Screen1 As screen:
+ Fill: =RGBA(30, 45, 62, 1)
+ LoadingSpinnerColor: =RGBA(0, 188, 242, 1)
+
+ "Gallery1 As gallery.'BrowseLayout_Vertical_TwoTextVariant_ver5.0'":
+ '#CopilotOverlayLabel': ="Filtered"
+ BorderColor: =RGBA(85, 106, 129, 1)
+ DelayItemLoading: =true
+ Height: =521
+ Items: =Filter(ListVariables,StartsWith(Title,TextInput1.Text))
+ Layout: =Layout.Vertical
+ LoadingSpinner: =LoadingSpinner.Data
+ TemplatePadding: =0
+ TemplateSize: =90
+ Width: =637
+ X: =13
+ Y: =209
+ ZIndex: =1
+
+ Title5 As label:
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ Font: =Font.'Segoe UI'
+ FontWeight: =If(ThisItem.IsSelected, FontWeight.Semibold, FontWeight.Normal)
+ Height: =Self.Size * 1.8
+ OnSelect: =Select(Parent)
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Text: =ThisItem.Title
+ VerticalAlign: =VerticalAlign.Top
+ Width: =Parent.TemplateWidth - 86
+ X: =16
+ Y: =(Parent.TemplateHeight - (Self.Size * 1.8 + Subtitle4.Size * 1.8)) / 2
+ ZIndex: =1
+
+ Subtitle4 As label:
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ Font: =Font.'Segoe UI'
+ FontWeight: =If(ThisItem.IsSelected, FontWeight.Semibold, FontWeight.Normal)
+ Height: =Self.Size * 1.8
+ OnSelect: =Select(Parent)
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =12
+ Text: =ThisItem.EmailAddress
+ VerticalAlign: =VerticalAlign.Top
+ Width: =Title5.Width
+ X: =Title5.X
+ Y: =Title5.Y + Title5.Height
+ ZIndex: =2
+
+ NextArrow5 As icon.ChevronRight:
+ AccessibleLabel: =Self.Tooltip
+ BorderColor: =RGBA(85, 106, 129, 1)
+ Color: =RGBA(166, 166, 166, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(220, 220, 220, 1)
+ DisabledFill: =RGBA(0, 0, 0, 0)
+ FocusedBorderThickness: =4
+ Height: =50
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverFill: =RGBA(0, 0, 0, 0)
+ Icon: =Icon.ChevronRight
+ OnSelect: =Select(Parent)
+ PaddingBottom: =16
+ PaddingLeft: =16
+ PaddingRight: =16
+ PaddingTop: =16
+ PressedBorderColor: =RGBA(0, 0, 0, 0)
+ PressedColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedFill: =RGBA(0, 0, 0, 0)
+ Tooltip: ="View item details"
+ Width: =50
+ X: =Parent.TemplateWidth - Self.Width - 12
+ Y: =(Parent.TemplateHeight / 2) - (Self.Height / 2)
+ ZIndex: =3
+
+ Separator5 As rectangle:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ Fill: =RGBA(255, 255, 255, 1)
+ Height: =8
+ OnSelect: =Select(Parent)
+ Width: =Parent.TemplateWidth
+ Y: =Parent.TemplateHeight - Self.Height
+ ZIndex: =4
+
+ Rectangle8 As rectangle:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ Fill: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ Height: =Parent.TemplateHeight - Separator5.Height
+ OnSelect: =Select(Parent)
+ Visible: =ThisItem.IsSelected
+ Width: =4
+ ZIndex: =5
+
+ TextInput1 As text:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderThickness: =2
+ Clear: =true
+ Color: =RGBA(255, 255, 255, 1)
+ Default: =
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ EnableSpellCheck: =true
+ Fill: =RGBA(30, 45, 62, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ Height: =63
+ HintText: ="Search members by Name or Email"
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(30, 45, 62, 1)
+ PressedBorderColor: =RGBA(0, 188, 242, 1)
+ PressedColor: =RGBA(255, 255, 255, 1)
+ PressedFill: =RGBA(30, 45, 62, 1)
+ RadiusBottomLeft: =0
+ RadiusBottomRight: =0
+ RadiusTopLeft: =0
+ RadiusTopRight: =0
+ Size: =13
+ Width: =1261
+ X: =73
+ Y: =115
+ ZIndex: =5
+
+ Icon1 As icon.Search:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ Color: =RGBA(0, 188, 242, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(220, 220, 220, 1)
+ DisabledFill: =RGBA(0, 0, 0, 0)
+ FocusedBorderThickness: =4
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverFill: =RGBA(0, 0, 0, 0)
+ Icon: =Icon.Search
+ PressedBorderColor: =RGBA(0, 0, 0, 0)
+ PressedColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedFill: =RGBA(0, 0, 0, 0)
+ Width: =49
+ X: =11
+ Y: =115
+ ZIndex: =6
+
+ FormViewer3 As formViewer:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ DataSource: =ListVariables
+ Item: =Gallery1.Selected
+ NumberOfColumns: =1
+ SnapToColumns: =false
+ Width: =665
+ X: =698
+ Y: =215
+ ZIndex: =7
+
+ Gender_DataCard1 As typedDataCard.comboBoxViewCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="Gender"
+ Default: =ThisItem.Gender
+ DisplayMode: =DisplayMode.View
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'Gender')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ Required: =false
+ Update: =DataCardValue14.Selected
+ Width: =665
+ X: =3
+ Y: =0
+ ZIndex: =1
+
+ DataCardKey14 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: =Parent.DisplayName
+ Width: =(Parent.Width - 60) * 0.4
+ Wrap: =false
+ X: =30
+ Y: =10 + (DataCardValue14.Height / 2) - (Self.Height / 2)
+ ZIndex: =1
+
+ DataCardValue14 As combobox:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ ChevronBackground: =RGBA(30, 45, 62, 1)
+ ChevronDisabledBackground: =RGBA(244, 244, 244, 1)
+ ChevronDisabledFill: =RGBA(166, 166, 166, 1)
+ ChevronFill: =RGBA(218, 218, 218, 1)
+ ChevronHoverBackground: =RGBA(67, 85, 106, 1)
+ ChevronHoverFill: =RGBA(218, 218, 218, 1)
+ Color: =RGBA(255, 255, 255, 1)
+ DefaultSelectedItems: =Parent.Default
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayFields: =["Value"]
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(67, 85, 106, 1)
+ Items: =Choices([@ListVariables].'Gender')
+ PaddingLeft: =If(Self.DisplayMode = DisplayMode.Edit, 5, 0)
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ SearchFields: =["Value"]
+ SearchItems: =Choices(ListVariables.Gender,DataCardValue14.SearchText)
+ SelectionColor: =RGBA(30, 45, 62, 1)
+ SelectionFill: =RGBA(0, 188, 242, 1)
+ SelectMultiple: =false
+ Size: =13
+ Width: =(Parent.Width - 60) * 0.6
+ X: =DataCardKey14.X + DataCardKey14.Width
+ Y: =10
+ ZIndex: =2
+
+ ErrorMessage9 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue14.Y + DataCardValue14.Height
+ ZIndex: =3
+
+ StarVisible9 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey14.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey14.Y
+ ZIndex: =4
+
+ PersonalTraining_DataCard3 As typedDataCard.comboBoxViewCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="PersonalTraining"
+ Default: =ThisItem.PersonalTraining
+ DisplayMode: =DisplayMode.View
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'PersonalTraining')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ Required: =false
+ Update: =DataCardValue9.Selected
+ Width: =665
+ X: =0
+ Y: =7
+ ZIndex: =1
+
+ DataCardKey9 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "PersonalTraining", "Personal Training:", Parent.DisplayName)
+ Width: =(Parent.Width - 60) * 0.4
+ Wrap: =false
+ X: =30
+ Y: =10 + (DataCardValue9.Height / 2) - (Self.Height / 2)
+ ZIndex: =1
+
+ DataCardValue9 As combobox:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ ChevronBackground: =RGBA(30, 45, 62, 1)
+ ChevronDisabledBackground: =RGBA(244, 244, 244, 1)
+ ChevronDisabledFill: =RGBA(166, 166, 166, 1)
+ ChevronFill: =RGBA(218, 218, 218, 1)
+ ChevronHoverBackground: =RGBA(67, 85, 106, 1)
+ ChevronHoverFill: =RGBA(218, 218, 218, 1)
+ Color: =RGBA(255, 255, 255, 1)
+ DefaultSelectedItems: =Parent.Default
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayFields: =["Value"]
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(67, 85, 106, 1)
+ Items: =Choices([@ListVariables].'PersonalTraining')
+ PaddingLeft: =If(Self.DisplayMode = DisplayMode.Edit, 5, 0)
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ SearchFields: =["Value"]
+ SearchItems: =Choices(ListVariables.PersonalTraining,DataCardValue9.SearchText)
+ SelectionColor: =RGBA(30, 45, 62, 1)
+ SelectionFill: =RGBA(0, 188, 242, 1)
+ SelectMultiple: =false
+ Size: =13
+ Width: =(Parent.Width - 60) * 0.6
+ X: =DataCardKey9.X + DataCardKey9.Width
+ Y: =10
+ ZIndex: =2
+
+ ErrorMessage5 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue9.Y + DataCardValue9.Height
+ ZIndex: =3
+
+ StarVisible5 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey9.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey9.Y
+ ZIndex: =4
+
+ MembershipPlan_DataCard3 As typedDataCard.comboBoxViewCard:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="MembershipPlan"
+ Default: =ThisItem.MembershipPlan
+ DisplayMode: =DisplayMode.View
+ DisplayName: =DataSourceInfo([@ListVariables],DataSourceInfo.DisplayName,'MembershipPlan')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =50
+ Required: =false
+ Update: =DataCardValue12.Selected
+ Width: =665
+ X: =0
+ Y: =8
+ ZIndex: =1
+
+ DataCardKey12 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "MembershipPlan", "Membership Plan:", Parent.DisplayName)
+ Width: =(Parent.Width - 60) * 0.4
+ Wrap: =false
+ X: =30
+ Y: =10 + (DataCardValue12.Height / 2) - (Self.Height / 2)
+ ZIndex: =1
+
+ DataCardValue12 As combobox:
+ BorderColor: =If(IsBlank(Parent.Error), Parent.BorderColor, Color.Red)
+ ChevronBackground: =RGBA(30, 45, 62, 1)
+ ChevronDisabledBackground: =RGBA(244, 244, 244, 1)
+ ChevronDisabledFill: =RGBA(166, 166, 166, 1)
+ ChevronFill: =RGBA(218, 218, 218, 1)
+ ChevronHoverBackground: =RGBA(67, 85, 106, 1)
+ ChevronHoverFill: =RGBA(218, 218, 218, 1)
+ Color: =RGBA(255, 255, 255, 1)
+ DefaultSelectedItems: =Parent.Default
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ DisplayFields: =["Value"]
+ DisplayMode: =Parent.DisplayMode
+ Fill: =RGBA(30, 45, 62, 1)
+ Font: =Font.'Segoe UI'
+ HoverBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverColor: =RGBA(255, 255, 255, 1)
+ HoverFill: =RGBA(67, 85, 106, 1)
+ Items: =Choices([@ListVariables].'MembershipPlan')
+ PaddingLeft: =If(Self.DisplayMode = DisplayMode.Edit, 5, 0)
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ SearchFields: =["Value"]
+ SearchItems: =Choices(ListVariables.MembershipPlan,DataCardValue12.SearchText)
+ SelectionColor: =RGBA(30, 45, 62, 1)
+ SelectionFill: =RGBA(0, 188, 242, 1)
+ SelectMultiple: =false
+ Size: =13
+ Width: =(Parent.Width - 60) * 0.6
+ X: =DataCardKey12.X + DataCardKey12.Width
+ Y: =10
+ ZIndex: =2
+
+ ErrorMessage6 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 88, 78, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(255, 88, 78, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =10
+ Live: =Live.Assertive
+ PaddingBottom: =0
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Error
+ Visible: =Parent.DisplayMode=DisplayMode.Edit
+ Width: =Parent.Width - 60
+ X: =30
+ Y: =DataCardValue12.Y + DataCardValue12.Height
+ ZIndex: =3
+
+ StarVisible6 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =DataCardKey12.Height
+ PaddingLeft: =0
+ Size: =13
+ Text: ="*"
+ Visible: =And(Parent.Required, Parent.DisplayMode=DisplayMode.Edit)
+ Width: =30
+ Wrap: =false
+ Y: =DataCardKey12.Y
+ ZIndex: =4
+
+ "'Name :_DataCard2' As typedDataCard.textualViewCard":
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="Title"
+ Default: =ThisItem.Title
+ DisplayMode: =DisplayMode.View
+ DisplayName: =DataSourceInfo([@'ListVariables'],DataSourceInfo.DisplayName,'Title')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =40
+ Required: =true
+ Width: =665
+ X: =0
+ Y: =0
+ ZIndex: =8
+
+ DataCardKey1 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: =If(Parent.DisplayName = "Title", "Name", Parent.DisplayName)
+ Width: =(Parent.Width - 60) * 0.4
+ Wrap: =false
+ X: =30
+ Y: =10 + (DataCardValue1.Height / 2) - (Self.Height / 2)
+ ZIndex: =1
+
+ DataCardValue1 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisplayMode: =Parent.DisplayMode
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ Height: =27
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Default
+ Width: =(Parent.Width - 60) * 0.6
+ X: =DataCardKey1.X + DataCardKey1.Width
+ Y: =10
+ ZIndex: =2
+
+ "'Phone Number:_DataCard1' As typedDataCard.textualViewCard":
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="Phone"
+ Default: =ThisItem.PhoneNumber
+ DisplayMode: =DisplayMode.View
+ DisplayName: =DataSourceInfo([@'ListVariables'],DataSourceInfo.DisplayName,'PhoneNumber')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =40
+ Required: =true
+ Width: =665
+ X: =1
+ Y: =0
+ ZIndex: =8
+
+ DataCardKey10 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |
+ =If(Parent.DisplayName = "PhoneNumber", "Phone Number:", Parent.DisplayName)
+ Width: =(Parent.Width - 60) * 0.4
+ Wrap: =false
+ X: =30
+ Y: =10 + (DataCardValue10.Height / 2) - (Self.Height / 2)
+ ZIndex: =1
+
+ DataCardValue10 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisplayMode: =Parent.DisplayMode
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ Height: =27
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Default
+ Width: =(Parent.Width - 60) * 0.6
+ X: =DataCardKey10.X + DataCardKey10.Width
+ Y: =10
+ ZIndex: =2
+
+ "'E-mail Address :_DataCard1' As typedDataCard.textualViewCard":
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="E_x002d_mail"
+ Default: =ThisItem.'EmailAddress'
+ DisplayMode: =DisplayMode.View
+ DisplayName: =DataSourceInfo([@'ListVariables'],DataSourceInfo.DisplayName,'EmailAddress')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =40
+ Required: =true
+ Width: =665
+ X: =2
+ Y: =0
+ ZIndex: =8
+
+ DataCardKey11 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |-
+ =If(Parent.DisplayName = "EmailAddress", "E-mail Address:", Parent.DisplayName)
+ Width: =(Parent.Width - 60) * 0.4
+ Wrap: =false
+ X: =30
+ Y: =10 + (DataCardValue11.Height / 2) - (Self.Height / 2)
+ ZIndex: =1
+
+ DataCardValue11 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisplayMode: =Parent.DisplayMode
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ Height: =27
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Default
+ Width: =(Parent.Width - 60) * 0.6
+ X: =DataCardKey11.X + DataCardKey11.Width
+ Y: =10
+ ZIndex: =2
+
+ "'Date :_DataCard2' As typedDataCard.textualViewCard":
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="Date"
+ Default: =ThisItem.Date
+ DisplayMode: =DisplayMode.View
+ DisplayName: =DataSourceInfo([@'ListVariables'],DataSourceInfo.DisplayName,'Date')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =40
+ Required: =true
+ Width: =665
+ X: =0
+ Y: =1
+ ZIndex: =8
+
+ DataCardKey8 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: =Parent.DisplayName
+ Width: =(Parent.Width - 60) * 0.4
+ Wrap: =false
+ X: =30
+ Y: =10 + (DataCardValue8.Height / 2) - (Self.Height / 2)
+ ZIndex: =1
+
+ DataCardValue8 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisplayMode: =Parent.DisplayMode
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ Height: =27
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Default
+ Width: =(Parent.Width - 60) * 0.6
+ X: =DataCardKey8.X + DataCardKey8.Width
+ Y: =10
+ ZIndex: =2
+
+ "'Due Date :_DataCard1' As typedDataCard.textualViewCard":
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.Solid
+ DataField: ="Due_x0020_Date"
+ Default: =ThisItem.DueDate
+ DisplayMode: =DisplayMode.View
+ DisplayName: =DataSourceInfo([@'ListVariables'],DataSourceInfo.DisplayName,'DueDate')
+ Fill: =RGBA(0, 0, 0, 0)
+ Height: =40
+ Required: =false
+ Width: =665
+ X: =1
+ Y: =8
+ ZIndex: =8
+
+ DataCardKey13 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =34
+ PaddingLeft: =0
+ Size: =13
+ Text: |
+ =If(Parent.DisplayName = "DueDate", "Due Date:", Parent.DisplayName)
+ Width: =(Parent.Width - 60) * 0.4
+ Wrap: =false
+ X: =30
+ Y: =10 + (DataCardValue13.Height / 2) - (Self.Height / 2)
+ ZIndex: =1
+
+ DataCardValue13 As label:
+ AutoHeight: =true
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisplayMode: =Parent.DisplayMode
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ Height: =27
+ PaddingLeft: =0
+ PaddingRight: =0
+ PaddingTop: =0
+ Size: =13
+ Text: =Parent.Default
+ Width: =(Parent.Width - 60) * 0.6
+ X: =DataCardKey13.X + DataCardKey13.Width
+ Y: =10
+ ZIndex: =2
+
+ Icon2 As icon.AddUser:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(220, 220, 220, 1)
+ DisabledFill: =RGBA(0, 0, 0, 0)
+ FocusedBorderThickness: =4
+ Height: =105
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ HoverFill: =RGBA(0, 0, 0, 0)
+ Icon: =Icon.AddUser
+ OnSelect: =Navigate(EditScreen);NewForm(EditForm)
+ PressedBorderColor: =RGBA(0, 0, 0, 0)
+ PressedColor: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ PressedFill: =RGBA(0, 0, 0, 0)
+ Tooltip: ="Register New Member"
+ Width: =92
+ X: =1271
+ ZIndex: =8
+
+ Button3 As button:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ Color: =RGBA(30, 45, 62, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ Fill: =RGBA(0, 188, 242, 1)
+ FocusedBorderColor: =ColorFade(Self.Fill, 75%)
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Semibold
+ Height: =51
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverColor: =RGBA(30, 45, 62, 1)
+ HoverFill: =ColorFade(RGBA(0, 188, 242, 1), 10%)
+ OnSelect: |
+ =Navigate(EditDetailsScreen, ScreenTransition.Fade, { SelectedItem: Gallery1.Selected })
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 50%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ RadiusBottomLeft: =50
+ RadiusBottomRight: =50
+ RadiusTopLeft: =50
+ RadiusTopRight: =50
+ Size: =15
+ Text: ="Edit"
+ Tooltip: ="Edit Details"
+ Visible: |-
+ =If(IsBlank(Gallery1.Selected), false ,// If no name is selected, make the button invisible
+ true // If a name is selected, make the button visible
+ )
+ Width: =117
+ X: =1218
+ Y: =198
+ ZIndex: =9
+
+ DeletePopup As group:
+ Height: =5
+ Width: =5
+ X: =40
+ Y: =40
+ ZIndex: =16
+
+ Rectangle3 As rectangle:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ DisabledFill: =RGBA(166, 166, 166, 1)
+ Fill: =RGBA(0, 188, 242, 0.5)
+ FocusedBorderThickness: =4
+ Height: =765
+ HoverFill: =RGBA(0, 188, 242, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ Visible: =varShowDeletePopup
+ Width: =1366
+ Y: =3
+ ZIndex: =10
+
+ Rectangle5 As rectangle:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ DisabledFill: =RGBA(166, 166, 166, 1)
+ Fill: =RGBA(255, 255, 255, 1)
+ FocusedBorderThickness: =4
+ Height: =212
+ HoverFill: =RGBA(0, 188, 242, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ Visible: =varShowDeletePopup
+ Width: =610
+ X: =352
+ Y: =215
+ ZIndex: =11
+
+ Label1 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(246, 88, 16, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ Fill: =RGBA(0, 188, 242, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Bold
+ Height: =32
+ Size: =20
+ Text: ="Delete Record"
+ Visible: =varShowDeletePopup
+ Width: =610
+ X: =352
+ Y: =198
+ ZIndex: =12
+
+ Label2 As label:
+ Align: =Align.Center
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(0, 0, 0, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Bold
+ Height: =37
+ Size: =15
+ Text: ="Are you sure you want to delete this record?"
+ Visible: =varShowDeletePopup
+ Width: =477
+ X: =424
+ Y: =249
+ ZIndex: =13
+
+ Button4 As button:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ Color: =RGBA(30, 45, 62, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ Fill: =RGBA(0, 188, 242, 1)
+ FocusedBorderColor: =ColorFade(Self.Fill, 75%)
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Bold
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverColor: =RGBA(30, 45, 62, 1)
+ HoverFill: =ColorFade(RGBA(0, 188, 242, 1), 10%)
+ OnSelect: =Set(varShowDeletePopup, false);
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 50%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ RadiusBottomLeft: =50
+ RadiusBottomRight: =50
+ RadiusTopLeft: =50
+ RadiusTopRight: =50
+ Size: =15
+ Text: ="No"
+ Visible: =varShowDeletePopup
+ Width: =102
+ X: =424
+ Y: =353
+ ZIndex: =14
+
+ Button4_1 As button:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ Color: =RGBA(30, 45, 62, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ Fill: =RGBA(0, 188, 242, 1)
+ FocusedBorderColor: =ColorFade(Self.Fill, 75%)
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Bold
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverColor: =RGBA(30, 45, 62, 1)
+ HoverFill: =ColorFade(RGBA(0, 188, 242, 1), 10%)
+ OnSelect: =Remove('ListVariables',Gallery1.Selected);Set(varShowDeletePopup, false)
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 50%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ RadiusBottomLeft: =50
+ RadiusBottomRight: =50
+ RadiusTopLeft: =50
+ RadiusTopRight: =50
+ Size: =15
+ Text: ="Yes"
+ Visible: =varShowDeletePopup
+ Width: =102
+ X: =729
+ Y: =353
+ ZIndex: =15
+
+ Header As group:
+ Height: =5
+ Width: =5
+ X: =40
+ Y: =40
+ ZIndex: =18
+
+ Rectangle1 As rectangle:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ DisabledFill: =RGBA(166, 166, 166, 1)
+ Fill: =RGBA(0, 188, 242, 1)
+ FocusedBorderThickness: =4
+ Height: =105
+ HoverFill: =RGBA(0, 188, 242, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ Width: =1366
+ ZIndex: =1
+
+ Image3 As image:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledFill: =RGBA(0, 0, 0, 0)
+ FocusedBorderThickness: =4
+ Height: =105
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverFill: =RGBA(0, 0, 0, 0)
+ Image: ='703 FITNESS'
+ PressedBorderColor: =RGBA(0, 0, 0, 0)
+ PressedFill: =RGBA(0, 0, 0, 0)
+ Width: =125
+ ZIndex: =16
+
+ Label3 As label:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Lato Light'
+ FontWeight: =FontWeight.Bold
+ Height: =84
+ Size: =50
+ Text: ="703 FITNESS"
+ Width: =537
+ X: =110
+ Y: =21
+ ZIndex: =17
+
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/Screen2.fx.yaml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/Screen2.fx.yaml
new file mode 100644
index 00000000..1a6927cc
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/Screen2.fx.yaml
@@ -0,0 +1,130 @@
+"Screen2 As screen.'tabletLayout_Success_ver3.0'":
+ Fill: =RGBA(30, 45, 62, 1)
+ LoadingSpinnerColor: =RGBA(0, 188, 242, 1)
+
+ iconCircle1 As circle.Circle:
+ BorderColor: =RGBA(85, 106, 129, 1)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ DisabledFill: =RGBA(0, 188, 242, 1)
+ Fill: =RGBA(0, 188, 242, 1)
+ Height: =270
+ HoverFill: =RGBA(0, 188, 242, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ Width: =269
+ X: =523
+ Y: =286
+ ZIndex: =1
+
+ iconCheck1 As icon.Check:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(220, 220, 220, 1)
+ Height: =270
+ Icon: =Icon.Check
+ PaddingBottom: =Self.PaddingTop
+ PaddingLeft: =Self.PaddingTop
+ PaddingRight: =Self.PaddingTop
+ PaddingTop: =24
+ PressedFill: =RGBA(0, 0, 0, 0)
+ Width: =269
+ X: =523
+ Y: =286
+ ZIndex: =2
+
+ LblSuccessMsg1 As label:
+ Align: =Align.Center
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Bold
+ Height: =116
+ Size: =25
+ Text: ="Successfully Registered"
+ Width: =1081
+ X: =117
+ Y: =137
+ ZIndex: =3
+
+ Button2 As button:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ Color: =RGBA(30, 45, 62, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ DisabledFill: =RGBA(244, 244, 244, 1)
+ Fill: =RGBA(0, 188, 242, 1)
+ FocusedBorderColor: =ColorFade(Self.Fill, 75%)
+ Font: =Font.'Segoe UI'
+ FontWeight: =FontWeight.Bold
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverColor: =RGBA(30, 45, 62, 1)
+ HoverFill: =ColorFade(RGBA(0, 188, 242, 1), 10%)
+ OnSelect: =Navigate(Screen1)
+ PressedBorderColor: =ColorFade(RGBA(0, 188, 242, 1), 50%)
+ PressedColor: =RGBA(30, 45, 62, 1)
+ PressedFill: =ColorFade(RGBA(0, 188, 242, 1), 30%)
+ RadiusBottomLeft: =50
+ RadiusBottomRight: =50
+ RadiusTopLeft: =50
+ RadiusTopRight: =50
+ Size: =20
+ Text: ="Ok"
+ X: =577
+ Y: =655
+ ZIndex: =6
+
+ Header_1 As group:
+ Height: =5
+ Width: =5
+ X: =40
+ Y: =40
+ ZIndex: =10
+
+ Rectangle1_2 As rectangle:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ DisabledFill: =RGBA(166, 166, 166, 1)
+ Fill: =RGBA(0, 188, 242, 1)
+ FocusedBorderThickness: =4
+ Height: =105
+ HoverFill: =RGBA(0, 188, 242, 1)
+ PressedFill: =RGBA(0, 188, 242, 1)
+ Width: =1366
+ ZIndex: =7
+
+ Image3_2 As image:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledFill: =RGBA(0, 0, 0, 0)
+ FocusedBorderThickness: =4
+ Height: =105
+ HoverBorderColor: =RGBA(0, 0, 0, 0)
+ HoverFill: =RGBA(0, 0, 0, 0)
+ Image: ='703 FITNESS'
+ PressedBorderColor: =RGBA(0, 0, 0, 0)
+ PressedFill: =RGBA(0, 0, 0, 0)
+ Width: =125
+ ZIndex: =8
+
+ Label3_2 As label:
+ BorderColor: =RGBA(0, 0, 0, 0)
+ BorderStyle: =BorderStyle.None
+ BorderThickness: =2
+ Color: =RGBA(255, 255, 255, 1)
+ DisabledBorderColor: =RGBA(0, 0, 0, 0)
+ DisabledColor: =RGBA(166, 166, 166, 1)
+ FocusedBorderThickness: =4
+ Font: =Font.'Lato Light'
+ FontWeight: =FontWeight.Bold
+ Height: =84
+ Size: =50
+ Text: ="703 FITNESS"
+ Width: =537
+ X: =110
+ Y: =21
+ ZIndex: =9
+
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/Themes.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/Themes.json
new file mode 100644
index 00000000..0e4246fc
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/Src/Themes.json
@@ -0,0 +1,4976 @@
+{
+ "CurrentTheme": "officeDarkBlueTheme",
+ "CustomThemes": [
+ {
+ "name": "defaultTheme",
+ "palette": [
+ {
+ "name": "ScreenBkgColor",
+ "type": "c",
+ "value": "%Color.RESERVED%.White"
+ },
+ {
+ "name": "InvertedBkgColor",
+ "type": "c",
+ "value": "RGBA(56, 96, 178, 1)"
+ },
+ {
+ "name": "PrimaryColor1",
+ "type": "c",
+ "value": "RGBA(56, 96, 178, 1)"
+ },
+ {
+ "name": "PrimaryColor2",
+ "type": "c",
+ "value": "RGBA(0, 18, 107, 1)"
+ },
+ {
+ "name": "PrimaryColor3",
+ "type": "c",
+ "value": "RGBA(186, 202, 226, 1)"
+ },
+ {
+ "name": "PrimaryColor1Light",
+ "type": "c",
+ "value": "RGBA(56, 96, 178, .2)"
+ },
+ {
+ "name": "PrimaryColor2Light",
+ "type": "c",
+ "value": "RGBA(0, 18, 107, .2)"
+ },
+ {
+ "name": "PrimaryColor3Light",
+ "type": "c",
+ "value": "RGBA(186, 202, 226, .2)"
+ },
+ {
+ "name": "PrimaryColor3Fade",
+ "type": "c",
+ "value": "ColorFade(RGBA(186, 202, 226, 1), 70%)"
+ },
+ {
+ "name": "Transparency",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "name": "TextMainColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 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(117, 117, 117, 1)"
+ },
+ {
+ "name": "InputBkgColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "InputTextColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "name": "InputBorderColor",
+ "type": "c",
+ "value": "RGBA(0, 18, 107, 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": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "DisabledBorderColor",
+ "type": "c",
+ "value": "RGBA(166, 166, 166, 1)"
+ },
+ {
+ "name": "DisabledTextMainColor",
+ "type": "c",
+ "value": "RGBA(166, 166, 166, 1)"
+ },
+ {
+ "name": "DisabledInputBkgColor",
+ "type": "c",
+ "value": "RGBA(244, 244, 244, 1)"
+ },
+ {
+ "name": "DisabledButtonBkgColor",
+ "type": "c",
+ "value": "RGBA(244, 244, 244, 1)"
+ },
+ {
+ "name": "HoverButtonBkgColor",
+ "type": "c",
+ "value": "ColorFade(RGBA(56, 96, 178, 1), -20%)"
+ },
+ {
+ "name": "HoverCancelButtonBkgColor",
+ "type": "c",
+ "value": "ColorFade(RGBA(62, 96, 170, 1), 20%)"
+ },
+ {
+ "name": "HoverInputBkgColor",
+ "type": "c",
+ "value": "RGBA(186, 202, 226, 1)"
+ },
+ {
+ "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(168, 0, 0, 1)"
+ },
+ {
+ "name": "ReservedDisabledStatusColor",
+ "type": "c",
+ "value": "RGBA(193, 193, 193, 1)"
+ },
+ {
+ "name": "ReservedWhiteColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "ReservedGrayColor",
+ "type": "c",
+ "value": "RGBA(240, 240, 240, 1)"
+ },
+ {
+ "name": "ReservedBlackColor",
+ "type": "c",
+ "value": "RGBA(47, 41, 43, 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": "TextTitleFontSize_galleryLayouts_ver5",
+ "type": "n",
+ "value": "14"
+ },
+ {
+ "name": "TextSubtitleFontSize_galleryLayouts_ver5",
+ "type": "n",
+ "value": "12"
+ },
+ {
+ "name": "TextContentFontSize_galleryLayouts_ver5",
+ "type": "n",
+ "value": "12"
+ },
+ {
+ "name": "DividerColor2020",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "TextTitleColor_galleryLayouts_ver5",
+ "type": "c",
+ "value": "RGBA(50, 49, 48, 1)"
+ },
+ {
+ "name": "TableNameLabelPadding_copilotAppSinglePage",
+ "type": "n",
+ "value": "16"
+ },
+ {
+ "name": "SearchContainerFill_copilotAppPage",
+ "type": "c",
+ "value": "RGBA(245, 245, 245, 1)"
+ },
+ {
+ "name": "ContainerRadius",
+ "type": "n",
+ "value": "4"
+ },
+ {
+ "name": "TextHeaderFontSize2020",
+ "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)"
+ },
+ {
+ "name": "DatePickerSelectedColor",
+ "type": "c",
+ "value": "RGBA(37, 70, 148, 1)"
+ },
+ {
+ "name": "DatePickerHeaderColor",
+ "type": "c",
+ "value": "RGBA(68, 97, 165, 1)"
+ },
+ {
+ "name": "NoAttachmentPaddingLeft",
+ "phoneValue": "20",
+ "type": "n",
+ "value": "12"
+ },
+ {
+ "name": "DefaultSize",
+ "phoneValue": "24",
+ "type": "n",
+ "value": "14"
+ },
+ {
+ "name": "DefaultSize2",
+ "type": "n",
+ "value": "13"
+ },
+ {
+ "name": "DropTargetBorderColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "name": "DropTargetBackgroundColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 0.8)"
+ },
+ {
+ "name": "DropTargetTextColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "name": "DropTargetBorderThickness",
+ "type": "n",
+ "value": "2"
+ }
+ ],
+ "styles": [
+ {
+ "controlTemplateName": "screen",
+ "name": "defaultScreenStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.ScreenBkgColor%"
+ },
+ {
+ "property": "LoadingSpinnerColor",
+ "value": "%Palette.PrimaryColor1%"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "LineHeight",
+ "value": "1.2"
+ },
+ {
+ "property": "Overflow",
+ "value": "%Overflow.RESERVED%.Hidden"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "5"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "5"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "5"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "5"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "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": "basicNoSizeWeightColorLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ }
+ ]
+ },
+ {
+ "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": "titleLabelStyle_galleryLayouts_ver5",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextTitleColor_galleryLayouts_ver5%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextTitleFontSize_galleryLayouts_ver5%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "subtitleLabelStyle_galleryLayouts_ver5",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextSubtitleFontSize_galleryLayouts_ver5%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "contentLabelStyle_galleryLayouts_ver5",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextContentFontSize_galleryLayouts_ver5%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "dividerStyle2020",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.DividerColor2020%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "tableNameLabelStyle_copilotAppSinglePage",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedWhiteColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "%Palette.TableNameLabelPadding_copilotAppSinglePage%"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "%Palette.TableNameLabelPadding_copilotAppSinglePage%"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "%Palette.TableNameLabelPadding_copilotAppSinglePage%"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "%Palette.TableNameLabelPadding_copilotAppSinglePage%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "groupContainer",
+ "name": "searchContainerStyle_copilotAppPage",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.SearchContainerFill_copilotAppPage%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "text",
+ "name": "searchInputStyle_copilotAppPage",
+ "propertyValuesMap": [
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.None"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.Transparency%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.Transparency%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.Transparency%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "icon",
+ "name": "searchIconStyle_copilotAppPage",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.Transparency%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "icon",
+ "name": "offlineIconStyle_copilotAppSinglePage",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedWhiteColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "LineHeight",
+ "value": "1.2"
+ },
+ {
+ "property": "Overflow",
+ "value": "%Overflow.RESERVED%.Hidden"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "5"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "5"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "5"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "5"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "LineHeight",
+ "value": "1.2"
+ },
+ {
+ "property": "Overflow",
+ "value": "%Overflow.RESERVED%.Hidden"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "5"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "5"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "5"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "5"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "LineHeight",
+ "value": "1.2"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "Overflow",
+ "value": "%Overflow.RESERVED%.Hidden"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.DefaultSize%"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "FalseHoverFill",
+ "value": "ColorFade(Self.FalseFill, 15%)"
+ },
+ {
+ "property": "TrueHoverFill",
+ "value": "ColorFade(Self.TrueFill, 15%)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -15%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rating",
+ "name": "defaultRatingStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "RatingFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "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.InputTextColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "PressedColor",
+ "value": "RGBA(70, 68, 64, 1)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -30%)"
+ },
+ {
+ "property": "HoverFill",
+ "value": "ColorFade(Self.Fill, 30%)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "0"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "0"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "0"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "0"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "radio",
+ "name": "defaultRadioStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "RadioBackgroundFill",
+ "value": "%Palette.InnerCircleBkgColor%"
+ },
+ {
+ "property": "RadioBorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "RadioSelectionFill",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "10"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "0"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "10"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "0"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Left"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(242, 242, 242, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "0"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "0"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "0"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "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.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronHoverBackground",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "ChevronHoverFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronDisabledBackground",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ChevronDisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "10"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "10"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "10"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "10"
+ }
+ ]
+ },
+ {
+ "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.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronHoverBackground",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "ChevronHoverFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronDisabledBackground",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ChevronDisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "MoreItemsButtonColor",
+ "value": "Self.ChevronBackground"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "ItemSpacing",
+ "value": "0"
+ },
+ {
+ "property": "NoAttachmentsColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "NoAttachmentsPaddingLeft",
+ "value": "%Palette.NoAttachmentPaddingLeft%"
+ },
+ {
+ "property": "DropTargetBorderThickness",
+ "value": "%Palette.DropTargetBorderThickness%"
+ },
+ {
+ "property": "DropTargetBorderStyle",
+ "value": "%BorderStyle.RESERVED%.Dotted"
+ },
+ {
+ "property": "DropTargetBorderColor",
+ "value": "%Palette.DropTargetBorderColor%"
+ },
+ {
+ "property": "DropTargetBackgroundColor",
+ "value": "%Palette.DropTargetBackgroundColor%"
+ },
+ {
+ "property": "DropTargetTextColor",
+ "value": "%Palette.DropTargetTextColor%"
+ }
+ ]
+ },
+ {
+ "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.TextMainColorInverted%"
+ },
+ {
+ "property": "IconBackground",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "SelectedDateFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "HoverDateFill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "CalendarHeaderFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.DefaultSize%"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "0"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "5"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "5"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "12"
+ }
+ ]
+ },
+ {
+ "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.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronHoverBackground",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "ChevronHoverFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronDisabledBackground",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ChevronDisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "10"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "10"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "10"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "10"
+ },
+ {
+ "property": "FooterSize",
+ "value": "Self.Size - 3"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "5"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "5"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "5"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "5"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Left"
+ }
+ ]
+ },
+ {
+ "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.PrimaryColor2%"
+ },
+ {
+ "property": "HandleHoverFill",
+ "value": "Self.HandleFill"
+ },
+ {
+ "property": "HandleActiveFill",
+ "value": "Self.HandleFill"
+ },
+ {
+ "property": "RailHoverFill",
+ "value": "ColorFade(Self.RailFill, 15%)"
+ },
+ {
+ "property": "ValueHoverFill",
+ "value": "ColorFade(Self.ValueFill, 15%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "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": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "10"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Color"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Center"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "property": "Size",
+ "value": "11"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "property": "Size",
+ "value": "10"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "Size",
+ "value": "10"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.BorderColor"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "Self.BorderColor"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "timer",
+ "name": "defaultTimerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "ColorFade(Self.BorderColor, 70%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "ColorFade(Self.Fill, 90%)"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "ColorFade(Self.Fill, 70%)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Color"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.DefaultSize2%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "triangle",
+ "name": "defaultTriangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "hexagon",
+ "name": "defaultHexagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "ColorFade(Self.Color, -20%)"
+ },
+ {
+ "property": "HoverColor",
+ "value": "ColorFade(Self.Color, 20%)"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "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.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -15%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(119, 119, 119, 1)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -15%)"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "barcode",
+ "name": "defaultBarcodeStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "groupContainer",
+ "name": "defaultGroupContainerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "RadiusTopLeft",
+ "value": "%Palette.ContainerRadius%"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "%Palette.ContainerRadius%"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "%Palette.ContainerRadius%"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "%Palette.ContainerRadius%"
+ },
+ {
+ "property": "DropShadow",
+ "value": "%DropShadow.RESERVED%.Light"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "barcodeScanner",
+ "name": "defaultBarcodeScannerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "10"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Color"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Center"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "camera",
+ "name": "defaultCameraStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "inkControl",
+ "name": "defaultInkControlStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "Size",
+ "value": "2"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "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": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "10"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -20%)"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "image",
+ "name": "defaultImageStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledButtonBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -20%)"
+ },
+ {
+ "property": "HoverFill",
+ "value": "ColorFade(Self.Fill, 20%)"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "0"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "0"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "0"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "0"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "0"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "0"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "0"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "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": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "10"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -20%)"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "addMedia",
+ "name": "defaultAddMediaStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "property": "Size",
+ "value": "11"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "HoverColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(119, 119, 119, 1)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -20%)"
+ },
+ {
+ "property": "HoverFill",
+ "value": "ColorFade(Self.Fill, 20%)"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%FontWeight.RESERVED%.Semibold"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Center"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "audioPlayback",
+ "name": "defaultAudioPlaybackStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "defaultRectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "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": "grayRectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.ReservedGrayColor%"
+ },
+ {
+ "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%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%FontWeight.RESERVED%.Normal"
+ }
+ ]
+ },
+ {
+ "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.PrimaryColor1Light%"
+ },
+ {
+ "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": "microsoftStreamPlayback",
+ "name": "defaultMicrosoftStreamPlaybackStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.ScreenBkgColor%"
+ }
+ ]
+ },
+ {
+ "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%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "richTextEditor",
+ "name": "defaultRichTextEditorStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "dataTable",
+ "name": "defaultDataTableStyle",
+ "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.PrimaryColor1Light%"
+ },
+ {
+ "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%"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/TableDefinitions/ListVariables.json b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/TableDefinitions/ListVariables.json
new file mode 100644
index 00000000..1a04d158
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/TableDefinitions/ListVariables.json
@@ -0,0 +1,7 @@
+{
+ "DataEntityMetadataJson": {
+ "edbad80d-1941-4655-80b7-18b6542c364e": "{\"name\":\"edbad80d-1941-4655-80b7-18b6542c364e\",\"title\":\"gym-members-data\",\"x-ms-permission\":\"read-write\",\"x-ms-capabilities\":{\"sortRestrictions\":{\"sortable\":true,\"unsortableProperties\":[\"DueDate\",\"{Identifier}\",\"{IsFolder}\",\"{Thumbnail}\",\"{Link}\",\"{Name}\",\"{FilenameWithExtension}\",\"{Path}\",\"{FullPath}\",\"{ModerationStatus}\",\"{ModerationComment}\",\"{HasAttachments}\",\"{Attachments}\",\"{VersionNumber}\",\"{TriggerWindowStartToken}\",\"{TriggerWindowEndToken}\"]},\"filterRestrictions\":{\"filterable\":true,\"nonFilterableProperties\":[\"DueDate\",\"{Identifier}\",\"{IsFolder}\",\"{Thumbnail}\",\"{Link}\",\"{Name}\",\"{FilenameWithExtension}\",\"{Path}\",\"{FullPath}\",\"{ModerationStatus}\",\"{ModerationComment}\",\"{HasAttachments}\",\"{Attachments}\",\"{VersionNumber}\",\"{TriggerWindowStartToken}\",\"{TriggerWindowEndToken}\"]},\"isOnlyServerPagable\":true,\"filterFunctionSupport\":[\"and\",\"or\",\"eq\",\"startswith\",\"gt\",\"ge\",\"lt\",\"le\",\"ne\"],\"serverPagingOptions\":[\"top\",\"skiptoken\"],\"odataVersion\":3},\"schema\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"required\":[],\"properties\":{\"ID\":{\"title\":\"ID\",\"description\":\"List item id. Use this value for specifying the item to act on in other list related actions.\",\"type\":\"integer\",\"format\":\"int64\",\"x-ms-keyType\":\"primary\",\"x-ms-keyOrder\":1,\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"filterFunctions\":[\"eq\"]}},\"Title\":{\"title\":\"Title\",\"type\":\"string\",\"x-ms-permission\":\"read-write\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"filterFunctions\":[\"eq\",\"startswith\"]},\"maxLength\":255},\"EmailAddress\":{\"title\":\"EmailAddress\",\"type\":\"string\",\"x-ms-permission\":\"read-write\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"filterFunctions\":[\"eq\",\"startswith\"]},\"maxLength\":255},\"Date\":{\"title\":\"Date\",\"type\":\"string\",\"format\":\"date\",\"x-ms-permission\":\"read-write\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"filterFunctions\":[\"eq\",\"gt\",\"ge\",\"lt\",\"le\",\"ne\"]}},\"Gender#Id\":{\"title\":\"Gender Id\",\"type\":\"integer\",\"format\":\"int64\",\"x-ms-permission\":\"read-only\",\"x-ms-visibility\":\"internal\"},\"Gender\":{\"title\":\"Gender\",\"type\":\"object\",\"x-ms-permission\":\"read-write\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"x-ms-sp\":{\"IsChoice\":true},\"filterFunctions\":[\"eq\"]},\"properties\":{\"@odata.type\":{\"title\":\"@odata.type\",\"x-ms-visibility\":\"internal\",\"type\":\"string\",\"x-ms-permission\":\"read-write\"},\"Value\":{\"title\":\"Value\",\"type\":\"string\",\"x-ms-dynamic-values\":{\"operationId\":\"GetEntityValues\",\"parameters\":{\"dataset\":{\"parameter\":\"dataset\"},\"table\":{\"parameter\":\"table\"},\"id\":\"815f051b-7538-4df3-9e1a-e3eeb6741a47\"},\"value-path\":\"Value\",\"value-title\":\"Value\",\"value-collection\":\"value\"}},\"Id\":{\"title\":\"Id\",\"type\":\"integer\",\"format\":\"int64\",\"x-ms-visibility\":\"internal\",\"x-ms-permission\":\"read-only\"}},\"x-ms-displayFormat\":{\"titleProperty\":\"Value\"}},\"MembershipPlan#Id\":{\"title\":\"MembershipPlan Id\",\"type\":\"integer\",\"format\":\"int64\",\"x-ms-permission\":\"read-only\",\"x-ms-visibility\":\"internal\"},\"MembershipPlan\":{\"title\":\"MembershipPlan\",\"type\":\"object\",\"x-ms-permission\":\"read-write\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"x-ms-sp\":{\"IsChoice\":true},\"filterFunctions\":[\"eq\"]},\"properties\":{\"@odata.type\":{\"title\":\"@odata.type\",\"x-ms-visibility\":\"internal\",\"type\":\"string\",\"x-ms-permission\":\"read-write\"},\"Value\":{\"title\":\"Value\",\"type\":\"string\",\"x-ms-dynamic-values\":{\"operationId\":\"GetEntityValues\",\"parameters\":{\"dataset\":{\"parameter\":\"dataset\"},\"table\":{\"parameter\":\"table\"},\"id\":\"30c3ded5-ee3e-4f89-88a1-2834a491d2dd\"},\"value-path\":\"Value\",\"value-title\":\"Value\",\"value-collection\":\"value\"}},\"Id\":{\"title\":\"Id\",\"type\":\"integer\",\"format\":\"int64\",\"x-ms-visibility\":\"internal\",\"x-ms-permission\":\"read-only\"}},\"x-ms-displayFormat\":{\"titleProperty\":\"Value\"}},\"PersonalTraining#Id\":{\"title\":\"PersonalTraining Id\",\"type\":\"integer\",\"format\":\"int64\",\"x-ms-permission\":\"read-only\",\"x-ms-visibility\":\"internal\"},\"PersonalTraining\":{\"title\":\"PersonalTraining\",\"type\":\"object\",\"x-ms-permission\":\"read-write\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"x-ms-sp\":{\"IsChoice\":true},\"filterFunctions\":[\"eq\"]},\"properties\":{\"@odata.type\":{\"title\":\"@odata.type\",\"x-ms-visibility\":\"internal\",\"type\":\"string\",\"x-ms-permission\":\"read-write\"},\"Value\":{\"title\":\"Value\",\"type\":\"string\",\"x-ms-dynamic-values\":{\"operationId\":\"GetEntityValues\",\"parameters\":{\"dataset\":{\"parameter\":\"dataset\"},\"table\":{\"parameter\":\"table\"},\"id\":\"cc5d09a7-bba7-414a-88b9-79868d3bb5a0\"},\"value-path\":\"Value\",\"value-title\":\"Value\",\"value-collection\":\"value\"}},\"Id\":{\"title\":\"Id\",\"type\":\"integer\",\"format\":\"int64\",\"x-ms-visibility\":\"internal\",\"x-ms-permission\":\"read-only\"}},\"x-ms-displayFormat\":{\"titleProperty\":\"Value\"}},\"PhoneNumber\":{\"title\":\"PhoneNumber\",\"type\":\"number\",\"format\":\"double\",\"x-ms-permission\":\"read-write\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"filterFunctions\":[\"eq\",\"gt\",\"ge\",\"lt\",\"le\",\"ne\"]},\"maximum\":1.7976931348623157e+308,\"minimum\":-1.7976931348623157e+308},\"DueDate\":{\"title\":\"DueDate\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"DueDate2\":{\"title\":\"DueDate2\",\"type\":\"string\",\"format\":\"date\",\"x-ms-permission\":\"read-write\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"filterFunctions\":[\"eq\",\"gt\",\"ge\",\"lt\",\"le\",\"ne\"]}},\"OData__ColorTag\":{\"title\":\"Color Tag\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"filterFunctions\":[\"eq\",\"startswith\"]},\"maxLength\":255},\"ComplianceAssetId\":{\"title\":\"Compliance Asset Id\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"filterFunctions\":[\"eq\",\"startswith\"]},\"maxLength\":255},\"Modified\":{\"title\":\"Modified\",\"description\":\"When this item was last changed.\",\"type\":\"string\",\"format\":\"date-time\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"filterFunctions\":[\"eq\",\"gt\",\"ge\",\"lt\",\"le\",\"ne\"]}},\"Created\":{\"title\":\"Created\",\"description\":\"When this item was created.\",\"type\":\"string\",\"format\":\"date-time\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"filterFunctions\":[\"eq\",\"gt\",\"ge\",\"lt\",\"le\",\"ne\"]}},\"Author#Claims\":{\"title\":\"Created By Claims\",\"type\":\"string\",\"description\":\"Internal identifier for the user who created this item.\",\"x-ms-permission\":\"read-only\",\"x-ms-visibility\":\"internal\"},\"Author\":{\"title\":\"Created By\",\"description\":\"The user who created this item.\",\"type\":\"object\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"filterFunctions\":[\"eq\"]},\"properties\":{\"@odata.type\":{\"title\":\"@odata.type\",\"x-ms-visibility\":\"internal\",\"type\":\"string\",\"x-ms-permission\":\"read-only\"},\"Claims\":{\"title\":\"Claims\",\"type\":\"string\",\"description\":\"Internal identifier for the user who created this item.\",\"x-ms-permission\":\"read-only\",\"x-ms-dynamic-values\":{\"operationId\":\"GetEntityValues\",\"parameters\":{\"dataset\":{\"parameter\":\"dataset\"},\"table\":{\"parameter\":\"table\"},\"id\":\"1df5e554-ec7e-46a6-901d-d85a3881cb18\"},\"value-path\":\"Claims\",\"value-title\":\"DisplayName\",\"value-collection\":\"value\"}},\"DisplayName\":{\"title\":\"DisplayName\",\"type\":\"string\",\"description\":\"The name of the user who created this item.\",\"x-ms-permission\":\"read-only\",\"x-ms-capabilities\":{\"x-ms-sp\":{\"OdataQueryName\":\"Title\"},\"filterFunctions\":[\"eq\",\"startswith\"]}},\"Email\":{\"title\":\"Email\",\"type\":\"string\",\"description\":\"Email address of the user who created this item.\",\"format\":\"email\",\"x-ms-permission\":\"read-only\",\"x-ms-capabilities\":{\"x-ms-sp\":{\"OdataQueryName\":\"EMail\"},\"filterFunctions\":[\"eq\",\"startswith\"]}},\"Picture\":{\"title\":\"Picture\",\"type\":\"string\",\"description\":\"Link to a picture of the user who created this item.\",\"format\":\"uri\",\"x-ms-media-kind\":\"image\",\"x-ms-media-default-folder-path\":\"/sites/DRMARV\",\"x-ms-media-base-url\":\"https://1zvkt.sharepoint.com/sites/DRMARV\",\"x-ms-permission\":\"read-only\"},\"Department\":{\"title\":\"Department\",\"type\":\"string\",\"description\":\"Department name of the user who created this item.\",\"x-ms-permission\":\"read-only\"},\"JobTitle\":{\"title\":\"JobTitle\",\"type\":\"string\",\"description\":\"Job title of the user who created this item.\",\"x-ms-permission\":\"read-only\"}},\"x-ms-displayFormat\":{\"titleProperty\":\"DisplayName\",\"subtitleProperty\":\"Email\",\"thumbnailProperty\":\"Picture\"}},\"Editor#Claims\":{\"title\":\"Modified By Claims\",\"type\":\"string\",\"description\":\"Internal identifier for the user who last changed this item.\",\"x-ms-permission\":\"read-only\",\"x-ms-visibility\":\"internal\"},\"Editor\":{\"title\":\"Modified By\",\"description\":\"The user who last changed this item.\",\"type\":\"object\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"asc,desc\",\"x-ms-capabilities\":{\"filterFunctions\":[\"eq\"]},\"properties\":{\"@odata.type\":{\"title\":\"@odata.type\",\"x-ms-visibility\":\"internal\",\"type\":\"string\",\"x-ms-permission\":\"read-only\"},\"Claims\":{\"title\":\"Claims\",\"type\":\"string\",\"description\":\"Internal identifier for the user who last changed this item.\",\"x-ms-permission\":\"read-only\",\"x-ms-dynamic-values\":{\"operationId\":\"GetEntityValues\",\"parameters\":{\"dataset\":{\"parameter\":\"dataset\"},\"table\":{\"parameter\":\"table\"},\"id\":\"d31655d1-1d5b-4511-95a1-7a09e9b75bf2\"},\"value-path\":\"Claims\",\"value-title\":\"DisplayName\",\"value-collection\":\"value\"}},\"DisplayName\":{\"title\":\"DisplayName\",\"type\":\"string\",\"description\":\"The name of the user who last changed this item.\",\"x-ms-permission\":\"read-only\",\"x-ms-capabilities\":{\"x-ms-sp\":{\"OdataQueryName\":\"Title\"},\"filterFunctions\":[\"eq\",\"startswith\"]}},\"Email\":{\"title\":\"Email\",\"type\":\"string\",\"description\":\"Email address of the user who last changed this item.\",\"format\":\"email\",\"x-ms-permission\":\"read-only\",\"x-ms-capabilities\":{\"x-ms-sp\":{\"OdataQueryName\":\"EMail\"},\"filterFunctions\":[\"eq\",\"startswith\"]}},\"Picture\":{\"title\":\"Picture\",\"type\":\"string\",\"description\":\"Link to a picture of the user who last changed this item.\",\"format\":\"uri\",\"x-ms-media-kind\":\"image\",\"x-ms-media-default-folder-path\":\"/sites/DRMARV\",\"x-ms-media-base-url\":\"https://1zvkt.sharepoint.com/sites/DRMARV\",\"x-ms-permission\":\"read-only\"},\"Department\":{\"title\":\"Department\",\"type\":\"string\",\"description\":\"Department name of the user who last changed this item.\",\"x-ms-permission\":\"read-only\"},\"JobTitle\":{\"title\":\"JobTitle\",\"type\":\"string\",\"description\":\"Job title of the user who last changed this item.\",\"x-ms-permission\":\"read-only\"}},\"x-ms-displayFormat\":{\"titleProperty\":\"DisplayName\",\"subtitleProperty\":\"Email\",\"thumbnailProperty\":\"Picture\"}},\"{Identifier}\":{\"title\":\"Identifier\",\"description\":\"Value that can be used in file related actions for selecting a file.\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"{IsFolder}\":{\"title\":\"IsFolder\",\"description\":\"True when the item is a folder, false otherwise.\",\"type\":\"boolean\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"{Thumbnail}\":{\"title\":\"Thumbnail\",\"description\":\"URL to the thumbnails of the item in 3 different sizes, if available.\",\"type\":\"object\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\",\"properties\":{\"@odata.type\":{\"title\":\"@odata.type\",\"x-ms-visibility\":\"internal\",\"type\":\"string\",\"x-ms-permission\":\"read-only\"},\"Small\":{\"title\":\"Small\",\"type\":\"string\",\"description\":\"URL to the small, highly compressed size thumbnail of the item, if available.\",\"x-ms-permission\":\"read-only\"},\"Medium\":{\"title\":\"Medium\",\"type\":\"string\",\"description\":\"URL to the standard size thumbnail of the item, if available.\",\"x-ms-permission\":\"read-only\"},\"Large\":{\"title\":\"Large\",\"type\":\"string\",\"description\":\"URL to the largest size thumbnail of the item, if available.\",\"x-ms-permission\":\"read-only\"}}},\"{Link}\":{\"title\":\"Link to item\",\"description\":\"Link that can be used to get to the file or list item. Only people with permissions to the item will be able to open the link.\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"{Name}\":{\"title\":\"Name\",\"description\":\"File name of the item in document libraries, display name of the item in lists.\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"{FilenameWithExtension}\":{\"title\":\"File name with extension\",\"description\":\"For libraries, returns file name including extension. For lists, returns the title property.\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"{Path}\":{\"title\":\"Folder path\",\"description\":\"Path to the folder the item is in, relative to the site address.\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"{FullPath}\":{\"title\":\"Full Path\",\"description\":\"Full path of an item or a folder or a file\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"{ModerationStatus}\":{\"title\":\"Content approval status\",\"description\":\"The content approval status. It can be one of the following: Draft, Pending, Approved, or Rejected\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"{ModerationComment}\":{\"title\":\"Comments associated with the content approval of this list item\",\"description\":\"The comments associated with moderation of the list item.\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"{HasAttachments}\":{\"title\":\"Has attachments\",\"description\":\"Indicates the presence of attachments in the item.\",\"type\":\"boolean\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"{Attachments}@odata.type\":{\"title\":\"{Attachments}\",\"type\":\"string\",\"x-ms-visibility\":\"internal\",\"x-ms-permission\":\"read-write\"},\"{Attachments}\":{\"title\":\"Attachments\",\"description\":\"Never returns any data. Use Attachment endpoints to access item attachments.\",\"x-ms-permission\":\"read-write\",\"targetEntity\":\"attachments\",\"format\":\"x-ms-containedMediaEntity\",\"x-ms-visibility\":\"internal\",\"type\":\"array\",\"items\":{\"type\":\"object\",\"format\":\"x-ms-mediaEntity\",\"x-ms-sort\":\"none\",\"properties\":{\"@odata.type\":{\"title\":\"@odata.type\",\"x-ms-visibility\":\"internal\",\"type\":\"string\",\"x-ms-permission\":\"read-write\"},\"Id\":{\"title\":\"Id\",\"type\":\"string\",\"x-ms-keyType\":\"primary\",\"x-ms-keyOrder\":1,\"x-ms-permission\":\"read-only\"},\"AbsoluteUri\":{\"title\":\"AbsoluteUri\",\"type\":\"string\",\"format\":\"uri\",\"x-ms-permission\":\"read-only\"},\"DisplayName\":{\"title\":\"DisplayName\",\"type\":\"string\",\"x-ms-permission\":\"read-only\"}}},\"@odata.type\":\"#Collection(Microsoft.Azure.Connectors.SharePoint.SPListItemAttachment)\"},\"{VersionNumber}\":{\"title\":\"Version number\",\"description\":\"The version number of the file or the list item.\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"{TriggerWindowStartToken}\":{\"title\":\"Trigger Window Start Token\",\"description\":\"A token expressing the time of the last flow check. Use this if you want to check if one or more columns were modified since the last flow check.\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"},\"{TriggerWindowEndToken}\":{\"title\":\"Trigger Window End Token\",\"description\":\"A token expressing the time of the current flow check. Use this if you want to check if one or more columns were modified since the last flow check.\",\"type\":\"string\",\"x-ms-permission\":\"read-only\",\"x-ms-sort\":\"none\"}},\"x-ms-relationships\":{\"Gender\":{\"targetEntity\":\"Gender\",\"referentialConstraints\":{\"Gender#Id\":{\"referencedProperty\":\"Id\"}}},\"MembershipPlan\":{\"targetEntity\":\"MembershipPlan\",\"referentialConstraints\":{\"MembershipPlan#Id\":{\"referencedProperty\":\"Id\"}}},\"PersonalTraining\":{\"targetEntity\":\"PersonalTraining\",\"referentialConstraints\":{\"PersonalTraining#Id\":{\"referencedProperty\":\"Id\"}}},\"Author\":{\"targetEntity\":\"Author\",\"referentialConstraints\":{\"Author#Claims\":{\"referencedProperty\":\"Claims\"}}},\"Editor\":{\"targetEntity\":\"Editor\",\"referentialConstraints\":{\"Editor#Claims\":{\"referencedProperty\":\"Claims\"}}}},\"x-ms-displayFormat\":{\"propertiesDisplayOrder\":[\"Title\",\"EmailAddress\",\"Date\",\"Gender\",\"MembershipPlan\",\"PersonalTraining\",\"PhoneNumber\",\"DueDate\",\"DueDate2\",\"{Attachments}\"],\"propertiesCompactDisplayOrder\":[\"Title\",\"EmailAddress\",\"Date\",\"Gender\",\"MembershipPlan\",\"PersonalTraining\",\"PhoneNumber\",\"DueDate\",\"DueDate2\"],\"propertiesTabularDisplayOrder\":[\"Title\",\"EmailAddress\",\"Date\",\"Gender\",\"MembershipPlan\",\"PersonalTraining\",\"PhoneNumber\",\"DueDate\",\"DueDate2\"]}}},\"referencedEntities\":{\"Gender\":{\"lookupEndpoint\":{\"path\":\"/tables/edbad80d-1941-4655-80b7-18b6542c364e/entities/Gender\",\"capabilities\":{\"searchable\":true,\"requiresSearch\":false}}},\"MembershipPlan\":{\"lookupEndpoint\":{\"path\":\"/tables/edbad80d-1941-4655-80b7-18b6542c364e/entities/MembershipPlan\",\"capabilities\":{\"searchable\":true,\"requiresSearch\":false}}},\"PersonalTraining\":{\"lookupEndpoint\":{\"path\":\"/tables/edbad80d-1941-4655-80b7-18b6542c364e/entities/PersonalTraining\",\"capabilities\":{\"searchable\":true,\"requiresSearch\":false}}},\"Author\":{\"lookupEndpoint\":{\"path\":\"/tables/edbad80d-1941-4655-80b7-18b6542c364e/entities/Author\",\"capabilities\":{\"searchable\":true,\"requiresSearch\":false}}},\"Editor\":{\"lookupEndpoint\":{\"path\":\"/tables/edbad80d-1941-4655-80b7-18b6542c364e/entities/Editor\",\"capabilities\":{\"searchable\":true,\"requiresSearch\":false}}}},\"webUrl\":\"https://1zvkt.sharepoint.com/sites/DRMARV/Lists/gymmembersdata/AllItems.aspx\"}"
+ },
+ "EntityName": "ListVariables",
+ "TableName": "edbad80d-1941-4655-80b7-18b6542c364e"
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/button_2.2.0.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/button_2.2.0.xml
new file mode 100644
index 00000000..2fb31df9
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/button_2.2.0.xml
@@ -0,0 +1,230 @@
+
+
+ TODO: Need license text here.
]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+ The pressed state of the button.
+ data
+ boolean
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/circle_2.3.0.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/circle_2.3.0.xml
new file mode 100644
index 00000000..68d30e38
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/circle_2.3.0.xml
@@ -0,0 +1,151 @@
+
+
+ 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/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/combobox_2.4.0.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/combobox_2.4.0.xml
new file mode 100644
index 00000000..87ecfdd0
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/combobox_2.4.0.xml
@@ -0,0 +1,385 @@
+
+
+ TODO: Need license text here.]]>
+
+
+
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+ ComboBox navigate behavior
+ behavior
+ ##combobox_OnNavigate_DisplayName##
+ ##combobox_OnNavigate_Tooltip##
+
+
+ data
+ ##combobox_NavigateFields_DisplayName##
+ ##combobox_NavigateFields_Tooltip##
+
+
+ design
+ ##comboBox_Template_DisplayName##
+ ##comboBox_Template_Tooltip##
+
+
+ Filtered items from search
+ data
+ ##combobox_SearchItems_DisplayName##
+ ##combobox_SearchItems_Tooltip##
+
+
+ design
+
+
+ "More" button color
+ design
+ color
+ ##combobox_MoreItemsButtonColor_DisplayName##
+ ##combobox_MoreItemsButtonColor_Tooltip##
+
+
+
+ data
+ ##combobox_DisplayFields_DisplayName##
+ ##combobox_DisplayFields_Tooltip##
+
+
+ data
+ ##combobox_SearchFields_DisplayName##
+ ##combobox_SearchFields_Tooltip##
+
+
+ dropdown items
+ data
+ ##combobox_Items_DisplayName##
+
+ ##combobox_Items_Tooltip##
+
+
+ data
+ ##combobox_InputTextPlaceholder_DisplayName##
+ ##combobox_InputTextPlaceholder_Tooltip##
+
+
+ data
+ ##combobox_NoSelectionText_DisplayName##
+ ##combobox_NoSelectionText_Tooltip##
+
+
+ SelectMultiple
+ data
+ ##combobox_SelectMultiple_DisplayName##
+ ##combobox_SelectMultiple_Tooltip##
+
+
+ Default selected item
+ data
+ ##combobox_Default_DisplayName##
+ ##combobox_Default_Tooltip##
+
+
+ Selected item that is going to be passed through
+ Items
+ data
+
+
+ Data item for use when OnNavigate is called.
+ Items
+ data
+ ##combobox_NavigateItem_DisplayName##
+ ##combobox_NavigateItem_Tooltip##
+
+
+ Selected items in the control.
+ Items
+ data
+ ##combobox_SelectedItems_DisplayName##
+
+
+ Text used to search the list of items.
+ data
+ ##combobox_SearchText_DisplayName##
+ ##combobox_SearchText_Tooltip##
+
+
+ Default selected items
+ data
+ ##combobox_DefaultSelectedItems_DisplayName##
+ ##combobox_DefaultSelectedItems_Tooltip##
+
+
+ Reset
+ data
+ ##commonProperties_Reset_DisplayName##
+ ##commonProperties_Reset_Tooltip##
+
+
+ IsSearchable
+ data
+ ##combobox_IsSearchable_DisplayName##
+ ##combobox_IsSearchable_Tooltip##
+
+
+ Selected Text color
+ design
+ color
+ ##combobox_SelectionColor_DisplayName##
+ ##combobox_SelectionColor_Tooltip##
+
+
+ ComboBox Chevron Width
+ design
+ ##ComboBox_Chevron_Width_DisplayName##
+
+
+ ComboBox Flyout Maximum Height
+ design
+ ##ComboBox_Flyout_MaximumHeight_DisplayName##
+
+
+ ComboBox Chevron Fill
+ design
+ color
+ ##ComboBox_Chevron_Fill_DisplayName##
+ ##ComboBox_Chevron_Fill_Tooltip##
+
+
+ ComboBox Chevron Hover Fill
+ design
+ color
+ ##ComboBox_Chevron_HoverFill_DisplayName##
+
+
+ ComboBox Chevron Disabled Fill
+ design
+ color
+ ##ComboBox_Chevron_DisabledFill_DisplayName##
+
+
+ ComboBox Chevron Fill
+ design
+ color
+ ##ComboBox_Chevron_Background_DisplayName##
+ ##ComboBox_Chevron_Background_Tooltip##
+
+
+ ComboBox Chevron Hover Fill
+ design
+ color
+ ##ComboBox_Chevron_HoverBackground_DisplayName##
+
+
+ ComboBox chevron disabled fill
+ design
+ color
+ ##ComboBox_Chevron_DisabledBackground_DisplayName##
+
+
+ Selected fill color
+ design
+ color
+ ##combobox_SelectionFill_DisplayName##
+ ##combobox_SelectionFill_Tooltip##
+
+
+ Selection tag fill color
+ design
+ color
+ ##combobox_SelectionTagFill_DisplayName##
+ ##combobox_SelectionTagFill_Tooltip##
+
+
+ Selection tag color
+ design
+ color
+ ##combobox_SelectionTagColor_DisplayName##
+ ##combobox_SelectionTagColor_Tooltip##
+
+
+ data
+ ##combobox_MultiValueDelimiter_DisplayName##
+ ##combobox_MultiValueDelimiter_Tooltip##
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/datepicker_2.6.0.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/datepicker_2.6.0.xml
new file mode 100644
index 00000000..4725eb3a
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/datepicker_2.6.0.xml
@@ -0,0 +1,365 @@
+
+
+ TODO: Need license text here.]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+ Selected Date
+ data
+ ##Calendar_SelectedDate_DisplayName##
+
+
+ DefaultDate
+ data
+ ##Calendar_DefaultDate_DisplayName##
+
+
+ Hide Calendar
+ design
+ ##Hide_Calendar_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##
+
+
+
+ Calendar Cell Height
+ design
+ ##Calendar_CellHeight_DisplayName##
+
+
+ Calendar Width
+ design
+ ##Calendar_Width_DisplayName##
+
+
+ Date Font Size
+ design
+ ##Date_FontSize_DisplayName##
+
+
+ Calendar_Placeholde_rWidth
+ design
+ ##Calendar_PlaceholderWidth_DisplayName##
+
+
+
+
+ Icon Fill
+ design
+ color
+ ##Calendar_Icon_Fill_DisplayName##
+
+
+ Icon Background
+ design
+ color
+ ##Calendar_Icon_Background_DisplayName##
+
+
+
+ Selected Date Fill
+ design
+ ##Calendar_SelectedDateFill_DisplayName##
+
+
+ Hover Date Fill
+ design
+ ##Calendar_HoverDateFill_DisplayName##
+
+
+ Current Date Fill
+ design
+ ##Calendar_CurrentDateFill_DisplayName##
+
+
+ Calendar Header Fill
+ design
+ ##Calendar_HeaderFill_DisplayName##
+
+
+
+ Month Font Color
+ design
+ ##Calendar_MonthColor_DisplayName##
+
+
+ Week Font Color
+ design
+ ##Calendar_WeekColor_DisplayName##
+
+
+ Day Font Color
+ design
+ ##Calendar_DayColor_DisplayName##
+
+
+
+ Reset
+ data
+ ##commonProperties_Reset_DisplayName##
+ ##commonProperties_Reset_Tooltip##
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/formViewer_2.3.4.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/formViewer_2.3.4.xml
new file mode 100644
index 00000000..17ae8af1
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/formViewer_2.3.4.xml
@@ -0,0 +1,152 @@
+
+
+ TODO: Need license text here.]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ data
+ ##formProperties_DataSource_DisplayName##
+ ##formProperties_DataSource_Tooltip##
+
+
+
+
+ data
+ ##formProperties_Item_DisplayName##
+ ##formProperties_Item_Tooltip##
+
+
+ data
+ ##formProperties_DisplayMode_DisplayName##
+ ##formProperties_DisplayMode_Tooltip##
+
+
+
+ data
+ Item
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/form_2.4.2.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/form_2.4.2.xml
new file mode 100644
index 00000000..97cc9a69
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/form_2.4.2.xml
@@ -0,0 +1,236 @@
+
+
+ TODO: Need license text here.]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ data
+ ##formProperties_DataSource_DisplayName##
+ ##formProperties_DataSource_Tooltip##
+
+
+
+
+ data
+ ##formProperties_Mode_DisplayName##
+ ##formProperties_Mode_Tooltip##
+
+
+ data
+ ##formProperties_DisplayMode_DisplayName##
+ ##formProperties_DisplayMode_Tooltip##
+
+
+ data
+ ##formProperties_DefaultMode_DisplayName##
+ ##formProperties_DefaultMode_Tooltip##
+
+
+ data
+ ##formProperties_Item_DisplayName##
+ ##formProperties_Item_Tooltip##
+
+
+
+ data
+ Item
+
+
+
+ data
+ ##formProperties_Updates_DisplayName##
+
+
+
+ data
+ ##formProperties_LastSubmit_DisplayName##
+ ##formProperties_LastSubmit_Tooltip##
+
+
+ data
+ ##formProperties_Unsaved_DisplayName##
+ ##formProperties_Unsaved_Tooltip##
+
+
+ data
+ ##formProperties_Error_DisplayName##
+ ##formProperties_Error_Tooltip##
+
+
+ data
+ ##formProperties_ErrorKind_DisplayName##
+ ##formProperties_ErrorKind_Tooltip##
+
+
+ data
+ ##commonProperties_Valid_DisplayName##
+ ##commonProperties_Valid_Tooltip##
+
+
+
+ behavior
+ ##formProperties_OnSuccess_DisplayName##
+ ##formProperties_OnSuccess_Tooltip##
+
+
+ behavior
+ ##formProperties_OnReset_DisplayName##
+ ##formProperties_OnReset_Tooltip##
+
+
+ behavior
+ ##formProperties_OnFailure_DisplayName##
+ ##formProperties_OnFailure_Tooltip##
+
+
+ data
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/gallery_2.15.0.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/gallery_2.15.0.xml
new file mode 100644
index 00000000..ccbf8855
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/gallery_2.15.0.xml
@@ -0,0 +1,767 @@
+
+
+ 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
+
+
+
+ ##gallery_AllItemsCount_Description##
+ data
+
+
+ ##gallery_WrapCount_Description##
+ data
+ ##gallery_WrapCount_DisplayName##
+
+
+ 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_TemplateMaximumWidth_Description##
+ design
+ ##gallery_TemplateMaximumWidth_DisplayName##
+
+
+ ##gallery_HorizontalScrollPosition_Description##
+ design
+ ##gallery_HorizontalScrollPosition_DisplayName##
+
+
+ ##gallery_TemplateHeight_Description##
+ design
+ ##gallery_TemplateHeight_DisplayName##
+
+
+ ##gallery_TemplatePadding_Description##
+ design
+ ##gallery_TemplatePadding_DisplayName##
+ templatePadding
+ ##gallery_TemplatePadding_Tooltip##
+
+
+ ##gallery_MaxTemplateSize_Description##
+ design
+ ##gallery_MaxTemplateSize_DisplayName##
+ ##gallery_MaxTemplateSize_Tooltip##
+
+
+ ##gallery_Layout_Description##
+ design
+ layout
+ ##gallery_Layout_DisplayName##
+ ##gallery_Layout_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##
+
+
+
+ SelectionTracksMove
+ design
+
+
+ Reset
+ data
+ ##commonProperties_Reset_DisplayName##
+ ##commonProperties_Reset_Tooltip##
+
+
+
+ AutoHeight
+ design
+ ##CommonProperties_AutoHeight_DisplayName##
+ ##CommonProperties_AutoHeight_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/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/icon_2.5.0.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/icon_2.5.0.xml
new file mode 100644
index 00000000..582ecd76
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/icon_2.5.0.xml
@@ -0,0 +1,1096 @@
+
+
+ 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/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/image_2.2.3.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/image_2.2.3.xml
new file mode 100644
index 00000000..0436d5c8
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/image_2.2.3.xml
@@ -0,0 +1,345 @@
+
+
+ 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/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/label_2.5.1.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/label_2.5.1.xml
new file mode 100644
index 00000000..aa420973
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/label_2.5.1.xml
@@ -0,0 +1,340 @@
+
+
+ TODO: Need license text here.]]>
+
+
+
+
+
+
+ = 0 ? 'button' : 'presentation',
+ '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##
+
+
+
+ design
+
+
+
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/rectangle_2.3.0.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/rectangle_2.3.0.xml
new file mode 100644
index 00000000..dce0729a
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/rectangle_2.3.0.xml
@@ -0,0 +1,147 @@
+
+
+ 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/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/text_2.3.2.xml b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/text_2.3.2.xml
new file mode 100644
index 00000000..7cd35f26
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/CanvasApps/src/gym_703fitnessmembershipregapp_9e622/pkgs/text_2.3.2.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/samples/gym-management-app/sourcecode/src/Other/Customizations.xml b/samples/gym-management-app/sourcecode/src/Other/Customizations.xml
new file mode 100644
index 00000000..63ac65b9
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/Other/Customizations.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Office365 Outlook connection
+ /providers/Microsoft.PowerApps/apis/shared_office365
+ connection to Office365 Outlook
+ 1
+ 0
+ 1
+
+
+ SharePoint connection
+ /providers/Microsoft.PowerApps/apis/shared_sharepointonline
+ connection to sharepoint
+ 1
+ 0
+ 1
+
+
+
+ 1033
+
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/Other/Solution.xml b/samples/gym-management-app/sourcecode/src/Other/Solution.xml
new file mode 100644
index 00000000..159546de
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/Other/Solution.xml
@@ -0,0 +1,88 @@
+
+
+
+ GymMembershipRegistration
+
+
+
+
+ 1.0.0.5
+ 2
+
+ Marvelous_Omotoso
+
+
+
+
+ marvelousomotoso1@gmail.com
+
+ marv
+ 29000
+
+
+ 1
+ 1
+
+
+ Nigeria
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+ +2348101716016
+
+
+
+
+
+
+
+
+ 2
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/Workflows/CopyDueDate-9048F760-5A9B-EF11-8A6A-000D3A348B6B.json b/samples/gym-management-app/sourcecode/src/Workflows/CopyDueDate-9048F760-5A9B-EF11-8A6A-000D3A348B6B.json
new file mode 100644
index 00000000..919d278b
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/Workflows/CopyDueDate-9048F760-5A9B-EF11-8A6A-000D3A348B6B.json
@@ -0,0 +1,97 @@
+{
+ "properties": {
+ "connectionReferences": {
+ "shared_sharepointonline": {
+ "runtimeSource": "embedded",
+ "connection": {
+ "connectionReferenceLogicalName": "marv_SharePointconnection"
+ },
+ "api": {
+ "name": "shared_sharepointonline"
+ }
+ }
+ },
+ "definition": {
+ "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
+ "contentVersion": "1.0.0.0",
+ "parameters": {
+ "$connections": {
+ "defaultValue": {},
+ "type": "Object"
+ },
+ "$authentication": {
+ "defaultValue": {},
+ "type": "SecureObject"
+ },
+ "EnvVariables (marv_EnvVariables)": {
+ "defaultValue": "https://1zvkt.sharepoint.com/sites/DRMARV",
+ "type": "String",
+ "metadata": {
+ "schemaName": "marv_EnvVariables",
+ "description": "Environment Variables for SharePoint Site"
+ }
+ },
+ "ListVariables (marv_ListVariables)": {
+ "defaultValue": "09aa8fc4-4921-4bf3-b46b-c01e666f9949",
+ "type": "String",
+ "metadata": {
+ "schemaName": "marv_ListVariables",
+ "description": "Env Variables for SharePoint List"
+ }
+ }
+ },
+ "triggers": {
+ "When_an_item_is_created": {
+ "recurrence": {
+ "interval": 1,
+ "frequency": "Minute"
+ },
+ "splitOn": "@triggerOutputs()?['body/value']",
+ "metadata": {
+ "operationMetadataId": "6982ce17-bd8f-408b-8294-ff5f59228857"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_sharepointonline",
+ "operationId": "GetOnNewItems",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline"
+ },
+ "parameters": {
+ "dataset": "@parameters('EnvVariables (marv_EnvVariables)')",
+ "table": "@parameters('ListVariables (marv_ListVariables)')"
+ },
+ "authentication": "@parameters('$authentication')"
+ }
+ }
+ },
+ "actions": {
+ "Update_item": {
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "1f2e4c43-f1bf-4510-9647-02bca4e1f78d"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_sharepointonline",
+ "operationId": "PatchItem",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline"
+ },
+ "parameters": {
+ "dataset": "@parameters('EnvVariables (marv_EnvVariables)')",
+ "table": "@parameters('ListVariables (marv_ListVariables)')",
+ "id": "@triggerOutputs()?['body/ID']",
+ "item/Title": "@triggerOutputs()?['body/Title']",
+ "item/DueDate2": "@triggerOutputs()?['body/DueDate']"
+ },
+ "authentication": "@parameters('$authentication')"
+ }
+ }
+ },
+ "outputs": {}
+ },
+ "templateName": "78720f54e49444d0bd456477288a7ef7"
+ },
+ "schemaVersion": "1.0.0.0"
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/Workflows/CopyDueDate-9048F760-5A9B-EF11-8A6A-000D3A348B6B.json.data.xml b/samples/gym-management-app/sourcecode/src/Workflows/CopyDueDate-9048F760-5A9B-EF11-8A6A-000D3A348B6B.json.data.xml
new file mode 100644
index 00000000..1f96101d
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/Workflows/CopyDueDate-9048F760-5A9B-EF11-8A6A-000D3A348B6B.json.data.xml
@@ -0,0 +1,26 @@
+
+
+ /Workflows/CopyDueDate-9048F760-5A9B-EF11-8A6A-000D3A348B6B.json
+ 1
+ 0
+ 5
+ 0
+ 4
+ 0
+ 0
+ 0
+ 0
+ 0
+ 1
+ 2
+ 1
+ 1
+ 1.0.0.1
+ 1
+ 0
+ 1
+ none
+
+
+
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/Workflows/MembershipNotification-CC7AD75F-F442-EF11-8409-0022480BF39E.json b/samples/gym-management-app/sourcecode/src/Workflows/MembershipNotification-CC7AD75F-F442-EF11-8409-0022480BF39E.json
new file mode 100644
index 00000000..8f78b80a
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/Workflows/MembershipNotification-CC7AD75F-F442-EF11-8409-0022480BF39E.json
@@ -0,0 +1,105 @@
+{
+ "properties": {
+ "connectionReferences": {
+ "shared_office365_2": {
+ "runtimeSource": "embedded",
+ "connection": {
+ "connectionReferenceLogicalName": "marv_Office365Outlookconnection"
+ },
+ "api": {
+ "name": "shared_office365"
+ }
+ },
+ "shared_sharepointonline": {
+ "runtimeSource": "embedded",
+ "connection": {
+ "connectionReferenceLogicalName": "marv_SharePointconnection"
+ },
+ "api": {
+ "name": "shared_sharepointonline"
+ }
+ }
+ },
+ "definition": {
+ "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
+ "contentVersion": "1.0.0.0",
+ "parameters": {
+ "$connections": {
+ "defaultValue": {},
+ "type": "Object"
+ },
+ "$authentication": {
+ "defaultValue": {},
+ "type": "SecureObject"
+ },
+ "EnvVariables (marv_EnvVariables)": {
+ "defaultValue": "https://1zvkt.sharepoint.com/sites/DRMARV",
+ "type": "String",
+ "metadata": {
+ "schemaName": "marv_EnvVariables",
+ "description": "Environment Variables for SharePoint Site"
+ }
+ },
+ "ListVariables (marv_ListVariables)": {
+ "defaultValue": "09aa8fc4-4921-4bf3-b46b-c01e666f9949",
+ "type": "String",
+ "metadata": {
+ "schemaName": "marv_ListVariables",
+ "description": "Env Variables for SharePoint List"
+ }
+ }
+ },
+ "triggers": {
+ "When_a_new_item_is_created": {
+ "recurrence": {
+ "interval": 1,
+ "frequency": "Minute"
+ },
+ "splitOn": "@triggerOutputs()?['body/value']",
+ "metadata": {
+ "operationMetadataId": "32abbfe7-b0ee-4b6d-8a1a-59493b60a086"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_sharepointonline",
+ "operationId": "GetOnNewItems",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline"
+ },
+ "parameters": {
+ "dataset": "@parameters('EnvVariables (marv_EnvVariables)')",
+ "table": "@parameters('ListVariables (marv_ListVariables)')"
+ },
+ "authentication": "@parameters('$authentication')"
+ }
+ }
+ },
+ "actions": {
+ "Send_an_email_(V2)": {
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "621fc679-185e-4f69-8a81-20a1065dc0f6"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_office365_2",
+ "operationId": "SendEmailV2",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_office365"
+ },
+ "parameters": {
+ "emailMessage/To": "@triggerOutputs()?['body/EmailAddress']",
+ "emailMessage/Subject": "Welcome to 703 Fitness Gym!",
+ "emailMessage/Body": "Dear @{triggerOutputs()?['body/Title']} , On behalf of the entire team at 703 Fitness Gym, we would like to extend a warm welcome to you as our newest member! We're thrilled to have you join our fitness community and embark on this journey toward health and wellness together. Your decision to prioritize your fitness and well-being is commendable, and we're here to support you every step of the way. At 703 Fitness Gym, we're committed to providing you with top-notch facilities, expert guidance, and a welcoming environment where you can achieve your fitness goals. As a valued member, you now have access to our state-of-the-art gym equipment, a variety of fitness classes, personalized training sessions, and a supportive community of fellow members and staff.Your membership is active until [@{triggerOutputs()?['body/DueDate']}]. We're here to support you on your fitness journey. If you have any questions, feel free to ask. We look forward to seeing you at the gym!Best regards, 703 Fitness Gym ",
+ "emailMessage/Importance": "Normal"
+ },
+ "authentication": "@parameters('$authentication')"
+ }
+ }
+ },
+ "outputs": {}
+ },
+ "templateName": "3999d042ec7a49c5b91ae2229037fdb7"
+ },
+ "schemaVersion": "1.0.0.0"
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/Workflows/MembershipNotification-CC7AD75F-F442-EF11-8409-0022480BF39E.json.data.xml b/samples/gym-management-app/sourcecode/src/Workflows/MembershipNotification-CC7AD75F-F442-EF11-8409-0022480BF39E.json.data.xml
new file mode 100644
index 00000000..ab4a3d58
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/Workflows/MembershipNotification-CC7AD75F-F442-EF11-8409-0022480BF39E.json.data.xml
@@ -0,0 +1,26 @@
+
+
+ /Workflows/MembershipNotification-CC7AD75F-F442-EF11-8409-0022480BF39E.json
+ 1
+ 0
+ 5
+ 0
+ 4
+ 0
+ 0
+ 0
+ 0
+ 0
+ 1
+ 2
+ 1
+ 1
+ 1.0.0.1
+ 1
+ 0
+ 1
+ none
+
+
+
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/Workflows/SubscriptionReminder-CD7AD75F-F442-EF11-8409-0022480BF39E.json b/samples/gym-management-app/sourcecode/src/Workflows/SubscriptionReminder-CD7AD75F-F442-EF11-8409-0022480BF39E.json
new file mode 100644
index 00000000..de21f514
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/Workflows/SubscriptionReminder-CD7AD75F-F442-EF11-8409-0022480BF39E.json
@@ -0,0 +1,244 @@
+{
+ "properties": {
+ "connectionReferences": {
+ "shared_sharepointonline_1": {
+ "runtimeSource": "embedded",
+ "connection": {
+ "connectionReferenceLogicalName": "marv_SharePointconnection"
+ },
+ "api": {
+ "name": "shared_sharepointonline"
+ }
+ },
+ "shared_office365_1": {
+ "runtimeSource": "embedded",
+ "connection": {
+ "connectionReferenceLogicalName": "marv_Office365Outlookconnection"
+ },
+ "api": {
+ "name": "shared_office365"
+ }
+ }
+ },
+ "definition": {
+ "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
+ "contentVersion": "undefined",
+ "parameters": {
+ "$connections": {
+ "defaultValue": {},
+ "type": "Object"
+ },
+ "$authentication": {
+ "defaultValue": {},
+ "type": "SecureObject"
+ },
+ "EnvVariables (marv_EnvVariables)": {
+ "defaultValue": "https://1zvkt.sharepoint.com/sites/DRMARV",
+ "type": "String",
+ "metadata": {
+ "schemaName": "marv_EnvVariables",
+ "description": "Environment Variables for SharePoint Site"
+ }
+ },
+ "ListVariables (marv_ListVariables)": {
+ "defaultValue": "edbad80d-1941-4655-80b7-18b6542c364e",
+ "type": "String",
+ "metadata": {
+ "schemaName": "marv_ListVariables",
+ "description": "Env Variables for SharePoint List"
+ }
+ }
+ },
+ "triggers": {
+ "Recurrence": {
+ "recurrence": {
+ "frequency": "Day",
+ "interval": 1,
+ "timeZone": "W. Central Africa Standard Time",
+ "startTime": "2024-03-21T07:00:00Z"
+ },
+ "metadata": {
+ "operationMetadataId": "78454dd5-48f5-4d95-bc34-e7c12ab904f0"
+ },
+ "type": "Recurrence"
+ }
+ },
+ "actions": {
+ "Initialize_variable_3": {
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "dcbca610-9adf-412d-a597-50898be2b513"
+ },
+ "type": "InitializeVariable",
+ "inputs": {
+ "variables": [
+ {
+ "name": "var3days",
+ "type": "string",
+ "value": "@{addDays(utcNow(), 3, 'yyyy-MM-dd')}"
+ }
+ ]
+ },
+ "description": "addDays(utcNow(),3,'MM/dd/yyyy/')"
+ },
+ "Initialize_variable_7": {
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "4ea93a37-04b9-4f09-9f26-3d62eae4912c"
+ },
+ "type": "InitializeVariable",
+ "inputs": {
+ "variables": [
+ {
+ "name": "var7days",
+ "type": "string",
+ "value": "@{addDays(utcNow(), 7, 'yyyy-MM-dd')}"
+ }
+ ]
+ },
+ "description": "addDays(utcNow(),7,'MM/dd/yyyy/')"
+ },
+ "Get_items_3_days": {
+ "runAfter": {
+ "Initialize_variable_3": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "771eb3b9-c6b6-4003-8a5c-e927acba4f51"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_sharepointonline_1",
+ "operationId": "GetItems",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline"
+ },
+ "parameters": {
+ "dataset": "@parameters('EnvVariables (marv_EnvVariables)')",
+ "table": "@parameters('ListVariables (marv_ListVariables)')",
+ "$filter": "DueDate2 eq'@{variables('var3days')}'"
+ },
+ "authentication": "@parameters('$authentication')"
+ }
+ },
+ "Get_items_7_days": {
+ "runAfter": {
+ "Initialize_variable_7": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "f98f1e38-f52f-4e0a-ade4-ccbca2fea3c0"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_sharepointonline_1",
+ "operationId": "GetItems",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline"
+ },
+ "parameters": {
+ "dataset": "@parameters('EnvVariables (marv_EnvVariables)')",
+ "table": "@parameters('ListVariables (marv_ListVariables)')",
+ "$filter": "DueDate2 eq'@{variables('var7days')}'"
+ },
+ "authentication": "@parameters('$authentication')"
+ }
+ },
+ "For_each": {
+ "foreach": "@outputs('Get_items_3_days')?['body/value']",
+ "actions": {
+ "For_each_1": {
+ "foreach": "@outputs('Get_items_3_days')?['body/value']",
+ "actions": {
+ "For_each_2": {
+ "foreach": "@outputs('Get_items_3_days')?['body/value']",
+ "actions": {
+ "Send_an_email_(V2)": {
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "53f39a6b-5274-42c6-b387-31d09d976626"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_office365_1",
+ "operationId": "SendEmailV2",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_office365"
+ },
+ "parameters": {
+ "emailMessage/To": "@items('For_each_2')?['EmailAddress']",
+ "emailMessage/Subject": "Subscription Renewal Reminder!",
+ "emailMessage/Body": "Dear @{items('For_each_2')?['Title']} , We hope this email finds you well and enjoying your workouts at 703 Fitness Gym. We wanted to remind you that your gym membership subscription will be due for renewal in 3 days. To ensure uninterrupted access to our facilities and services, we kindly request that you renew your subscription before the due date. Renewing your membership is quick and easy. You can visit our front desk during our operating hours to make the payment, or you can conveniently renew your subscription online through our website. Subscription Due Date: @{items('For_each_2')?['DueDate']} If you have any questions or need assistance with the renewal process, please don't hesitate to reach out to our friendly staff. We're here to help! Thank you for choosing 703 Fitness Gym as your fitness destination. We look forward to continuing to support you on your fitness journey. Best regards, 703 Fitness Gym",
+ "emailMessage/Importance": "Normal"
+ },
+ "authentication": "@parameters('$authentication')"
+ }
+ }
+ },
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "875ccbb6-469a-4e51-bcf2-18da273ca892"
+ },
+ "type": "Foreach"
+ }
+ },
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "096d3810-9c98-45b4-8425-73b84f6aafa1"
+ },
+ "type": "Foreach"
+ }
+ },
+ "runAfter": {
+ "Get_items_3_days": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "a34712b2-30c7-42c8-b322-0c8a1614f1cf"
+ },
+ "type": "Foreach"
+ },
+ "For_each_3": {
+ "foreach": "@outputs('Get_items_7_days')?['body/value']",
+ "actions": {
+ "Send_an_email_(V2)_1": {
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "06b66a28-00ba-4a9d-9c9d-eff33e75bb25"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_office365_1",
+ "operationId": "SendEmailV2",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_office365"
+ },
+ "parameters": {
+ "emailMessage/To": "@items('For_each_3')?['EmailAddress']",
+ "emailMessage/Subject": "Subscription Renewal Reminder",
+ "emailMessage/Body": "Dear @{items('For_each_3')?['Title']} , We hope this email finds you well and enjoying your workouts at 703 Fitness Gym. We wanted to remind you that your gym membership subscription will be due for renewal in 7 days. To ensure uninterrupted access to our facilities and services, we kindly request that you renew your subscription before the due date. Renewing your membership is quick and easy. You can visit our front desk during our operating hours to make the payment, or you can conveniently renew your subscription online through our website. Subscription Due Date: @{items('For_each_3')?['DueDate']} If you have any questions or need assistance with the renewal process, please don't hesitate to reach out to our friendly staff. We're here to help! Thank you for choosing 703 Fitness Gym as your fitness destination. We look forward to continuing to support you on your fitness journey. Best regards, 703 Fitness Gym",
+ "emailMessage/Importance": "Normal"
+ },
+ "authentication": "@parameters('$authentication')"
+ }
+ }
+ },
+ "runAfter": {
+ "Get_items_7_days": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "f37f5b6a-971c-48f8-8165-f8f3b1f2159c"
+ },
+ "type": "Foreach"
+ }
+ }
+ },
+ "templateName": ""
+ },
+ "schemaVersion": "1.0.0.0"
+}
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/Workflows/SubscriptionReminder-CD7AD75F-F442-EF11-8409-0022480BF39E.json.data.xml b/samples/gym-management-app/sourcecode/src/Workflows/SubscriptionReminder-CD7AD75F-F442-EF11-8409-0022480BF39E.json.data.xml
new file mode 100644
index 00000000..a6d7f70b
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/Workflows/SubscriptionReminder-CD7AD75F-F442-EF11-8409-0022480BF39E.json.data.xml
@@ -0,0 +1,26 @@
+
+
+ /Workflows/SubscriptionReminder-CD7AD75F-F442-EF11-8409-0022480BF39E.json
+ 1
+ 0
+ 5
+ 0
+ 4
+ 0
+ 0
+ 0
+ 0
+ 0
+ 1
+ 2
+ 1
+ 1
+ 1.0.0.1
+ 1
+ 0
+ 1
+ none
+
+
+
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/environmentvariabledefinitions/marv_EnvVariables/environmentvariabledefinition.xml b/samples/gym-management-app/sourcecode/src/environmentvariabledefinitions/marv_EnvVariables/environmentvariabledefinition.xml
new file mode 100644
index 00000000..58844ff3
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/environmentvariabledefinitions/marv_EnvVariables/environmentvariabledefinition.xml
@@ -0,0 +1,15 @@
+
+ /providers/microsoft.powerapps/apis/shared_sharepointonline
+
+
+
+
+
+
+ 1.0.0.1
+ 1
+ 0
+ dataset
+ 0
+ 100000004
+
\ No newline at end of file
diff --git a/samples/gym-management-app/sourcecode/src/environmentvariabledefinitions/marv_ListVariables/environmentvariabledefinition.xml b/samples/gym-management-app/sourcecode/src/environmentvariabledefinitions/marv_ListVariables/environmentvariabledefinition.xml
new file mode 100644
index 00000000..3c2723e7
--- /dev/null
+++ b/samples/gym-management-app/sourcecode/src/environmentvariabledefinitions/marv_ListVariables/environmentvariabledefinition.xml
@@ -0,0 +1,18 @@
+
+ /providers/microsoft.powerapps/apis/shared_sharepointonline
+
+
+
+
+
+
+ 1.0.0.1
+ 1
+ 0
+ table
+
+ marv_EnvVariables
+
+ 0
+ 100000004
+
\ No newline at end of file