Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
850
DataPresenter Style error when deployed through ClickOnce
posted

I have written an application that uses the default DataPresenter style, plus a couple of modifications in the application main resource directory. The application builds and deploys fine locally, but when I package and deploy it through ClickOnce, it fails on finding the igDP:CellValuePresenter. If I remove the tag from the resource directory, the rest of the application works fine.

App.xaml

    <Application.Resources>

        <ResourceDictionary Source="/Common;component/Styles.xaml" />

    </Application.Resources>

Styles.xaml

    <Style TargetType="{x:Type igDP:CellValuePresenter}">

        <Setter Property="Height" Value="26" />

    </Style>

All the infragistics dlls are included in the application deployment settings, and the rest of the application deploys fine. Any ideas?