Oto mój blok tekstu.WPF: Wstrzymywanie właściwości innej kontrolki w wyzwalaczu kontrolki
<Image x:Name:imgAnother/>
<TextBlock>
this is my text block
<TextBlock.Style>
<Style TargetType="TextBlock">
<Setter Property="TextDecorations" Value="None"/>
<Style.Triggers>
<Trigger Property="TextBlock.IsMouseOver" Value="True">
<Setter Property="Foreground" Value="RoyalBlue"/>
<!--I like to insert a code at here that changes another control's property...-->
</Trigger>
<Trigger Property="TextBlock.IsMouseOver" Value="False">
<Setter Property="Foreground" Value="#FF808080"/>
<!--..and this line too.-->
</Trigger>
</Style.Triggers>
</Style>
</TextBlock.Style>
</TextBlock>
Lubię tworzyć kod xaml, który może zmienić inny element kontrolny, np. "ImgAnother".
Jak mogę to zrobić?
Gdzie jest ten obraz (lub kontrola, którą masz na myśli)? –
Zasadniczo chcę zmienić proeprty innego kontrolera w tym samym oknie. Ale także kontrola może umieścić w zasobach aplikacji, zasobach okna, zasobach kontrolnych. – mjk6026