I am having too many issues on how either to raise events or how to create delegates?
For example:
private void rtb_TextChanged_6(object sender, TextChangedEventArgs e)
{
if (sender.Equals("Hello"))
{
MessageBox.Show("Will you count me in?");
}
//program does not display message box instead.
}
Note that rtb is the name of a WPF Rich Text Box control.
It runs okay, but when I typed, Hello, message box does not appear.
What am I missing?

