| 1: | What is the base class for a Windows Form? |
| A1: | System::Windows::Forms::Form. |
| 2: | How is a delegate related to an event? |
| A2: | A delegate is the function type that is called to handle a specific event. |
| 3: | How are events different in MFC versus the .NET Framework? |
| A3: | Events are handled through the message map in MFC, whereas they are handled by assignment of delegates with the .NET Framework. |
| Top |