Inserting a tab character into text using C#

后端 未结 9 813
南笙
南笙 2020-11-28 18:15

I\'m building an application where I should capture several values and build a text with them: Name, Age, etc.

The output will be a plain

相关标签:
9条回答
  • 2020-11-28 18:41

    Using Microsoft Winform controls, it is impossible to solve correctly your problem without an little workaround that I will explain below.

    PROBLEM

    The problem in using simply "\t" or vbTab is that when more than one TextBox are displayed and that alignment must be respected for all TextBox, the ONLY "\t" or vbTab solution will display something that is NOT ALWAYS correctly aligned.

    Example in VB.Net:

    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        TextBox1.Text = "Bernard" + vbTab + "32"
        TextBox2.Text = "Luc" + vbTab + "47"
        TextBox3.Text = "François-Victor" + vbTab + "12"
    End Sub
    

    will display

    as you can see, age value for François-Victor is shifted to the right and is not aligned with age value of two others TextBox.

    SOLUTION

    To solve this problem, you must set Tabs position using a specific SendMessage() user32.dll API function as shown below.

    Public Class Form1
    
        Public Declare Function SendMessage _
            Lib "user32" Alias "SendMessageA" _
            ( ByVal hWnd As IntPtr _
            , ByVal wMsg As Integer _
            , ByVal wParam As Integer _
            , ByVal lParam() As Integer _
            ) As Integer
    
        Private Const EM_SETTABSTOPS As Integer = &HCB
    
        Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
            Dim tabs() As Integer = {4 * 25}
    
            TextBox1.Text = "Bernard" + vbTab + "32"
            SendMessage(TextBox1.Handle, EM_SETTABSTOPS, 1, tabs)
            TextBox2.Text = "Luc" + vbTab + "47"
            SendMessage(TextBox2.Handle, EM_SETTABSTOPS, 1, tabs)
            TextBox3.Text = "François-Victor" + vbTab + "12"
            SendMessage(TextBox3.Handle, EM_SETTABSTOPS, 1, tabs)
        End Sub
    
    End Class
    

    and following Form will be displayed

    You can see that now, all value are correctly aligned :-)

    REMARKS

    Multiline property of the TextBox must be set to True. If this properties is set to False, the Tab is positioned as before.

    How AcceptsTab property is assigned is not important (I have tested).

    This question has already be treated on StackOverflow

    Caution: the mesure Unit for Tab position is not character but something that seems to be 1/4 of character. That is why I multiply the length by 4.

    C# SOLUTION

    using System;
    using System.Windows.Forms;
    using System.Runtime.InteropServices;
    
    namespace WindowsFormsApp1
    {
        public partial class Form1 : Form
        {
            [DllImport("User32.dll", CharSet = CharSet.Auto)]
            private static extern IntPtr SendMessage(IntPtr h, int msg, int wParam, uint[] lParam);
            private const int EM_SETTABSTOPS = 0x00CB;
            private const char vbTab = '\t';
    
            public Form1()
            {
                InitializeComponent();
    
                var tabs = new uint[] { 25 * 4 };
    
                textBox1.Text = "Bernard" + vbTab + "32";
                SendMessage(textBox1.Handle, EM_SETTABSTOPS, 1, tabs);
                textBox2.Text = "Luc" + vbTab + "47";
                SendMessage(textBox2.Handle, EM_SETTABSTOPS, 1, tabs);
                textBox3.Text = "François-Victor" + vbTab + "12";
                SendMessage(textBox3.Handle, EM_SETTABSTOPS, 1, tabs);
            }
        }
    }
    
    0 讨论(0)
  • 2020-11-28 18:51

    Hazar is right with his \t. Here's the full list of escape characters for C#:

    \' for a single quote.

    \" for a double quote.

    \\ for a backslash.

    \0 for a null character.

    \a for an alert character.

    \b for a backspace.

    \f for a form feed.

    \n for a new line.

    \r for a carriage return.

    \t for a horizontal tab.

    \v for a vertical tab.

    \uxxxx for a unicode character hex value (e.g. \u0020).

    \x is the same as \u, but you don't need leading zeroes (e.g. \x20).

    \Uxxxxxxxx for a unicode character hex value (longer form needed for generating surrogates).

    0 讨论(0)
  • 2020-11-28 18:55
    string St = String.Format("{0,-20} {1,5:N1}\r", names[ctr], hours[ctr]);
    richTextBox1.Text += St;
    

    This works well, but you must have a mono-spaced font.

    0 讨论(0)
  • 2020-11-28 18:57

    Try using the \t character in your strings

    0 讨论(0)
  • 2020-11-28 18:58

    It can also be useful to use String.Format, e.g.

    String.Format("{0}\t{1}", FirstName,Count);
    
    0 讨论(0)
  • 2020-11-28 19:00
    var text = "Ann@26"
    
    var editedText = text.Replace("@", "\t");
    
    0 讨论(0)
提交回复
热议问题