Saya pikir yang Anda tanyakan adalah Anda menginginkan file di belakang kode untuk ResourceDictionary. Anda benar-benar dapat melakukan ini! Bahkan, Anda melakukannya dengan cara yang sama seperti untuk Window:
Katakanlah Anda memiliki ResourceDictionary yang disebut MyResourceDictionary. Dalam file MyResourceDictionary.xaml Anda, letakkan atribut x: Class di elemen root, seperti:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="MyCompany.MyProject.MyResourceDictionary"
x:ClassModifier="public">
Kemudian, buat kode di belakang file bernama MyResourceDictionary.xaml.cs dengan deklarasi berikut:
namespace MyCompany.MyProject
{
partial class MyResourceDictionary : ResourceDictionary
{
public MyResourceDictionary()
{
InitializeComponent();
}
... // event handlers ahead..
}
}
Dan kamu sudah selesai. Anda dapat meletakkan apa pun yang Anda inginkan dalam kode di belakang: metode, properti, dan penangan event.
== Pembaruan untuk aplikasi Windows 10 ==
Dan untuk berjaga-jaga jika Anda bermain dengan UWP ada satu hal lagi yang harus diperhatikan:
<Application x:Class="SampleProject.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:rd="using:MyCompany.MyProject">
<!-- no need in x:ClassModifier="public" in the header above -->
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!-- This will NOT work -->
<!-- <ResourceDictionary Source="/MyResourceDictionary.xaml" />-->
<!-- Create instance of your custom dictionary instead of the above source reference -->
<rd:MyResourceDictionary />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>