我有以下内容:
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Security.Permissions;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace FarmKeeper.Forms
{
public partial class FarmLogs : Form
{
static string errorLogText = "";
public string changedText = "";
public FarmLogs()
{
InitializeComponent();
string txtLoginLogPath = @"../../Data/LoginLog.txt";
StreamReader readLogins = new StreamReader(txtLoginLogPath);
txtLoginLog.Text = readLogins.ReadToEnd();
readLogins.Close();
loadLogs();
changedText = errorLogText;
txtErrorLog.Text = changedText;
}
public static void loadLogs()
{
string txtErrorLogPath = @"../../Data/MainErrorLog.txt";
StreamReader readErrors = new StreamReader(txtErrorLogPath);
errorLogText = readErrors.ReadToEnd();
readErrors.Close();
}
}
}
现在,我要做的是检查字符串 changedText 是否已更改。我对自定义事件知之甚少,但我无法弄清楚这一点,互联网上的事件也不知道。
IF changedText 更改,然后将另一个文本框设置为该字符串。