I have a template for a tileview content which is application wide. so not using direct event.
I have this;
I am trying to add a button to the tileview to cover the whole tile, so it can be clicked and made selected , and not just clicking on the header. make sense?
I had an Click="" event before, but now I want this as a app wide template, any ideas?
I have this;
<telerik:RadFluidContentControl.Content > <Border> <Grid Margin="10 10"> <StackPanel> <TextBlock Margin="0 0 0 5" FontFamily="Segoe UI" FontSize="24" FontWeight="Light" Text="Last Appointment" /> <TextBlock FontSize="14" Text="{Binding LastDate}" /> <Border Height="2" Margin="0 5" /> <TextBlock Margin="0 0 0 5" FontFamily="Segoe UI" FontSize="24" FontWeight="Light" Text="Next Due" /> <TextBlock FontSize="14" Text="{Binding NextDate}" /> </StackPanel> <Button Tag="{Binding ListID}" Command="{Binding Path=TileClicked}" Opacity="0" CommandTarget="{Binding TileClicked, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ElgEquineManager:HorsesPage}}}"></Button> </Grid> </Border> </telerik:RadFluidContentControl.Content>I am trying to add a button to the tileview to cover the whole tile, so it can be clicked and made selected , and not just clicking on the header. make sense?
I had an Click="" event before, but now I want this as a app wide template, any ideas?