* U K I Y A H O N P O *
Nel mezzo del cammin di nostra vita mi ritrovai per una selva oscura,
che la diritta via era smarrita.
Reload   New Lower page making Edit Freeze Diff Upload Copy Rename   Front page List of pages Search Recent changes Backup Referer   Help   RSS of recent changes
浮子屋商店もよろしく。

C#コード断片/共通/テキストボックスに文字列を追記

Top > C#コード断片 > 共通 > テキストボックスに文字列を追記

テキストボックスに文字列を追記

ログ出力など、行単位でどんどん追記する場合に。

  0
  1
  2
  3
  4
  5
  6
public void out(string text){
    txtBox.SelectionStart=txtBox.Text.Length;
    txtBox.SelectionLength=0;
    txtBox.SelectedText=text+"\r\n";
    txtBox.SelectionStart=txtBox.Text.Length;
    txtBox.SelectionLength=0;
}

応用編。以下のコードを追加。

  • スレッドセーフにした(Invoke)
  • 一定のサイズを超えたらクリア
  0
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
private delegate void OutPutDelegate(string text);
OutPutDelegate outdel;
 
public frmMain() {
    outdel=new OutPutDelegate(_output);
}
 
private void _output(string text) {
    if (this.InvokeRequired) {
        Invoke(outdel, new object[] { text });
        return;
    }
    if (txtMain.Text.Length > 32767) {
        txtMain.Text = "";
    }
    txtMain.SelectionStart = txtMain.Text.Length;
    txtMain.SelectionLength = 0;
    txtMain.SelectedText = text + "\r\n";
    txtMain.SelectionStart = txtMain.Text.Length;
    txtMain.SelectionLength = 0;
}

このページの最終更新日: 2006/12/03 18:03:26 HAST (6582d)
このページのトラックバックURL: https://ukiya.sakura.ne.jp/index.php?tb_id=3741274b8ea0a8fc1c088317755fb762