我有一个具有简单事件的类,但是当事件发生时,应该根据事件参数更改 TextBlock.Text 的订阅方法什么也不做。我不知道为什么会这样?这可能是非常简单的事情,但我找不到答案。
<!-- this is the event of my WordHelper class -->
public delegate void WordHelperHandler(string attempt);
public event WordHelperHandler WordParsed;
<!-- this is excerpt from MainPage class -->
public MainPage()
{
InitializeComponent();
helper = new WordHelper();
helper.WordParsed += SetText;
helper.Load(); //this method calls the event
}
public void SetText(string text)
{
PageTitle.Text = text;
}