我对C#非常陌生,所以这可能是一个非常简单的问题,但即使在我阅读完所有内容之后,我也无法找到一种方法来添加Visual Studio 2010想要的定义,尽管已添加了使用语句和引用每个表达式的MSDN文档页面。
我的错误:
System.windows.forms does not contain a definition for document
我根据我在Microsoft网站上阅读的内容添加了引用“presentationframework”。感谢下面的一些评论,我发现我显然混合了两种不同的方式来从框中获取文本。我需要做的就是将内容粘贴到文本框中,并在按下按钮时获取框的内容。如果没有混合策略,有人能告诉(或更好地显示)我如何做到这一点吗?
Form1.cs中:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows.Documents;
using System.Windows.Controls.RichTextBox;
using System.Windows.Forms;
using System.Windows.Controls;
using System.Collections;
namespace WindowsFormsApplication1
{
public partial class HackController : Form
{
ArrayList ipList = new ArrayList();
ArrayList acctList = new ArrayList();
int myAcct = 0;
string myIp = "";
public HackController()
{
InitializeComponent();
}
public void sync_Click(object sender, EventArgs e)
{
string data = new TextRange(rtb.Document.ContentStart, rtb.Document.ContentEnd).Text;// ERROR HERE
string[] lines = Regex.Split(data, "\n");
Regex ipMatch = new Regex(@"\d+.\d+.\d+.\d+");
Regex acctMatch = new Regex(@"#\d+");
foreach(string line in lines)
{
foreach(Match m in ipMatch.Matches(line))
{
ipList.Add(m);
}
foreach( Match m in acctMatch.Matches(line))
{
acctList.Add(m);
}
}
}
}
}
答案 0 :(得分:0)
这是一个(相当奇怪的)示例,显示了在WinForms RichTextBox控件中显示数据的一种方法。 (对不起,但这是我在编程中可以找到的唯一样本,因为我通常使用Developer Express WinForms控件而不是基本的.Net控件。)
但首先,要100%确定您没有混合WinForms和WPF,请确保在创建项目时选择WinForms作为项目模板类型(而不是WPF)。当您将RichTextBox控件从Visual Studio工具箱拖放到表单上时,请确保它是WinForms RichTextBox,而不是WPF。
您可以通过查看.Designer.cs文件来查看,并找到Visual Studio设计器创建的RTB控件的定义。看起来应该是这样的:
this.rtbResults = new System.Windows.Forms.RichTextBox();
...
...
//
// rtbResults
//
this.rtbResults.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.rtbResults.Location = new System.Drawing.Point(12, 52);
this.rtbResults.Name = "rtbResults";
this.rtbResults.Size = new System.Drawing.Size(640, 133);
this.rtbResults.TabIndex = 17;
this.rtbResults.Text = "";
...
...
private System.Windows.Forms.RichTextBox rtbResults;
重要的是它说“System.Windows.Forms.RichTextBox”,而不是别的。
好的,这是我的一个奇怪的例子,它显示了Scrabble骗子程序的结果:
/// <summary>
/// Method to display the results in the RichTextBox, prefixed with "Results: " and with the
/// letters J, Q, X and Z underlined.
/// </summary>
private void DisplayResults(string resultString)
{
resultString = UnderlineSubString(resultString, "J");
resultString = UnderlineSubString(resultString, "Q");
resultString = UnderlineSubString(resultString, "X");
resultString = UnderlineSubString(resultString, "Z");
rtbResults.Rtf = @"{\rtf1\ansi " + "Results: " + resultString + "}";
}
/// <summary>
/// Method to apply RTF-style formatting to make all occurrences of a substring in a string
/// underlined.
/// </summary>
private static string UnderlineSubString(string theString, string subString)
{
return theString.Replace(subString, @"\ul " + subString + @"\ul0 ");
}
这使用Microsoft专有的Rich Text Format,但RichTextBox也可以使用直接文本。而这个演示只写入RTB,它不会从中读取,尽管这样做相当简单。
希望这有帮助。