.NET - Windows Controls

57.
What does the TickFrequency property of the TrackBar control do?
The TickFrequency property gets or sets a value that specifies the distance between ticks. By default, the distance between ticks is 1.

58.
Is it possible to associate a control with more than one ContextMenu control?
No, we cannot associate a control with more than one ContextMenu control.

59.
What is the difference between the Panel and GroupBox control?
The Panel and GroupBox controls both can be used as a container for other controls, such as radio buttons and check box. The main differences between a Panel and a GroupBox control are as follows:
  • Panel does not display captions, while GroupBox do
  • Panel has scrollbar, while GroupBox does not

60.
Does a Timer control appear at run time?
Timer is a component; therefore, it does not appear at run time.