TextBoxes中编写的文本名称

时间:2015-12-25 03:51:36

标签: c# skype4com

所以我有一小段代码

    private void textBox1_TextChanged(object sender, EventArgs e)
    {
        string mood =
        var skype = new Skype();
        skype.CurrentUserProfile.MoodText = mood;
    }

如果我想让MoodText成为textBox1中输入的内容,我会使字符串情绪相等吗?

编辑:当我尝试Text时,无论我在运行应用程序时在文本框中输入什么,它都会使我的Skype心情Form1成为表单的名称。

1 个答案:

答案 0 :(得分:2)

您可以使用

获取文本框值
TextBox senderTextBox= (TextBox)sender; 
string mood = senderTextBox.Text;