如何在 WinForms 应用程序中执行此操作?我用 System.Windows.Forms.Timer 尝试过,但是当我最小化应用程序时,我无法再次最大化它。它落后于应用程序。我将 .Interval 属性用作 500。
编辑:代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
System.Windows.Forms.Timer Loop = new System.Windows.Forms.Timer();
Loop.Interval = 500;
Loop.Tick += new EventHandler(UpdateUI);
Loop.Start();
}
void UpdateUI(object sender, EventArgs e)
{
//ADD TO LIST ON USER INTERFACE
}
}
}