Ejemplo n.º 1
0
 private void StartTagCheckButton_Click(object sender, EventArgs e)
 {
     imageTagsPoller.Start();
     StartTagCheckButton.Hide();
     StopTagCheckButton.Show();
     tagsLabel.Text = @"Retrieving tags... They will show below as they are found.";
 }
Ejemplo n.º 2
0
 private void StopTagCheckButton_Click(object sender, EventArgs e)
 {
     imageTagsPoller.Stop();
     StopTagCheckButton.Hide();
     StartTagCheckButton.Show();
     tagsLabel.Text = @"Tag retrieval stopped. Tags found are listed below.";
 }