Topic | Value |
---|---|
Id | WPF0170 |
Severity | Warning |
Enabled | True |
Category | WpfAnalyzers.StyleTypedProperty |
Code | AttributeAnalyzer |
StyleTypedProperty.Property must exist.
ADD MOTIVATION HERE
ADD HOW TO FIX VIOLATIONS HERE
Configure the severity per project, for more info see MSDN.
#pragma warning disable WPF0170 // StyleTypedProperty.Property must exist.
Code violating the rule here
#pragma warning restore WPF0170 // StyleTypedProperty.Property must exist.
Or put this at the top of the file to disable all instances.
#pragma warning disable WPF0170 // StyleTypedProperty.Property must exist.
[System.Diagnostics.CodeAnalysis.SuppressMessage("WpfAnalyzers.StyleTypedProperty",
"WPF0170:StyleTypedProperty.Property must exist.",
Justification = "Reason...")]