|
■No32352 (.SHO さん) に返信
> では、動作時にReadOnlyにしてみてはどうでしょう?
試してみましたが、ダメでした。
ちなみに、極々簡単なサンプルで、
フォームにtextBoxを1つとボタンを3つを
貼り付けてテストしてみました。
(プロパティはすべてデフォルト。)
namespace TestApp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.textBox1.Text = "TestTestTestTest";
this.textBox1.ForeColor = Color.Red;
}
private void button2_Click(object sender, EventArgs e)
{
if (this.textBox1.ReadOnly == true)
this.textBox1.ReadOnly = false;
else
this.textBox1.ReadOnly = true;
}
private void button3_Click(object sender, EventArgs e)
{
if (this.textBox1.Enabled == true)
this.textBox1.Enabled = false;
else
this.textBox1.Enabled = true;
}
}
}
おかしいのは私だけでしょうか????
最悪はラベルを重ねるって方法で手を抜くしかないですかねぇ・・・。
|