Templates
Everything on SkillVeris tagged Templates — collected across the glossary, study notes, blog, and cheat sheets.
12 resources across 2 libraries
Study Notes(10)
UWP Styles and Templates
How Styles, ResourceDictionaries, and ControlTemplates let you centralize and theme a UWP app's visual appearance.
Silverlight Styles and Templates
How Style setters standardize appearance across controls, and how ControlTemplate replaces a control's entire visual structure while VisualStateManager drives…
ItemsControl and Templates
How ItemsControl and its subclasses (ListBox, ComboBox, ListView) render a collection via ItemsSource, ItemTemplate, and ItemsPanelTemplate.
Control Templates
How ControlTemplate redefines a control's entire visual structure while preserving its behavior, using TemplateBinding and named parts.
Data Templates
How DataTemplate lets WPF turn plain view-model objects into rich, reusable visual trees — the backbone of MVVM-driven UIs.
Routing with @page
Learn how Blazor's @page directive maps components to URLs, using route parameters and constraints to build navigable pages.
Site Provisioning
How new SharePoint sites get created, templated, and governed at scale, from self-service creation to automated provisioning pipelines.
Templates in D
Learn D's compile-time generic programming system: function and struct/class templates, constraints, and variadic templates.
Django Templates
Learn Django's built-in template language — variables, tags, filters, template inheritance, and how the template engine renders context into HTML safely.
String Templates in Kotlin
Learn how Kotlin's built-in string interpolation with $variable and ${expression} simplifies building text.
Interview Questions(2)
What Are Templates in C++?
C++ templates let you write a function or class once with a placeholder type parameter, and the compiler generates a fully concrete, type-checked version for e…
Generics vs Templates: Java vs C++
Java generics and C++ templates both let you write type-parameterized code, but they resolve that parameterization completely differently: Java erases generic…