I'm trying to combine multiple XAML files to make a big XAML file with different elements, how can I make that happen if I have like 10 XAML single files?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
You can merge multiple XAML file using merge distionary in App.XAML file. this will apply on all controls of the application.
like..
Create a ResourceDictionary. You can then use the ResourceDictionary.MergedDictionaries tag.