0

我正在尝试做某种向导。我navigationservice在框架中使用。第二帧包含 a RichTextBox,我需要获取其文本,但出现以下错误

public static string  attext
{
  get
  {
    string aciklama_t_text = new TextRange(aciklama_t.Document.ContentStart, aciklama_t.Document.ContentEnd).Text;
    return aciklama_t_text;
  }
}

在我的框架aciklama_t = richtextbox中。

错误是:

错误 CS0120 非静态字段、方法或属性“wpage2.aciklama_t”需要对象引用

按钮不在框架中,如下所示:

[按钮不在框架中]

它不必是这样的。如果有其他解决方案,请告诉我。我是一个非常新的 C# 用户。

4

2 回答 2

0

我不太确定您要做什么。由于aciklama_t是非静态变量,因此不应将其放在静态属性中。

像这样的东西修复了异常:

public string attext
{
    get
    {
        string aciklama_t_text = new TextRange(aciklama_t.Document.ContentStart, aciklama_t.Document.ContentEnd).Text;
        return aciklama_t_text;
    }
}

更新

好像你应该在 wpage2 中添加一个变量,然后添加下面的行,然后你就可以访问PreviousPage.

var wpage2 = new wpage2();
wpage2.PreviousPage = this;  //add this line
wizardframe.NavigationService.Navigate(wpage2);
introtest = "wpage2";
于 2016-03-19T14:50:32.050 回答
0
public wizard()
{
    InitializeComponent();
    var intro = new intro();
    wizardframe.NavigationService.Navigate(intro);
} // this is the intro page.

private void ileri_b1_Click(object sender, RoutedEventArgs e)
{
    string introtest = "intro";
    if (introtest == "intro")
    {
        var wpage2 = new wpage2();
        wizardframe.NavigationService.Navigate(wpage2);
        introtest = "wpage2";
    }
    else if (introtest == "wpage2")
    {        
        string fileName = String.Format(@"{0}\temp\aciklama.txt", Environment.CurrentDirectory);
        StreamWriter file = new StreamWriter(fileName);
        file.Write(attext);
        file.Close(); // this is the "Ileri" Button click event.Just saving file.
    }
于 2016-03-19T15:09:45.490 回答