Quantcast
Channel: Windows Presentation Foundation (WPF) forum
Viewing all articles
Browse latest Browse all 18858

CellStyle BasedOn default CellStyle

$
0
0

I made a custom control called CustomDataGrid that inherits from DataGrid, and I put it in a DLL. Overriding the metadata I set for this control a new default style, different from the standard DataGrid one: this style include a custom CellStyle.

<Style TargetType="{x:Type prj:CustomDataGrid}">
...
        <Setter Property="CellStyle" Value="{StaticResource RightAlignCell}" />
...
</Style>

I use this DLL in a WPF project and I need to modify the CellStyle, but I can not reach the {StaticResource RightAlignCell} resource (located in the DLL) from the application. In other words I need to do something like:

<Custom:CustomDataGrid>
    <Custom:CustomDataGrid.CellStyle>
        <Style BasedOn="{StaticResource RightAlignCell}">
            <Setter Property="SomeProperty" Value="SomeValue"/>
        </Style>
    </Custom:CustomDataGrid.CellStyle>
</Custom:CustomDataGrid>

How can I perform it?
Thanks in advance


Viewing all articles
Browse latest Browse all 18858

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>