如何将TextBox中的文字从右到左更改为从左到右?

时间:2019-10-10 09:52:11

标签: c# .net regex windows winforms

我最近一直在努力解决不允许我从左到右书写的问题,而是从右到左书写。有人知道如何解决吗?

string originalText;
private string replaceToStars(object sender)
{
    if (sender == textBox3)
    {
        originalText = textBox3.Text;

        string replaced = Regex.Replace(originalText, @"[a-z0-9A-Z]", "*");
        textBox3.Text = replaced;
    }
    else if (sender == textBox3)
    {
        textBox3.Text = originalText;
    }
    return textBox3.Text;
}

1 个答案:

答案 0 :(得分:0)

我的信誉不足,无法在评论中添加此信息。因此,将此信息发布在答案中。

  • 右键单击相应的文本框,然后选择属性
  • 在标题外观下,选择 TextAlgin 下拉菜单,然后选择

就这么简单,希望对您有帮助...