Lesson 6 & 7

docx

School

Ashworth College *

*We aren’t endorsed by this school

Course

K07V

Subject

Computer Science

Date

Dec 6, 2023

Type

docx

Pages

13

Uploaded by PrivateIronPorcupine45

Report
n 1 2.5 / 2. The G in GUI stands for: Question options: graphical. graphic. graphite. graphically. on 2 When obtaining the coordinates of the mouse, they: Question options: are always taken from the main form of the program. are relative to the control that caused the event. are taken from the center of the form. start from wherever the mouse is at that second. on 2 A __________ is a container for controls and components. Question options: property form group label on 2 A form's autogenerated GUI code is all hosted on the __________ file. Question options: designer.cs
developer.cs C#.cs partial.cs on 2 The AutoSize property is used to: Question options: change the size of the image to fit the PictureBox. change the size of the PictureBox to fit the image. find a medium between the PictureBox and the actual picture. make the picture as large as possible while still maintaining quality. on 2 A __________ control allows the programmer to group controls together, but does not include scrollbars. Question options: Label Panel Form GroupBox on 2 Many of the components used for Windows apps are defined in the namespace: Question options: System System.Windows.Forms System.Windows.UI
System.Web.UI on The __________ control typically allows a programmer to "group" options together so that no more than one option in the group can be chosen at any given time. Question options: RadioButton Panel Group Properties on 2 The __________ menu in Visual Studio provides options to manipulate the GUI layout you are creating, but it only appears when you choose a control in Design View. Question options: Format Design Build Edit on 2 In order to add or remove an event from a delegate, you would use: Question options: the Add and Remove methods. the Add and Subtract methods. the += and the -= operators.
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
Events can only be added with the += and not removed from a delegate. on 2 A __________ allows the programmer to communicate to the end user, but also provides buttons such as "OK," "Yes," "No," or even "Cancel." Question options: PropertyBox DetailBox MessageBox InfoBox on 2 In order to use modifier keys you should: Question options: use the ModifierKey event. use the KeyData property. use the ModifierKeyHandler. Modifier keys have to be dealt with manually. on 2 In order to insert a control into a Panel or GroupBox in Design mode one must: Question options: manually create the control inside the Panel or GroupBox. create a control and then drag it into the Panel or GroupBox. create a control and then set it as inside the Panel or GroupBox. group several controls and set their MainControl property to the Panel <br /> or GroupBox. on
Docking and anchoring are easy ways to: Question options: allow a form to change size without altering the form too much. prevent users from changing the layout of the window. prevent a user from resizing the form. All of the above on 2 To prevent the display of input values for sensitive data, such as a password, you can set the __________ property to True. Question options: Control isSensData UseSystemPasswordChar IsPassword on 2 You can access event information on a control by accessing MSDN help information by pressing the __________ key. Question options: F1 F5 Ctrl + F1 Shift + F1 on 2 The StretchImage property is used to: Question options:
change the size of the image to fit the PictureBox. change the size of the PictureBox to fit the image. find a medium between the PictureBox and the image. make the picture as large as possible while still maintaining quality. on 2 A(n) __________ defines the "signature" of an event, indicating what data is generated when the event occurs. Question options: handler event property delegate on 2 The U in GUI stands for: Question options: user. useful used. urgent. on 2 The __________ and __________ controls have properties such as Checked, CheckState, and ThreeState. Question options: Checked; Radio CheckBox; RadioButton
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
Radio; Ratio TextBox; Label on The use of ToolStripMenuItems in a menu control generates a __________ event. Question options: click ItemClick hover hot key on 2 The ItemSize property is used to determine: Question options: how big controls on each TabPage can be. the actual size of each TabPage. the size of the tab for each TabPage. there is no ItemSize property. on 2 The MaxDropDownItems property: Question options: sets the maximum number of items the list can hold. creates a scrollbar on the list after it exceeds the set max. creates a max to how many items the user can add to the list. can be set from 1 to 1000. on 2
A TabControl control displays several items in a tabular format on a form. Each TabControl contains a collection of __________ objects, allowing the programmer to group controls and information together in each tab. Question options: Tab TabPage Pager PagerTab on 2 The CheckedListBox control extends a __________ control by including checkboxes next to each item. Question options: DropDownList TextBox ListBox PictureBox on A menu item can be indicated as being selected by setting the __________ property to True. Question options: Disabled Checked Enabled onOff on 2 A good example of an MDI program is:
Question options: Notepad. Adobe Photoshop. Internet Explorer. All of the above on 2 A horizontal line in a menu control is called a: Question options: separator bar. HR. dash. separator. on A menu control is called a __________ in the IDE toolbox. Question options: Menu Strip MenuStrip StripMenu on A __________ control combines the features of a textbox and a drop down list. Question options: Listbox ChoiceBox
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
CheckBoxList ComboBox on 2 The DateTimePicker control has a DateTimePickerFormat property. Setting this value to __________ would allow a date such as "Friday, July 4, 2017." Question options: Long Short ToDate WriteLine on 2 The Exists method of class Directory is used to: Question options: check if a given directory has sub-directories. check if a given directory actually exists. make sure that the List has a beginning and an ending. check for an actual list by making sure the first and last elements are not the same, meaning the list only has one item in it. on The _____ property of the MonthCalendar control allows you to set the latest available date the user can choose on the calendar. Question options: DateTimePicker Date Maximum
MaxDate on 2 The syntax for adding a new item to a ListBox is: Question options: ListBox.Items.Add( &quot;item&quot; ) ListBox.Add( &quot;item&quot; ) ListBox.Items.Insert( &quot;item&quot; ) ListBox.Insert( &quot;item&quot; ) on 2 What event is generated when an MDI child is closed or activated? Question options: MdiChildStatusChanged MdiChildActivate MdiChildModified MdiChildCA on 2 An MDI application has a parent window and child windows. To establish the relationship between a parent and a child, you need to set the __________ property of a child form to an instance of the parent form. Question options: MdiParent MDI Parent isChildForm
on 2 The __________ control allows the user to view and select from multiple items in a list. Question options: DropDownList Textbox ListBox PictureBox on 2 Interacting with a __________ control generates a LinkClicked event. Question options: HyperLink LinkLabel Label HyperLabel on 2 LinkLabels are used to: Question options: organize a group of labels. bring the user to a desired location. allow many labels to be modified during runtime all at once. All of the above on 2 What is the event when a value is selected? Question options:
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
ValueChanged DateTimeModified DateModified TimeModified Done