Hello,
I have a tileviewcontrol with some items which only show a image. Around the control I have a black border.
When I move the mouse into a tile I want to change the bordercolor in red and when I click the tile I want to change the bordercolor into green.
I create the tiles on the fly during runtime:
var clockVorschau = new TileViewItem()
{
HeaderVisibility = Visibility.Collapsed,
Height = 200,
Width = 200,
Content = clockContent,
Background = Brushes.White,
BorderBrush = Brushes.Black,
BorderThickness = new Thickness(2, 2, 2, 2),
Foreground = Brushes.LightGray
};
After this, it looks like that:

Is it possible to change the border color in when I move mouse into a tile and click on a tile ?
Thanks and regards
Uwe