📌  相关文章
📜  c# windows 窗体加载后的功能 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:07.834000             🧑  作者: Mango

代码示例1
private void Main_Load(object sender, System.EventArgs e)
{
    //Register it to Start in Load 
    //Starting from the Next time.
    this.Activated += AfterLoading;
}

private void AfterLoading(object sender, EventArgs e)
{
    this.Activated -= AfterLoading;
    //Write your code here.
}