This question is locked. New answers and comments are not allowed.
I know its possible to have it per se, but I have tried to cancel out the "open groupheader" event but fail to find it,
basicaly i have a button beside the rectangle and when the button is clicked i dont wnat the group selector to fire
basicaly i have a button beside the rectangle and when the button is clicked i dont wnat the group selector to fire
<Border HorizontalAlignment="Stretch" Background="White" Margin="0,-2,0,0" BorderThickness="0" Padding="12, 2, 0, 4"> <StackPanel Orientation="Horizontal"> <Border Width="64" Height="64" Margin="0,0,0,0" HorizontalAlignment="Left" Background="{StaticResource rebtelblue}" BorderThickness="0"> <TextBlock Margin="8,4,4,2" HorizontalAlignment="Left" VerticalAlignment="Bottom" FontFamily="{StaticResource PhoneFontFamilyLight}" FontSize="{StaticResource PhoneFontSizeExtraLarge}" Foreground="{StaticResource PhoneBackgroundBrush}" Text="{Binding Key}" /> </Border> <HyperlinkButton Name="InviteFriend" cal:Message.Attach="[Event Tap] = [Action InviteFriend($source , $eventArgs)]" Style="{StaticResource phoneNumberButton}"> <HyperlinkButton.Content> <Grid Margin="18,0" HorizontalAlignment="Stretch"> <Grid.ColumnDefinitions> <ColumnDefinition Width="*" /> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions> <StackPanel HorizontalAlignment="Stretch"> <TextBlock Grid.Row="0" HorizontalAlignment="Stretch" FontFamily="{StaticResource PhoneFontFamilyLight}" FontSize="{StaticResource PhoneFontSizeExtraLarge}" Foreground="{StaticResource rebtelblue}" LineHeight="30" LineStackingStrategy="BlockLineHeight" Text="{Binding Path=LocalizedResources.InviteFriendContactPage, Source={StaticResource LocalizedStrings}}" /> <TextBlock Grid.Row="1" FontFamily="{StaticResource PhoneFontFamilyLight}" FontSize="{StaticResource PhoneFontSizeMedium}" Foreground="{StaticResource rebtelgrey}" LineHeight="22" LineStackingStrategy="BlockLineHeight" Text="{Binding Path=LocalizedResources.InviteFriendSubHeaderContactPage, Source={StaticResource LocalizedStrings}}" /> </StackPanel> </Grid> </HyperlinkButton.Content> </HyperlinkButton> </StackPanel> </Border> </DataTemplate>