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
754
XamCheckEditor & Metro style
posted

Hello all,

we found that XamCheckEditor is the only editor control not taking over the assigned metro style when we use the advanced style assignment with the Style keyword:

        <StackPanel>
            <igEditor:XamCheckEditor/>
            <igEditor:XamCheckEditor Theme="Metro"/>
            <igEditor:XamCheckEditor Style="{x:Static igThemes:EditorsMetro.XamCheckEditor}"/>
            <igEditor:XamTextEditor/>
            <igEditor:XamTextEditor Theme="Metro"/>
            <igEditor:XamTextEditor Style="{x:Static igThemes:EditorsMetro.XamTextEditor}"/>
            <igEditor:XamNumericEditor/>
            <igEditor:XamNumericEditor Theme="Metro"/>
            <igEditor:XamNumericEditor Style="{x:Static igThemes:EditorsMetro.XamNumericEditor}"/>
            <igEditor:XamComboEditor/>
            <igEditor:XamComboEditor Theme="Metro"/>
            <igEditor:XamComboEditor Style="{x:Static igThemes:EditorsMetro.XamComboEditor}"/>
        </StackPanel>

Plus you can see small differences also with the other editors. Is there a way to

We are also aware of the following blog post, which helped us actually to understand how to combine styles: Blog  - but why is this not working for XamCheckEditor?

BR Florian