[Tips][TextBox] 読み取り専用にする

スポンサーリンク

TextBoxコントロールを読み取り専用にするにはReadOnlyプロパティにTrueを設定します。

下記はTextBoxを読み取り専用にする例です。

チェックボックスの内容に合わせてTextBoxに読み取りを設定します。

VBの例

' [読み取り専用]のチェック変更時の処理
Private Sub chkReadOnly_CheckedChanged(sender As System.Object, e As System.EventArgs) Handles chkReadOnly.CheckedChanged
    If chkReadOnly.Checked = True Then
        '★★★読み取り専用にする★★★
        TextBox1.ReadOnly = True
    Else
        '★★★読み取り専用を解除する★★★
        TextBox1.ReadOnly = False
    End If
End Sub

C#の例

// [読み取り専用]のチェック変更時の処理
private void chkReadOnly_CheckedChanged(object sender, EventArgs e)
{
    if (chkReadOnly.Checked == true)
    {
        // ★★★読み取り専用にする★★★
        textBox1.ReadOnly = true;
    }
    else
    {
        // ★★★読み取り専用を解除する★★★
        textBox1.ReadOnly = false;
    }
}
Please follow and like us:

コメント

タイトルとURLをコピーしました