1- Запустите следующий код.
<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<StackPanel>
<ToolBar>
<Button x:Name="UndoButton" Width="30" CommandTarget="{Binding ElementName=RichTextBox1}" Command="ApplicationCommands.Undo">
<TextBlock x:Name="UndoTextBlock" Foreground="Gray" FontFamily="Wingdings 3" FontSize="24" Text="Q"/>
</Button>
<Button x:Name="RedoButton" Width="30" CommandTarget="{Binding ElementName=RichTextBox1}" Command="ApplicationCommands.Redo">
<TextBlock x:Name="RedoTextBlock" Foreground="Gray" FontFamily="Wingdings 3" FontSize="24" Text="P"/>
</Button>
</ToolBar>
<RichTextBox x:Name="RichTextBox1">
<FlowDocument>
<Paragraph>
<Run Text="Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum."/>
</Paragraph>
</FlowDocument>
</RichTextBox>
</StackPanel>
</Window>
2 - Проверьте, подсвечивается ли кнопка UndoButton при наведении мыши на кнопку UndoButton.
3 - Удалить текст из открывающегося окна.
4- Проверьте, подсвечивается ли кнопка UndoButton, когда вы нажимаете на кнопку UndoButton.
5 - Как вы можете видеть, если вы удалите какой-то текст, кнопка UndoButton подсвечивается, когда вы нажимаете кнопку UndoButton
Мой вопрос здесь;
Я хочу изменить цвет переднего плана UndoTextBlock с Серый на Зеленый , когда пользователь удаляет какой-либо текст (когда активна UndoButton).