Create an application to generate a .txt file that will contain a printable (using a monospaced font) lottery ticket selection card. A selection card consists of some number of squares arranged into rows and columns as required by the range of numbers to be selected. The contents of the text file should be of the form (note the position of the numbers is centered): Massachusetts Powerball
Create an application to generate a .txt file that will contain a printable (using a monospaced font) lottery ticket selection card. A
selection card consists of some number of squares arranged into rows and columns as required by the range of numbers to be
selected.
The contents of the text file should be of the form (note the position of the numbers is centered):
Massachusetts Powerball
+-------+-------+-------+-------+-------+
| | | | | |
| 1 | 2 | 3 | 4 | 5 |
| | | | | |
+-------+-------+-------+-------+-------+
| | | | | |
| 6 | 7 | 8 | 9 | 10 |
| | | | | |
+-------+-------+-------+-------+-------+
The application should collect the following information to create the selection card:
• Width of each cell (not including left and right border)
• Height of each row (not including top and bottom border)
• Character to use for creating horizontal lines (-)
• Character to use for creating vertical lines (|)
• Character to use for intersection points between vertical and horizontal lines (+)
• The largest number to be shown
• The number of columns per row
The application should have buttons for calculating the card, saving to a file, and clearing the input fields. Add a *large* TextBlock
control set with a monospaced font (Courier New, for example) to display the calculated text.
If the user selects, for example, maximum number of 63 and specifies 8 numbers per row, there will be 8 rows to display with the
last cell of the 8th row empty.
can you please provide the solution with xmal and c#
Step by step
Solved in 4 steps with 5 images