This question is locked. New answers and comments are not allowed.
Hello this is a my code
if i IsCheckModeActive = true have problem
colum 3 traslate on right and text not visible
this is a my project example
https://app.box.com/s/984102hcn195rqc919dh
<phone:PhoneApplicationPage.Resources> <DataTemplate x:Key="ItemTemplate"> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="100"></ColumnDefinition> <ColumnDefinition Width="200"></ColumnDefinition> <ColumnDefinition Width="100"></ColumnDefinition> </Grid.ColumnDefinitions> <Image Grid.Column="0" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="6,6,0,0" x:Name="image1" Stretch="Fill" Source="Assets/AlignmentGrid.png" Width="76" Height="76" /> <TextBlock Grid.Column="1" VerticalAlignment="Center" Text="Test test test"/> <TextBlock Grid.Column="2" VerticalAlignment="Center" HorizontalAlignment="Right" Text="Test test test"/> </Grid> </DataTemplate> <Style TargetType="CheckBox" x:Key="ItemCheckBoxStyle"> <Setter Property="VerticalAlignment" Value="Center"/> </Style> </phone:PhoneApplicationPage.Resources> <!--LayoutRoot è la griglia radice in cui viene inserito tutto il contenuto della pagina--> <Grid x:Name="LayoutRoot" Background="Transparent"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <!--ContentPanel - inserire ulteriore contenuto qui--> <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"> <Controls:RadJumpList x:Name="PhotoHubLLS" Height="435" VerticalAlignment="Top" ItemTemplate="{StaticResource ItemTemplate}" IsCheckModeActive="False" CheckBoxStyle="{StaticResource ItemCheckBoxStyle}" /> </Grid> <Button Tap="Button_Tap" Content="enable checkbox" /> </Grid>
private void Button_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
PhotoHubLLS.IsCheckModeActive = !PhotoHubLLS.IsCheckModeActive;
}if i IsCheckModeActive = true have problem
colum 3 traslate on right and text not visible
this is a my project example
https://app.box.com/s/984102hcn195rqc919dh