使用 c# 窗口窗体打开 GL

本文关键字:GL 窗体 窗口 使用 | 更新日期: 2023-09-27 18:32:40

我正在使用带有 c# 窗口表单的 open gl,现在我在表单中放了一个计时器,但在运行时,计时器刻度无效没有被调用我该如何解决这个问题?

使用 c# 窗口窗体打开 GL

没有给出例子。

最明显的检查是,您是否启动了计时器?

您使用哪种计时器?

你设置了即时报价监听器吗?(即使将计时器拖到Visual Studio的视觉端,也需要执行此操作)

试试本教程:http://www.dotnetperls.com/timer

波纹管取自教程...

static void Start()
{
_l = new List<DateTime>(); // Allocate the list
_timer = new Timer(3000); // Set up the timer for 3 seconds
//
// Type "_timer.Elapsed += " and press tab twice.
//
_timer.Elapsed += new ElapsedEventHandler(_timer_Elapsed);
_timer.Enabled = true; // Enable it
}
static void _timer_Elapsed(object sender, ElapsedEventArgs e)
{
_l.Add(DateTime.Now); // Add date on each timer event
}