6

嗯,我似乎有问题,在我的主窗口上,我正在尝试这样做:

    public static readonly DependencyProperty StudentIDProperty = DependencyProperty.Register("StudentID", typeof(String), typeof(LoginWindow), new PropertyMetadata(OnStudentIDChanged));

    public string StudentID
    {
        get { return (string)GetValue(StudentIDProperty); }
        set { SetValue(StudentIDProperty, value); }
    }

    static void OnStudentIDChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        (d as LoginWindow).OnStudentIDChanged(e); // 
    }

在我的另一个窗口上,我有这个:

MainWindow.StudentID = (String)((Button)sender).Tag;

但我得到了错误:

An object reference is required for the non-static field, method, or property 'WpfApplication4.MainWindow.StudentID.get'

有谁知道我该如何解决这个问题?它适用于我的用户控件,但不适用于其他窗口?

我的主窗口实际上被命名为 MainWindow,所以我可能对此感到困惑。

4

3 回答 3

11

You need to set StudentID on an instance of your MainWindow class. Try

((MainWindow)Application.Current.MainWindow).StudentID = (String)((Button)sender).Tag;
于 2012-04-25T15:11:39.977 回答
2

因为MainWindow是您的类的名称,而不是 MainWindow 的实例。你需要类似的东西:

MainWindow mw = new MainWindow();
mw.StudentID = (String)((Button)sender).Tag;
于 2012-04-25T15:10:17.577 回答
2

我试图TextBoxMainWindowfrom a中更新 aUserControl并得到错误

Error 1: An object reference is required for the non-static field, method, or property 

'WpfApplication1.MainWindow.textBox1'

我通过编写以下内容解决了此错误:

//MainWindow.textBox1.Text = ""; //Error 1

((MainWindow)Application.Current.MainWindow).textBox1.Text = "";//This is OK!

这是由 Rytis I 建议的

于 2014-05-14T15:58:34.070 回答