我正在尝试将 SelectionStart 和 SelectionLength 属性用于文本框。它没有任何效果,但也没有错误。它实际上是后台工作程序 ProgressChanged 方法的一部分,但我已经在测试解决方案中单独尝试了 SelectionStart 和 SelectionLength 并且它是相同的......没有任何反应......
有任何想法吗?谢谢!!!
private void backgroundWorker1_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
// Update the GUI as the music is playing
textBox1.SelectionStart = ((int)e.UserState);
textBox1.SelectionLength = (1);
}