[WPF]資源字典——程序集之間的資源共享 簡單換皮膚

直接上代碼,已便已後本身查況閱,新手也能夠看!spa

一、新建一個資料類和一個WPF工程code

二、APP.XAML應該資源字典,注意應Source格式,前面必定要有「/」component

<ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="/ResourceDic;component/Dictionary1.xaml"/>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>

三、換資源字典按鈕代碼blog

ResourceDictionary newDic=new ResourceDictionary();
            newDic.Source = new Uri("/ResourceDic;component/Dictionary2.xaml", UriKind.Relative);
            Application.Current.Resources.MergedDictionaries[0] = newDic;
相關文章
相關標籤/搜索