1

Visual Studio 2010を使用して基本的なアプリケーションを作成しました。既存の外観を変更し、GUIを改善するために、テンプレートを参照して、Codeplexを見つけました。そして、exeをダウンロードしてインストールしました。

その後何をすべきかについての手がかりはありません!VisualStudioプロジェクトの設定を確認しました。テンプレートに関しては何もありません。

私はWPFを初めて使用します。どのように進めるかについてのアイデアはありますか?テーマはcodeplexにあると述べている記事はたくさんありますが、2がそれをどのように使用するかについては何もありません。

4

2 に答える 2

0

Do you mean the WPF Themes? Please check the link http://wpf.codeplex.com/wikipage?title=WPF%20Themes

于 2012-08-16T09:08:52.053 に答える
0

OK Guys, Lets take this one step at a time. After crunching hours, I did apply the Codeplex template to my project.

(This may sound simple for others.(anyways for the sake of beginners like me!)

First,

1) Right click the references tab (found under the solution explorer of your project).

2) Click "Add Reference" and navigate to the 'Browse' tab and choose WPFToolkit.dll

3) This is the trickiest part. For this, download the WPFToolKit.msi from codeplex 1 Link.

4) You will need .net 3.5 sp1 framework for this.Refer to my answer at 1 Warning here

5) After successful installation, you will be shown nothing except the installation status.

6) So now, for the WPFTookKit.dll browse your program files. For me, it was found in "C:\Program Files\WPF Toolkit\v3.5.50211.1"

7) After this has been done, follow the next step of adding the xaml file to your project.

8) As Oleg said, right-click on the project in the Solution Explorer, choose Add --> Existing File and select the appropriate .xaml file (In my case I used a expression dark template from here )

9)Now double click the App.XAML file and under add the following entry [] without '[' and ']'.

10) Refresh MAINWINDOW.XAML and by this time, your theme should have been applied.

于 2012-08-16T15:08:42.830 に答える