• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/16

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

16 Cards in this Set

  • Front
  • Back
What is a class?
A class is a template from which individual objects are created. For example, the System.Windows.Forms.Form class is the template for all Form object. The FCL contains thousand of objects.
Namespaces are logical groupings of related (blank)?
class types
System is the main root (blank) of the FCL.
namespace
What is a class?
A class is a template from which individual objects are created. For example, the System.Windows.Forms.Form class is the template for all Form objects.
Classes inherit the members of their parents, limited as (blank), (blank), (blank) or (blank).
Public, Private, Protected, or Friend
VS.NET includes a Windows Forms Designer for drag-and-drop form design using the (blank) and (blank) of a form.
design view and code view
The (blank) and (blank) controls display read-only data.
Label and LinkLabel
The (blank) control can display graphical data in ICO, BMP, WMF, JPG, PNG and GIF format.
PictureBox
The (blank) control allows for selecting from a list or inputting a new value.
ComboBox
The (blank) and (blank) controls allow for single or multiline input.
TextBox and RichTextBox
The MonthCalender and DateTimePicker controls allow the selection of (blank) values.
data
The TreeView and ListView controls support (blank) node options.
hierarchical
The Timer, TrackBar, and ProgressBar controls display(blank)data.
progress-related
The HScrollBar and VScrollBar controls provide basic (blank) capability.
scrolling
The (blank) can contain any of the other controls arranged in tabbed pages.
TabControl
The (blank) component extends the properties of other controls to supprt mouse-over ToolTips.
ToolTip