I get the XamlParse Exception in this code:
</ContentPresenter.Content>
<ContentPresenter.Effect>
<l:BrightContrastEffect
Brightness="{Binding ElementName=bSlider, Path=Value}"
Contrast="{Binding ElementName=cSlider, Path=Value}"/>
</ContentPresenter.Effect>
</ContentPresenter>
This used to run error free initially. However, after I added this code:
<connectionstrings>
<add connectionstring="Data Source=UVSS-PC\SQLEXPRESS;Initial Catalog=CPASUVSS;Integrated Security=True;" name="ConnectionString"/>
</connectionstrings>
into the app.config file; exception is thrown. I wanted to understand what is causing it and how to solve it.