wpf アプリケーションを作成しました。これには、タイマーを開始および停止するための 1 つのチェック ボックスと 2 つのボタンがあります。チェックボックスがオンになっていても、メッセージが 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)
{
}
}
誰かが提案する.......