私は楽しみのためにそしてC#を学ぶためにタイムレコーダーを作っています。
私には時間があり、開始、停止、明確です。
ただし、「メモ」セクションで問題が発生しています。理想的には、フィールドにメモを書き込んで、ユーザーがテキスト編集に関連するその他のオプションのウィンドウを開くことができるようにする[編集]ボタンが必要です。(Form1リッチテキストボックスからのテキストを使用)
私の問題は、あるフォームから別のフォームにデータをコピーすることから来ています。
コードは次のとおりです。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace PunchOut
{
public partial class PunchOut : Form
{
public PunchOut()
{
InitializeComponent();
}
int i = 0;
private void button3_Click(object sender, EventArgs e)
{
timer1.Enabled = true;
i++;
TimeSpan t = TimeSpan.FromSeconds(i);
textBox2.Text = string.Format("{0:D2}:{1:D2}:{2:D2}",
t.Hours,
t.Minutes,
t.Seconds);
}
private void button2_Click(object sender, EventArgs e)
{
timer1.Enabled = false;
}
private void button1_Click(object sender, EventArgs e)
{
textBox2.Clear();
textBox2.Text = ("00:00:00").ToString();
}
private void button6_Click(object sender, EventArgs e)
{
}
public void button4_Click(object sender, EventArgs e)
{
new Form2().Show();
richTextBox1.Text = Form2.richTextBox1.Text;
}
}
}
Form2コードは次のとおりです。
namespace PunchOut
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
public void richTextBox1_TextChanged(object sender, EventArgs e)
{
richTextBox1.Text = PunchOut.richTextBox1.Text;
}
}
}
現在、次のようなエラーが発生します。
非静的フィールド、メソッド、またはプロパティ'PunchOut.PunchOut.richTextBox1'にはオブジェクト参照が必要です
と
非静的フィールド、メソッド、またはプロパティ'PunchOut.Form2.richTextBox1'にはオブジェクト参照が必要です
なぜこれらのエラーが発生するのですか?