Hello,
With the syncfusion library for windows store app, i have the first checkbox after the "Select All" checkbox that is cropped as shown below:
Please see the attachement
Is there a way to manipulate the style to fix this issue? Thank you for your response
Hello,
With the syncfusion library for windows store app, i have the first checkbox after the "Select All" checkbox that is cropped as shown below:
Please see the attachement
Is there a way to manipulate the style to fix this issue? Thank you for your response
<<<<<<<<<<<ß---------------------------------
<Border Grid.Row="1"
Margin="6,0,20,2"
Padding="0,0,0,0"
VerticalAlignment="Top"
Background="{TemplateBinding Background}"
Visibility="{Binding ItemsSource,
ElementName=PART_ItemsControl,
ConverterParameter=ItemsControl,
Converter={StaticResource ResourceKey=listItemsVisiblityConverter}}">
<CheckBox x:Name="PART_CheckBox"
HorizontalAlignment="Stretch"
VerticalAlignment="Center"
Content="{Binding SelectAll,
Source={StaticResource resourceString}}"
FontFamily="{TemplateBinding FontFamily}"
FontSize="{TemplateBinding FontSize}"
FontStretch="{TemplateBinding FontWeight}"
FontStyle="{TemplateBinding FontStyle}"
FontWeight="{TemplateBinding FontWeight}"
Foreground="{TemplateBinding Foreground}"
IsTabStop="False"
IsThreeState="True"
Style="{StaticResource ckbStyle}"
Visibility="{Binding Visibility,
ElementName=PART_ItemsControl}" />
</Border>
</Grid>
</Grid>
</Border>
-----------------------------------------------------------à>>>>>
<syncfusion:SfDataGrid x:Name="dataGrid"
AllowEditing="True"
AllowFiltering="True"
FilterPopupStyle="{StaticResource GridFilterControlStyle}"
AutoGenerateColumns="False"
ItemsSource="{Binding Orders}" >
<syncfusion:SfDataGrid.Columns>
<syncfusion:GridNumericColumn MappingName="OrderID"/>
<syncfusion:GridTextColumn MappingName="CustomerName"/>
<syncfusion:GridTextColumn MappingName="CustomerID"/>
<syncfusion:GridTextColumn MappingName="Country"/>
<syncfusion:GridTextColumn MappingName="ShipCity"/>
</syncfusion:SfDataGrid.Columns>
</syncfusion:SfDataGrid> |