我在这段代码中得到了XamlParse Exception:
</ContentPresenter.Content>
<ContentPresenter.Effect>
<l:BrightContrastEffect
Brightness="{Binding ElementName=bSlider, Path=Value}"
Contrast="{Binding ElementName=cSlider, Path=Value}"/>
</ContentPresenter.Effect>
</ContentPresenter>
这用于最初运行无错误。但是,在我添加此代码之后:
<connectionstrings>
<add connectionstring="Data Source=UVSS-PC\SQLEXPRESS;Initial Catalog=CPASUVSS;Integrated Security=True;" name="ConnectionString"/>
</connectionstrings>
进入app.config文件;抛出异常。我想了解导致它的原因以及如何解决它。