Predefined File Templates for XAML
This topic lists all predefined file templates for XAML in ReSharper 2022.3. For more information about file templates, see Create files from templates.
Template | Details |
---|---|
| Resource Dictionary Scope WPF projects Body <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
$END$
</ResourceDictionary> Parameters
|
| Content Page Scope MAUI (C#) projects Body <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="$NAMESPACE$.$CLASS$">
<ContentPage.Content>
$END$
</ContentPage.Content>
</ContentPage> Parameters
|
| Content View Scope MAUI (C#) projects Body <?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="$NAMESPACE$.$CLASS$">
$END$
</ContentView> Parameters
|