WPF根据UI线程控制状态更新NON UI线程数据

时间:2014-07-03 14:20:17

标签: c# wpf multithreading system.timers.timer

我创建了一个wpf应用程序。其中有一个复选框和两个用于启动和停止计时器的按钮。单击开始按钮后,System.Timers.Timer aTimer将开始运行并调用方法checkboxstatus()以获取复选框状态并将其显示给用户。即使选中复选框,我也会收到False消息。我使用了以下代码

public partial class MainWindow : Window
{  
    System.Timers.Timer aTimer = new System.Timers.Timer();
    bool ischeckboxchecked = false;

    public MainWindow()
    {
        InitializeComponent();
        aTimer.Elapsed += new ElapsedEventHandler(senddata_Tick);
    }

    private void button1_Click(object sender, RoutedEventArgs e)
    {
        aTimer.Interval = 3000;
        aTimer.Start();
    }
    public string checkboxstatus()
    {
        string data = string.Empty;
        ischeckboxchecked = false;
        Dispatcher.BeginInvoke((Action)(() =>
        {
            if (checkBox1.IsChecked == true)
            {
                ischeckboxchecked = true; //value is updating on each timer tick
            }
        }));
        data += ischeckboxchecked.ToString();
        return data;
    }
    private void senddata_Tick(Object sender, EventArgs args)
    {
        string postdata = string.Empty;
        postdata = checkboxstatus(); //every time am getting data as false
        MessageBox.Show(postdata);
    }
    private void button2_Click(object sender, RoutedEventArgs e)
    {
        aTimer.Stop();
    }

    private void checkBox1_Checked(object sender, RoutedEventArgs e)
    {

    }
}

任何一个人建议.......

1 个答案:

答案 0 :(得分:1)

您正在使用您的方法在调度程序上调用BeginInvokeBeginInvoke立即返回。使用Invoke来获取阻止调用,并仅在Dispatcher操作完成后返回。