我正在阅读 WPF 工具包的源代码,发现在 Toolkit 项目中,每个控件都写在两个文件夹中,分别名为:Implementation 和 Themes。
像这样: - WatermarkTextBox - 实现 WatermarkTextBox.cs - Themes Generic.xaml
通过这样做,控件可以默认应用于主题。当我删除 Generic.xaml 时,Visual Studio 会出错以查找 Generic.xaml 文件。
所以,我对这种模式感到困惑,这是 Visual Studio 支持的模式吗?