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
285
Change font size of selected text
posted

I am trying to change the font size of the selected text in the xamMultiColumnComboEditor.  I can see that it is set to 14.667 in the SpecializedTextBox and I tried to apply the following to it, however the text size is not changing.  

<ig:XamMultiColumnComboEditor.Resources>
     <Style TargetType="igPrim:SpecializedTextBox">
         <Setter Property="FontSize"
                     Value="14" />
     </Style>
    <Style TargetType="TextBlock">
         <Setter Property="FontSize"
                    Value="14" />
    </Style>

</ig:XamMultiColumnComboEditor.Resources>

Thank you for the help.