Lesson 12 - Handling Rectangle Clicks in C# .NET WPF
In the previous lesson, Drawing on Canvas in C# .NET WPF, we started making an application for
booking cinema seats. We used Canvas
to draw the seats. In today's
C# .NET WPF tutorial, we're going to complete the application, adding seat
selection, and saving it all to a file.
Changing the Seat Status
Let's program that if a particular seat is clicked, that seat will be marked as free / occupied.
Logic
In the Cinema
class, we're going to need a method that toggles
the seat state. It'll take the seat coordinates as parameters. Since the seat is
of the bool
type, its value only needs to be negated.
public void SwitchStatus(int x, int y) { seats[x, y] = !seats[x, y]; }
That was simple.
We'll also need a method that handles clicking on the rectangles (seats). In
the DrawRectangles()
method code
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
This article is licensed: Premium, by buying this article, you agree with the terms of use.
- Unlimited and permanent access to individual lessons.
- High quality IT knowledge.
- Skills to help you get your dream and well-paid job.
Article description
Requested article covers this content:
In this C# .NET WPF tutorial, we'll complete our application for booking cinema seats. We'll change seats' status by clicking and learn to use dialogs.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.