This is a v.basic question for WPF.
At first glance, it seems that WPF is case-sensitive. But if this has to be true then how come width=”auto” & width=”Auto” both works fine? On the other hand if is case-insensitive then why do controls don’t accept ‘width’ as its property? You can define the width of a control only using ‘Width’ (Capital W).
Half true.
From the official XAML Overview page
In general XAML IS case sensitive but the property values are not always since that depends on the property converter, so in most cases it work such as where
Autois the same asauto, although in some special cases the property converter might not be able to handle them with case-insensitivityNote: We are talking about property
valueshere and not propertynames