伙计我想更新Parse.com中的用户表行。所以,到目前为止,我已经使用user.SignupinBackground方法来更新密码和其他字段(由我添加而不是用户名和密码),但它会抛出异常“无法注册已注册的用户”。
有没有办法更新用户行表中的数据解析表。
我已经访问过this link,但我没有找到更新当前用户行数据的方法。
答案 0 :(得分:2)
您可以通过此代码实现
private void button_Click(object sender, RoutedEventArgs e)
{
Choice win2 = new Choice(this);
win2.Show();
}
public partial class Choice : Window
{
Prepare parent;
public Choice(Prepare parent)
{
this.parent = parent;
}
private void button1_Click(object sender, RoutedEventArgs e)
{
parent.DoStuff();
this.Close();
}
}