Posts Tagged ‘70-502(C#)模擬試験 Testpassport.jp 70-502(C#)’

Microsoft MCTS 70-502(C#) 試験

September 1st, 2009

試験概要

この試験では、Visual Studio 2008 を使用して下記評価スキル表内で記載された知識と技術を評価します。

対応資格

この試験の対応資格は以下です。

MCTS: .NET Framework 3.5, Windows Presentation Foundation アプリケーション

オフィシャル マイクロソフト ラーニング プロダクト(OMLP

現時点で、日本語版対応コースは、提供しておりません

高い品質と高価値 70-502(C#) 試験の解答

 

TestPassPort 実践試験の MCTS 70-502(C#) は最も標準的な技術を正確的に書き入れ、認証した専門家と作者の出版した新製品だけを使います.

VUE/Prometric 試験番号: 70-502(C#)

試験の名称: TS: MS.NET Frmewrk3.5, Wndws Presentation Fndation App Dev

問題と解答: 88 Q&A

更新: 2009-08-18

70-502(C#): ダウンロード 70-502(C#) 試験 Software format Demo

2. You create a Windows Presentation Foundation application by using Microsoft .NET Framework 3.5.
The application is named EnterpriseApplication.exe.
You add the WindowSize parameter and the WindowPosition parameter to the Settings.settings file by
using the designer at the User Scope Level. The dimensions and position of the window are read from the
user configuration file.
The application must retain the original window size and position for each user who executes the
application.
You need to ensure that the following requirements are met:
The window dimensions for each user are saved in the user configuration file.
The user settings persist when a user exits the application.
Which configuration setting should you use?
A. private void OnClosing(object sender, System.ComponentModel.CancelEventArgs e){
Settings.Default.WindowPosition = new Point (this.Left, this.Top);
Settings.Default.WindowSize = new Size (this.Width, this.Height);
Settings.Default.Save();
}
B. private void OnClosing(object sender, System.ComponentModel.CancelEventArgs e){
RegistryKey appKey = Registry.CurrentUser.CreateSubKey(”Software\\EnterpriseApplication”);
RegistryKey settingsKey = appKey.CreateSubKey(”WindowSettings”);
RegistryKey windowPositionKey = settingsKey.CreateSubKey(”WindowPosition”);
RegistryKey windowSizeKey = settingsKey.CreateSubKey(”WindowSize”);
windowPositionKey.SetValue(”X”, this.Left);
windowPositionKey.SetValue(”Y”, this.Top);
windowSizeKey.SetValue(”Width”, this.Width);
windowSizeKey.SetValue(”Height”, this.Height);
}
C. private void OnClosing(object sender, System.ComponentModel.CancelEventArgs e){
| English | Chinese | Japan | Korean | - 4 - Test Information Co., Ltd. All rights reserved.
XmlDocument doc = new XmlDocument();
doc.Load(”EnterpriseApplication.exe.config”);
XmlNode nodePosition = doc.SelectSingleNode(”//setting[@name=\'WindowPosition\']“);
nodePosition.ChildNodes[0].InnerText = String.Format(”{0},{1}”, this.Left, this.Top);
XmlNode nodeSize = doc.SelectSingleNode(”//setting[@name=\'WindowSize\']“);
nodeSize.ChildNodes[0].InnerText = String.Format(”{0},{1}”, this.Width, this.Height);
doc.Save(”UserConfigDistractor2.exe.config”);
}
D. private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e){
StreamWriter sw = new StreamWriter(”EnterpriseApplication.exe.config”, true);
sw.WriteLine(”<EnterpriseApplication.Properties.Settings>”);
sw.WriteLine(”<setting name=\”WindowSize\” serializeAs=\”String\”>”);
sw.WriteLine(String.Format(”<value>{0},{1}</value>”, this.Width, this.Height));
sw.WriteLine(”</setting>”);
sw.WriteLine(”<setting name=\”WindowPosition\” serializeAs=\”String\”>”);
sw.WriteLine(String.Format(”<value>{0},{1}</value>”, this.Left,this.Top));
sw.WriteLine(”</setting>”);
sw.WriteLine(”</UserConfigProblem.Properties.Settings>”);
sw.Close();
}
Answer: A

Microsoft MCTS 70-502(C#) 試験

August 28th, 2009

試験番号:70-502

試験概要

この試験では、Visual Studio 2008 を使用して下記評価スキル表内で記載された知識と技術を評価します。

対応資格

この試験の対応資格は以下です。

MCTS: .NET Framework 3.5, Windows Presentation Foundation アプリケーション

オフィシャル マイクロソフト ラーニング プロダクト(OMLP

現時点で、日本語版対応コースは、提供しておりません

試験トピックス

 

受験対象者

 

この試験は、Microsoft Visual Studio 2008 および Microsoft .NET Framework 3.5 を使用して Windows ベースのアプリケーションを作成している開発環境で、チーム作業を行っている方を対象としています。受験対象者は、.NET Framework を使用した Windows ベース アプリケーションの開発における少なくとも 1 年の実務経験が必要です。また、Windows Presentation Foundation (WPF) により、以下を示す必要があります。

 

Microsoft .NET Framework 3.5 ソリューション スタックに関連する WPF を十分理解している

WPF オブジェクト モデルに対するプログラミングの経験

XAML (Extensible Application Markup Language) を使用したレイアウトの作成経験

データ ドリブンなユーザー インターフェイスの作成経験

WPF アプリケーションの展開経験

Testpassportの優勢

1、詳細があって、100%真実なレベルと並べる試験問題
2
、最新の問題資源を見せるために、定期的に問題をアップデートしています
3
、展示、ドラッグ&ドロップ、模擬問題など、様々な種類の問題スタイル
4、正解にしても、正解他の答案にしても、認定トレーナーと幾つかのグループのIT専門家が十分に解説します。
5
、認定トレーナーと幾つかのグループのIT専門家によって検証された正しい解答
6、全額返し保証:合格なくなると、全額返します。

 

TestPassPort 実践試験の MCTS 70-502(C#) は最も標準的な技術を正確的に書き入れ、認証した専門家と作者の出版した新製品だけを使います.

一回だけで成功することを保証します. MCTS 70-502(C#)(TS: MS.NET Frmewrk3.5, Wndws Presentation Fndation App Dev)仕入れのご費用を全額返して、そして無料で同価値の製品を郵送します.

1. You are creating a Windows Presentation Foundation application by using Microsoft .NET Framework
3.5.
You add a CommandBinding element to the Window element. The command has a keyboard gesture
CTRL+H. The Window contains the following MenuItem control.
<MenuItem Header=”Highlight Content”
Command=”local:CustomCommands.Highlight” />
You need to ensure that the MenuItem control is disabled and the command is not executable when the
focus shifts to a TextBox control that does not contain any text.
What should you do?
A. Set the IsEnabled property for the MenuItem control in the GotFocus event handler for the TextBox
controls.
B. Set the CanExecute property of the command to Highlight_CanExecute.
Add the following method to the code-behind file for the window.
Private Sub Highlight_CanExecute(ByVal sender As Object, _
ByVal e As CanExecuteRoutedEventArgs)
Dim txtBox As TextBox = CType(sender, TextBox)
e.CanExecute = (txtBox.Text.Length > 0)
End Sub
C. Set the CanExecute property of the command to Highlight_CanExecute.
Add the following method to the code-behind file for the window.
Private Sub Highlight_CanExecute(ByVal sender As Object, _
ByVal e As CanExecuteRoutedEventArgs)
Dim txtBox As TextBox
txtBox = CType(e.Source, TextBox)
e.CanExecute = (txtBox.Text.Length > 0)
End Sub
D. Set the CanExecute property of the command to Highlight_CanExecute.
Add the following method to the code-behind file for the window.
Private Sub Highlight_CanExecute(ByVal sender As Object, _
ByVal e As CanExecuteRoutedEventArgs)
Dim Menu As MenuItem = CType(e.Source, MenuItem)
Dim txtBox As TextBox = CType(Menu.CommandTarget, TextBox)
Menu.IsEnabled = (txtBox.Text.Length > 0)
End Sub
Answer: C

70-502(C#): ダウンロード 70-502(C#) 試験 Software format Demo