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
}
}
}