1

我正在尝试将文本框中的输入用作字符串。问题是我需要它仅在填充框时使用它。我的目标是允许用户在框中输入用户名,如果框为空,我希望它尽可能使用我的全局静态字符串。如果有更好的想法,我会支持他们

我的程序使用 USERNAME 变量来获取用户名,但我希望用户能够在需要时在框中输入用户名的选项。

string username = (Environment.GetEnvironmentVariable("USERNAME")); 

谢谢你

public partial class Form1 : Form
    {

//My original strings, This is what i need to fix

       static string config = File.ReadAllText("config.ini");
       static string username = (Environment.GetEnvironmentVariable("USERNAME"));
       static string Backups = config + @"\" + username + @"\" + "Backups" + @"\";
       static string items;

        public Form1()
        {
            InitializeComponent();

        }

// How would i re purpose the string depending on the if?
  if (!String.IsNullOrEmpty(toolStripTextBox1.Text))
            {
                toolStripTextBox1.Text = username;
                MessageBox.Show(username);

            }
            else
            {
                string username = (Environment.GetEnvironmentVariable("USERNAME"));

            }
4

2 回答 2

2

如果toolStripTextBox1不为空,则您将username字符串中的值放入toolStripTextBox1.. ?在我看来,来自 IF 和 Else 的值都将是相同的,即从您的配置文件中获取的用户名值。

所以我不确定我是否正确理解了你的问题,但我猜你想要这样的东西:

 if (!String.IsNullOrEmpty(toolStripTextBox1.Text))
    {
      username = toolStripTextBox1.Text;
     MessageBox.Show(username); // will be the username the user enters in the textbox
     }
      else
    {
      MessageBox.Show(username); // will be the username taken from your config file
    }
于 2013-07-16T10:52:11.600 回答
1

如果我理解你是正确的,这就是你的问题。

 if (!String.IsNullOrEmpty(toolStripTextBox1.Text))
            {
                toolStripTextBox1.Text = username;

它应该是

string username = toolStripTextBox1.Text;
于 2013-07-16T10:51:58.043 回答