如何从其他WPF表单设置WPF中的文本框或标签文本
本文关键字:WPF 文本 标签 设置 其他 表单 | 更新日期: 2023-09-27 18:04:20
我在c#中以WPF形式更新TextBox
文本时有问题。我以编程方式创建了新的形式,并添加了一个Label
和一个TextBox
,我有一个变量temp,它代表了我之前创建的缓冲区中的一些字符串。但是,当我尝试将文本设置为标签或文本框时,什么也没有发生。但是,我可以在新表单中更改窗口标题。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace BufferProba
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
BufferStream bfStream = new BufferStream();
private static Action EmptyDelegate = delegate() { };
public MainWindow()
{
InitializeComponent();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
Thread t = new Thread(SetText);
t.SetApartmentState(ApartmentState.STA);
t.IsBackground = true;
t.Start();
}
private void Button_Click_1(object sender, RoutedEventArgs e)
{
bfStream.put(tBox.Text.Trim());
tBox.Text = "";
}
public void SetText()
{
Thread.Sleep(5000);
Window myWindow = new Window();
StackPanel stackPanel = new StackPanel { Orientation = Orientation.Vertical };
TextBox tboxForm = new TextBox();
Label szzr = new Label { Content = "" };
stackPanel.Children.Add(szzr);
stackPanel.Children.Add(tboxForm);
myWindow.Content = stackPanel;
List<String> listaStringova = new List<String>();
while (true)
{
Thread.Sleep(5000);
String temp = bfStream.get();
listaStringova.Add(temp);
if (temp != "0")
{
//Console.WriteLine(temp);
myWindow.Title = temp;
szzr.Content = temp;
szzr.Background = new SolidColorBrush(Colors.Orange);
szzr.UpdateLayout();
tboxForm.Text = temp;
myWindow.Show();
}
else {
MessageBox.Show("Jebiga");
}
}
}
}
}
您需要确保访问TextBox的是UI线程。使用Dispatcher。如果它返回false,则开始调用一个UI线程。你应该可以在网上找到很多这样的例子。
您应该在主线程上运行它。您可以使用Dispatcher来做同样的事情例子:
System.Windows.Application.Current.Dispatcher.Invoke(new Action(SetText()))