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?