This needs to be done in C#! It also needs to be a .NET MAUI application framework and it needs to display an error message. I have also provided some sample screenshots. Instructions Lenny’s Car Wash company has reached out to you to design a basic interface for their car wash machines. The company offers the following car wash services: · Basic Wash ($10.00 USD) · Premium Wash ($15.00 USD) · Ultra Wash ($20.00 USD) In addition to the wash tiers available above, Lenny’s also offers the following add on services: · Air Freshener ($2.00) · Vacuum Service ($2.00) · Wax On Service ($5.00) · Tire Shine Service ($5.00) The customer must select a wash tier, but add-ons are optional. Additionally, only one wash tier may be selected per order. A receipt to the customer that details the wash selected, add-ons selected, and the total cost of the purchase must be shone after selections are finalized. Front End Text, Font, and Color Details Colors: · App Background: #222233 (This can be set in the ContextPage tag at the top) · Background color for the options container: #444455 · Background color for the “Receipt” header row: #555566 · Background color for the “Total” row: #555566 · Background color for the receipt body: #444455 · Text color for the Total Amount on Receipt screen: #FFAAAA · App Title Color (“Lenny’s Car Wash): CadetBlue · Button Background Color: #779977 · Button Text Color: White · Error Message Text Color: #FF7777 Font Sizes: · “Lenny’s Car Wash” title: 50 · Header Text for Selection Screen: 25 · “Receipt” text for Receipt Screen: 25 · Body of Receipt: 20 · Total Amount Text: 22 · Error Message Text: 20 Attributes for Specific Text: 2. Lenny’s Car Wash Title: Bold, Italics 3. Buttons: Bold
Types of Loop
Loops are the elements of programming in which a part of code is repeated a particular number of times. Loop executes the series of statements many times till the conditional statement becomes false.
Loops
Any task which is repeated more than one time is called a loop. Basically, loops can be divided into three types as while, do-while and for loop. There are so many programming languages like C, C++, JAVA, PYTHON, and many more where looping statements can be used for repetitive execution.
While Loop
Loop is a feature in the programming language. It helps us to execute a set of instructions regularly. The block of code executes until some conditions provided within that Loop are true.
This needs to be done in C#! It also needs to be a .NET MAUI application framework and it needs to display an error message. I have also provided some sample screenshots.
Instructions
Lenny’s Car Wash company has reached out to you to design a basic interface for their car wash machines. The company offers the following car wash services:
· Basic Wash ($10.00 USD)
· Premium Wash ($15.00 USD)
· Ultra Wash ($20.00 USD)
In addition to the wash tiers available above, Lenny’s also offers the following add on services:
· Air Freshener ($2.00)
· Vacuum Service ($2.00)
· Wax On Service ($5.00)
· Tire Shine Service ($5.00)
The customer must select a wash tier, but add-ons are optional. Additionally, only one wash tier may be selected per order. A receipt to the customer that details the wash selected, add-ons selected, and the total cost of the purchase must be shone after selections are finalized.
Front End Text, Font, and Color Details
Colors:
· App Background: #222233 (This can be set in the ContextPage tag at the top)
· Background color for the options container: #444455
· Background color for the “Receipt” header row: #555566
· Background color for the “Total” row: #555566
· Background color for the receipt body: #444455
· Text color for the Total Amount on Receipt screen: #FFAAAA
· App Title Color (“Lenny’s Car Wash): CadetBlue
· Button Background Color: #779977
· Button Text Color: White
· Error Message Text Color: #FF7777
Font Sizes:
· “Lenny’s Car Wash” title: 50
· Header Text for Selection Screen: 25
· “Receipt” text for Receipt Screen: 25
· Body of Receipt: 20
· Total Amount Text: 22
· Error Message Text: 20
Attributes for Specific Text:
2. Lenny’s Car Wash Title: Bold, Italics
3. Buttons: Bold
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images
this needs to be aa .NET MAUI application framework, and does it have an error message?