它确实在主页中为textblock设置了文本,但是UI不会使用新文本进行更新。我怎样才能解决这个问题。非常感谢
主页
<textblock x:FieldModifier="public" x:name="ID"/>
登录页面
private void Login_Click(object sender, RoutedEventArgs e)
{
MainPage mp = new MainPage();
mp.ID.Text = Idfield.Text;
}