wpf tema kullanımı

osunwa
16-10-2012, 14:14   |  #1  
OP Taze Üye
Teşekkür Sayısı: 0
2 mesaj
Kayıt Tarihi:Kayıt: Eki 2012

selam gençler
wpf de projeme expressiondark temasını eklemek istiyorum.

App.xaml içine

<Application x:Class="ThemesSample.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Kendipemcerem.xaml">
<Application.Resources>
<ResourceDictionary Source="ExpressionDark.xaml"/>
</Application.Resources>
</Application>


public MainWindow(){ içine

ResourceDictionary skin = new ResourceDictionary();
skin.Source = new Uri(@"projeadresi\ExpressionDark.xaml", UriKind.Absolute);
App.Current.Resources.MergedDictionaries.Add(skin);

proje içine expressiondark.xaml eklendi fakat expressionun içindeki tüm xmlns satırlarında hata verio.her satırda kaynak belirtiniz tarzı bi hata oluşuyor.

neyi eksik yapıyorum?