微軟認證考試070316



《微軟認證考試070316》由會員分享,可在線閱讀,更多相關《微軟認證考試070316(305頁珍藏版)》請在裝配圖網(wǎng)上搜索。
1、教育資源分享 Exam : 070-316 Title : Microsoft 70-316Developing Windows-based Applications Ver : 11-10-06 教育資源分享,構建知識庫 QUESTION 1: 070-316 You create a Windows Form named Certkiller Form.
2、 The form enables users to maintain database records in a table named Certkiller . You need to add several pairs of controls to Certkiller Form. You must fulfill the following requirements: 1. Each pair of controls must represent one column in the Certkiller table. 2. Each pair must consist of
3、a TextBox control and a Label control. 3. The LostFocus event of each TextBox control must call a procedure named UpdateDatabase. 4. Additional forms similar to Certkiller Form must be created for other tables in the database. 5. Application performance must be optimized. 6. The amount of nece
4、ssary code must be minimized. What should you do? A. Create and select a TextBox control and a Label control. Write the appropriate code in the LostFocus event of the TextBox control. Repeatedly copy and paste the controls into Certkiller Form until every column in the Certkiller table has a
5、 pair of controls. Repeat this process for the other forms. B. Add a TextBox control and a Label controls to Certkiller Form. Write the appropriate code in the LostFocus event of the TextBox control. Create a control array form the TextBox control and the Label control. At run time, add additio
6、nal pairs of controls to the control array until every column in the Certkiller table has a pair of controls. Repeat this process for the other forms. C. Create a new user control that includes a TextBox control and a Label control. Write the appropriate code in the LostFocus event of the TextBo
7、x control. For each column in the Certkiller table, add one instance of the user control to the Certkiller Form. Repeat this process for the other forms. D. Create a new ActiveX control that includes a TextBox control and a Label control. For each column in the Certkiller table, add one instanc
8、e of the ActiveX control to Certkiller Form. Repeat this process for the other forms. Answer: C Explanation: We combine multiple Windows Form controls into a single control, called user control. This is the most efficient solution to reuse functionality in this scenario. Note: Sometimes,
9、a single control does not contain all of the functionality you need. For instance, you might want a control that you can bind to a data source to display a first name, last name, and phone number, each in a separate TextBox. Although it is possible Skyloong 微軟解決方案專家認證 070-316 to i
10、mplement this logic on the form itself, it might be more efficient to create a single control that contains multiple text boxes, especially if this configuration is needed in many different applications. Controls that contain multiple Windows Forms controls bound together as a single unit are ca
11、lled user controls. Reference: 70-306/70-316 Training kit, Inheriting from UserControl, Page 345 Incorrect Answers A: Only the controls, not the code of the control will be copied. B: This is not the best solution. With a user control we could avoid writing code that are executed at run time.
12、D: ActiveX controls should be avoided in Visual Studio .NET. They are less efficient. QUESTION 2: You use Visual Studio .NET to create a Windows-based application. The application captures screen shots of a small portion of the visible screen. You create a form named Certkiller CameraForm. Y
13、ou set the Certkiller CameraForm.BackColor property to Blue. You create a button on the form to enable users to take a screen shot. Now, you need to create a transparent portion of Certkiller CameraForm to frame a small portion of the screen. Your application will capture an image of the screen
14、 inside the transparent area. The resulting appearance of CertK i ngCameraForm is shown in the exhibit: You add a Panel control to Certkiller CameraForm and name it transparentPanel. You must ensure that any underlying applications will be vis
15、ible within the panel. Which two actions should you take? (Each correct answer presents part of the Skyloong 微軟解決方案專家認證 solution. Choose two.) A. Set transparentPanel.BackColor to Red. B. Set transparentPanel.BackColor to Blue. C. Set transparentPanel.BackgroundImage to None. D.
16、Set transparentPanel.Visible to False. E. Set Certkiller CameraForm.Opacity to 0%. 070-316 F. Set Certkiller CameraForm.TransparencyKey to Red. G. Set Certkiller CameraForm.TransparencyKey to Blue. Answer: A, F Explanation: A: We set the Background color of the Panel to Red. F: We
17、then the transparency color of the Form to Red as well. This will make only the Panel transparent, since the background color of the form is Blue. QUESTION 3: You use Visual Studio .NET to create a Windows-based application. The application includes a form named Certkiller Form. Certkille
18、r Form contains 15 controls that enable users to set basic configuration options for the application. You design these controls to dynamically adjust when users resize Certkiller Form. The controls automatically update their size and position on the form as the form is resized. The initial size
19、of the form should be 650 x 700 pixels. If ConfigurationForm is resized to be smaller than 500 x 600 pixels, the controls will not be displayed correctly. You must ensure that users cannot resize ConfigurationForm to be smaller than 500 x 600 pixels. Which two actions should you take to configur
20、e Certkiller Form? (Each correct answer presents part of the solution. Choose two) A. Set the MinimumSize property to "500,600". B. Set the MinimumSize property to "650,700". C. Set the MinimizeBox property to True. D. Set the MaximumSize property to "500,600". E. Set the MaximumSize propert
21、y to "650,700". F. Set the MaximumBox property to True. G. Set the Size property to "500,600". H. Set the Size property to "650,700". Answer: A, H Explanation: A: The Form.MinimumSize Property gets or sets the minimum size the form can be Skyloong 微軟解決方案專家認證 resized to.
22、It should be set to "500, 600". 070-316 H: We use the size property to set the initial size of the form. The initial size should be set to "650, 700". Reference: .NET Framework Class Library, Form.MinimumSize Property [C#] .NET Framework Class Library, Form.Size Property [C#] Incorrect An
23、swers B: The initial size is 650 x 750. The minimal size should be set to "500,600". C: The minimize button will be displayed, but it will not affect the size of the form. D, E: There is no requirement to define a maximum size of the form. F: The maximize button will be displayed, but it will no
24、t affect the size of the form. G: The initial size should be 650 x 700, not 500 x 600. QUESTION 4: You use Visual Studio .NET to create a Windows-based application. The application includes a form named CertK Form, which displays statistical date in graph format. You use a custom graphing c
25、ontrol that does not support resizing. You must ensure that users cannot resize, minimize, or maximize CertK Form. Which three actions should you take? (Each answer presents part of the solution. Choose three) A. Set CertK Form.MinimizeBox to False. B. Set CertK Form.MaximizeBox to False. C.
26、 Set CertK Form.ControlBox to False. D. Set CertK Form.ImeMode to Disabled. E. Set CertK Form.WindowState to Maximized. F. Set CertK Form.FormBorderStyle to one of the Fixed Styles. G. Set CertK Form.GridSize to the appropriate size. Answer: A, B, F Explanation: We disable the Minimize and
27、 Maximize buttons with the CertK Form.Minimizebox and the CertK Form.Maximizebox properties. Furthermore we should use a fixed FormBorderStyle to prevent the users from manually resizing the form. Reference: Visual Basic and Visual C# Concepts, Changing the Borders of Windows Forms .NET Frame
28、work Class Library, Form.MinimizeBox Property [C#] .NET Framework Class Library, Form.MaximizeBox Property [C#] QUESTION 5: You use Visual Studio .NET to create a Windows-based application for Certkiller Inc. The application includes a form that contains several controls, including a bu
29、tton named exitButton. After you finish designing the form, you select all controls Skyloong 微軟解決方案專家認證 070-316 and then select Lock Controls from the Format menu. Later, you discover that exitButton is too small. You need to enlarge its vertical dimension with the least possible
30、effort, and without disrupting the other controls. First you select exitButton in the Windows Forms Designer. What should you do next? A. Set the Locked property to False. Set the Size property to the required size. Set the Locked property to True. B. Set the Locked property to False. Use
31、the mouse to resize the control. Set the Locked property to True. C. Set the Size property to the required size. D. Use the mouse to resize the control. Answer: C QUESTION 6: You develop a Windows control named FormattedTextBox, which will be used by many developers in your company Cert
32、killer Inc. FormattedTextBox will be updated frequently. You create a custom bitmap image named CustomControl.bmp to represent FormattedTextBox in the Visual Studio .NET toolbox. The bitmap contains the current version number of the control, and it will be updated each time the control is updat
33、ed. The bitmap will be stored in the application folder. If the bitmap is not available, the standard TextBox control bitmap must be displayed instead. Which class attribute should you add to FormattedTextBox? A. [ToolboxBitmap(typeof(TextBox))[ class FormattedTextBox B. [ToolboxBitmap(@"Cu
34、stomControl.bmp")] class FormattedTextBox C. [ToolboxBitmap(typeof(TextBox), "CustomControl.bmp")] class FormattedTextBox D. [ToolboxBitmap(typeof(TextBox))] [ToolboxBitmap(@"CustomControl.bmp")] class FormattedTextBox Answer: B Explanation: You specify a Toolbox bitmap by using the T
35、oolboxBitmapAttribute class. The ToolboxBitmapAttribute is used to specify the file that contains the bitmap. Reference: 70-306/70-316 Training kit, To provide a Toolbox bitmap for your control, Skyloong 微軟解決方案專家認證 Page 355-356 Incorrect Answers 070-316 A, C, D: If you speci
36、fy a Type (type), your control will have the same Toolbox bitmap as that of the Type (type) you specify. QUESTION 7: You use Visual Studio .NET to develop a Windows-based application that contains a single form. This form contains a Label control named labelCKValue and a TextBox control nam
37、ed textCKValue. labelCKValue displays a caption that identifies the purpose of textCKValue. You want to write code that enables users to place focus in textCKValue when they press ALT+V. This key combination should be identified to users in the display of labelCKValue. Which three actions shoul
38、d you take? (Each correct answer presents part of the solution. Choose three) A. Set labelCKValue.UseMnemonic to True. B. Set labelCKValue.Text to "&Value". C. Set labelCKValue.CausesValidation to True. D. Set textCKValue.CausesValidation to True. E. Set textCKValue.TabIndex to exactly one
39、number less than labelValue.TabIndex. F. Set textCKValue.TabIndex to exactly one number more than labelValue.TabIndex. G. Set textCKValue.Location so that textValue overlaps with labelValue on the screen. H. Add the following code to the Load event of MainForm: text.value.controls.Add (labelValu
40、e); Answer: A, B, F Explanation: If the UseMnemonic property is set to true (A) and a mnemonic character (a character preceded by the ampersand) is defined in the Text property of the Label (B), pressing ALT+ the mnemonic character sets the focus to the control that follows the Label in the
41、 tab order (F). You can use this property to provide proper keyboard navigation to the controls on your form. Note1 The UseMnemonic property gets or sets a value indicating whether the control interprets an ampersand character (&) in the control's Text property to be an access key prefix charact
42、er. UseMnemonic is set to True by default. Note 2: As a practice verify the answer yourself. Reference: NET Framework Class Library, Label.UseMnemonic Property [C#] Incorrect Answers C, D: The CausesValidation setting has no effect in this scenario. E: The Text control must tabindex that is the
43、 successor to the tabindex of the label control. G, H: This is not necessary. It has no effect here. QUESTION 8: Skyloong 微軟解決方案專家認證 070-316 You use Visual Studio .NET to create a Windows-based application called Certkiller Mortage. The main form of the application contains
44、several check boxes that correspond to application settings. One of the CheckBox controls is named advancedCheckBox. The caption for advancedCheckBox is Advanced. You must enable users to select or clear this check box by pressing ALT+A. Which two actions should you take? (Each correct answer pr
45、esents part of the solution. Choose two) A. Set advancedCheckBox.AutoCheck to True. B. Set advancedCheckBox.AutoCheck to False. C. Set advancedCheckBox.Text to "&Advanced". D. Set advancedCheckBox.Tag to "&Advanced". E. Set advancedCheckBox.CheckState to Unchecked. F. Set advancedCheckBox.C
46、heckState to Indeterminate. G. Set advancedCheckBox.Apperance to Button. H. Set advancedCheckBox.Apperance to Normal. Answer: A, C Explanation: A: The AutoCheck property must be set to True so that the CheckBox automatically is changed when the check box is accessed. C: The Text propert
47、y contains the text associated with this control. By using the &-sign we define a shortcut command for this control. "@Advanced" defines the shortcut ALT+A. Reference: .NET Framework Class Library, CheckBox Properties .NET Framework Class Library, CheckBox.AutoCheck Property [C#] Incorrect Ans
48、wers B: If AutoCheck is set to false, you will need to add code to update the Checked or CheckState values in the Click event handler. D: The Tag property only contains data about the control. E, F: The CheckState property only contains the state of the check box. G, H: The appearance property
49、only determines the appearance of a check box control. QUESTION 9: Your company Certkiller , uses Visual Studio .NET to develop internal applications. You create a Windows control that will display custom status bar information. Many different developers at Certkiller will use the control to
50、 display the same information in many different applications. The control must always be displayed at the bottom of the parent form in every application. It must always be as wide as the form. When the form is resized, the control should be resized and repositioned accordingly. What should yo
51、u do? Skyloong 微軟解決方案專家認證 070-316 A. Create a property to allow the developers to set the Dock property of the control. Set the default value of the property to AnchorStyle.Bottom. B. Create a property to allow the developer to set the Anchor property of the control. Set the def
52、ault value of the property to AnchorStyle.Bottom. C. Place the following code segment in the UserControl_Load event: this.Dock = DockStyle.Bottom; D. Place the following code segment in the UserControl_Load event: this.Anchor = AnchorStyle.Bottom; Answer: C Explanation: DockStyle.Bott
53、om docks the control to the bottom of the form. This will force the control to be as wide as to form. Furthermore the control will be resized automatically. Reference: Visual Basic and Visual C# Concepts, Aligning Your Control to the Edges of Forms NET Framework Class Library, AnchorStyles Enume
54、ration [C#] Incorrect Answers A: There is no need to the other developers to set the Dock property. B: The Dock property should be used. D: The Anchorstyle class specifies how a control anchors to the edges of its container. Not how a control is docked. QUESTION 10: As a software develope
55、r at Certkiller inc. you use Visual Studio .NET to create a Windows-based application. You need to make the application accessible to users who have low vision. These users navigate the interface by using a screen reader, which translates information about the controls on the screen into spoken w
56、ords. The screen reader must be able to identify which control currently has focus. One of the TextBox controls in your application enables users to enter their names. You must ensure that the screen reader identifies this TextBox control by speaking the word "name" when a user changes focus to
57、this control. Which property of this control should you configure? A. Tag B. Next C. Name D. AccessibleName E. AccessibleRole Answer: D Explanation: The AccessibleName property is the name that will be reported to the accessibility aids. Reference: Skyloong 微軟解決方案專家認證 070
58、-316 Visual Basic and Visual C# Concepts, Providing Accessibility Information for Controls on a Windows Form Visual Basic and Visual C# Concepts, Walkthrough: Creating an Accessible Windows Application Incorrect Answers A, B, C: The Tag, Next and Name properties of a control is not used
59、 directly by accessibility aids. E: The AccessibleRole property describes the use of the element in the user interface. QUESTION 11: You develop a Visual Studio .NET application that dynamically adds controls to its form at run time. You include the following statement at the top of your
60、file: using System.windows.Forms; In addition, you create the following code to add Button controls: Button tempButton = new Button ( ) ; tempButton.Text = NewButtonCaption; tempButton.Name = NewButtonName; tempButton.Left = NewButtonLeft; tempButton.Top= NewButtonTop; this.Controls.Add (te
61、mpButton) ; tempButton.Click += new EventHnadler (ButtonHnadler) ; Variables are passed into the routine to supply values for the Text, Name, Left, and Top properties. When you compile this code, you receive an error message indicating that ButtonHandler is not declared. You need to add a Butt
62、onHandler routine to handle the Click event for all dynamically added Button controls. Which declaration should you use for ButtonHandler? A. public void ButtonHandler() B. public void ButtonHandler(System.Windows.Forms.Button sender) C. public void ButtonHandler(System.Object sender) D. p
63、ublic void ButtonHandler(System.Windows.Forms.Button sender, System.EventArgs e) E. public void ButtonHandler(System.Object sender, System.EventArgs e) Answer: E QUESTION 12: You develop a Windows-based application that includes the following code segment. (Line numbers are included f
64、or reference only.) 01 private void Password_Validating(object sender, 02 System.ComponentModel.CancelEventArgs e) 03 { Skyloong 微軟解決方案專家認證 04 if (Valid Certkiller Password() == false) 05 { 06 //Insert new code. 07 } 08 } 070-316 You must ensure that users cannot move con
65、trol focus away from textPassword if Valid Certkiller Password returns a value of False. You will add the required code on line 6. A. e.Cancel = true; B. sender name; C. password.AcceptsTab = false ; D. password.CausesValidation = false ; Answer: A Explanation: If the input in th
66、e control does not fall within required parameters, the Cancel property within your event handler can be used to cancel the Validating event and return the focus to the control. Reference: 70-306/70-316 Training kit, The Validating and Validated Events, Page 89 Incorrect Answers B: Setting an object to an unknown variable is rubbish. C: The AccptsTab property gets or sets a value indicating whether pressing the TAB key in a multiline text box control types a TAB character in the control i
- 溫馨提示:
1: 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 專題黨課講稿:以高質(zhì)量黨建保障國有企業(yè)高質(zhì)量發(fā)展
- 廉政黨課講稿材料:堅決打好反腐敗斗爭攻堅戰(zhàn)持久戰(zhàn)總體戰(zhàn)涵養(yǎng)風清氣正的政治生態(tài)
- 在新錄用選調(diào)生公務員座談會上和基層單位調(diào)研座談會上的發(fā)言材料
- 總工會關于2025年維護勞動領域政治安全的工作匯報材料
- 基層黨建工作交流研討會上的講話發(fā)言材料
- 糧食和物資儲備學習教育工作部署會上的講話發(fā)言材料
- 市工業(yè)園區(qū)、市直機關單位、市紀委監(jiān)委2025年工作計劃
- 檢察院政治部關于2025年工作計劃
- 辦公室主任2025年現(xiàn)實表現(xiàn)材料
- 2025年~村農(nóng)村保潔員規(guī)范管理工作方案
- 在深入貫徹中央8項規(guī)定精神學習教育工作部署會議上的講話發(fā)言材料4篇
- 開展深入貫徹規(guī)定精神學習教育動員部署會上的講話發(fā)言材料3篇
- 在司法黨組中心學習組學習會上的發(fā)言材料
- 國企黨委關于推動基層黨建與生產(chǎn)經(jīng)營深度融合工作情況的報告材料
- 副書記在2025年工作務虛會上的發(fā)言材料2篇