MTA Software Development Chapter 5
MDI
____________ applications provide their own window management functionality.
SDI
________________ applications rely on the operating system for window management.
Windows service
A ____________________ is an application that runs in the background and does not have any user interface.
Visual inheritance
___________________ allows you to reuse existing functionality and layout for Windows Forms.
Delegate definition
A delegate can be bound to any method whose signature matches that of the ______________________.
Delegates
Event handling plays a key role in user interface-based programming; through event handling, you respond to various events that are fired as a result of user actions and thus makes programs interactive. The Windows Forms event model uses .NET Framework _______________ to bind events to their respective event handlers.
Account property
The ________________ of the ServiceProcessInstaller class indicates the account type under which a Windows service will run.
Source property
The __________________ of the EventLog class is used to specify the application name to use when writing to an event log.
Multicast delegate
The ________________________ can be bound to more than one method, allowing one-to-many notifications when an event is fired.
Command-line parameters
The input for console-based applications can be provided using ___________________, or the application can interactively read characters from the console window.
Description property
Use the _____________________ of the ServiceInstaller class to specify a brief comment that explains the purpose of the service.
Windows Forms applications
_____________________ are smart client applications consisting of one or more forms that display a visual interface to the user. These applications integrate well with the operating system, use connected devices, and can work whether connected to the internet or not.
Console-based applications
__________________________ do not have a graphical user interface and use a text-mode console window to interact with the user. The applications are best suited for tasks that require minimal or no user interface.
Multiple Document Interface (MDI) applications
___________________________________ are applications in which multiple child windows reside under a single parent window.