微軟認證考試070316



《微軟認證考試070316》由會員分享,可在線閱讀,更多相關《微軟認證考試070316(153頁珍藏版)》請在裝配圖網(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. The form enables user
2、s 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 a TextBox control and
3、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 necessary code must be min
4、imized. 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 pair of controls. Re
5、peat 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 additional pairs of controls
6、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 TextBox control. For each c
7、olumn 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 instance of the ActiveX contr
8、ol 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, a single control does
9、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 implement this logic on
10、 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 called user controls. R
11、eference: 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. D: ActiveX controls sh
12、ould 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. You set the Certkiller
13、 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 inside the transparen
14、t 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 visible within the panel.
15、 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. Set transparentPanel.V
16、isible 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 then the transparency
17、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. Certkiller Form contains 15 con
18、trols 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 of the form should be
19、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 configure Certkiller Form? (Ea
20、ch 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 property to "650,700". F. Se
21、t 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. It should be set to "5
22、00, 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 Answers B: The initial
23、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 not affect the size of t
24、he 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 control that does not s
25、upport 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. Set CertK Form.Contro
26、lBox 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 Maximize buttons with
27、 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 Framework Class Library, Fo
28、rm.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 button named exitButton.
29、 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 effort, and without di
30、srupting 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 the mouse to resize th
31、e 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 Certkiller Inc. FormattedT
32、extBox 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 updated. The bitmap will be
33、 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(@"CustomControl.bmp")] cl
34、ass 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 ToolboxBitmapAttribute
35、 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 specify a Type (type), your
36、 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 named textCKValue. labelC
37、KValue 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 should you take? (Each corr
38、ect 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 number less than label
39、Value.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 (labelValue); Answer: A, B, F
40、 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 tab order (F). You ca
41、n 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 character. UseMnemonic is set
42、 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 successor to the tabi
43、ndex 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 several check boxes t
44、hat 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 presents part of the so
45、lution. 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.CheckState to Indetermi
46、nate. 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 property contains the text as
47、sociated 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 Answers B: If AutoCheck
48、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 only determines the ap
49、pearance 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 display the same in
50、formation 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 you do? Skyloong
51、 微軟解決方案專家認證 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 default value of the prop
52、erty 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.Bottom docks the control t
53、o 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 Enumeration [C#] Incorrect
54、 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 developer at Certkiller inc. y
55、ou 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 words. The screen read
56、er 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 this control. Which
57、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-316 Visual Basi
58、c 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 directly by accessib
59、ility 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 file: using System.wi
60、ndows.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 (tempButton) ; tempButto
61、n.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 ButtonHandler routine to h
62、andle 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. public void ButtonHandl
63、er(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 for reference only.) 0
64、1 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 control focus away from t
65、extPassword 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 the control does not fal
66、l 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 instead of moving the
- 溫馨提示:
1: 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
4. 未經(jīng)權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 專題黨課講稿:以高質量黨建保障國有企業(yè)高質量發(fā)展
- 廉政黨課講稿材料:堅決打好反腐敗斗爭攻堅戰(zhàn)持久戰(zhàn)總體戰(zhàn)涵養(yǎng)風清氣正的政治生態(tài)
- 在新錄用選調生公務員座談會上和基層單位調研座談會上的發(fā)言材料
- 總工會關于2025年維護勞動領域政治安全的工作匯報材料
- 基層黨建工作交流研討會上的講話發(fā)言材料
- 糧食和物資儲備學習教育工作部署會上的講話發(fā)言材料
- 市工業(yè)園區(qū)、市直機關單位、市紀委監(jiān)委2025年工作計劃
- 檢察院政治部關于2025年工作計劃
- 辦公室主任2025年現(xiàn)實表現(xiàn)材料
- 2025年~村農村保潔員規(guī)范管理工作方案
- 在深入貫徹中央8項規(guī)定精神學習教育工作部署會議上的講話發(fā)言材料4篇
- 開展深入貫徹規(guī)定精神學習教育動員部署會上的講話發(fā)言材料3篇
- 在司法黨組中心學習組學習會上的發(fā)言材料
- 國企黨委關于推動基層黨建與生產經(jīng)營深度融合工作情況的報告材料
- 副書記在2025年工作務虛會上的發(fā)言材料2篇