This is part of a blog series… if you came here directly you might want to read the introduction first.
The next step is to start adding some flowers to the screen, and the way we will do this is by creating 5 columns that each hold a set of flowers. The reason we do this is so that each column keeps track of moving the flowers downwards and generating new flowers and also later on when you tap on a bee and then a column it will match the bottommost flower in that column to the bee to see if there is a match.
Adding flowers
The first thing we are going to do is generate the 5 columns and each column is going to generate 3 starting flowers.
1. Create a new class Column (uncheck the Windows Store checkbox when you create the class).
2. Add a few new methods, some constants and Fi ...
Go to the complete details ...