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
1253
Font size
posted

Hi,

Can anyone show me how to change the font size of the grid in the code ,or show me sample on how to do this in Xaml?  Thanks

Parents
No Data
Reply
  • 6912
    Verified Answer
    posted
    xmlns:ig="clr-namespace:Infragistics.Silverlight.Controls;assembly=Infragistics.Silverlight.XamWebGrid.v10.1"
    xmlns:igPrim="clr-namespace:Infragistics.Silverlight.Controls.Primitives;assembly=Infragistics.Silverlight.XamWebGrid.v10.1"
    ...
    <ig:XamWebGrid>
    	<ig:XamWebGrid.CellStyle>
    		<Style TargetType="ig:CellControl">
    			<Setter Property="FontSize" Value="14" />
    		</Style>
    	</ig:XamWebGrid.CellStyle>
    	<ig:XamWebGrid.HeaderStyle>
    		<Style TargetType="igPrim:HeaderCellControl">
    			<Setter Property="FontSize" Value="14" />
    		</Style>
    	</ig:XamWebGrid.HeaderStyle>
    </ig:XamWebGrid>
Children