Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

c# windows forms function after load

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

PREVIOUS NEXT
Code Example
Csharp :: how to change the width of a panel unity 
Csharp :: c# arraylist to listview 
Csharp :: unity getcomponent transform.position 
Csharp :: convert uk string date to DateTime c# 
Csharp :: Nullable Types unity 
Csharp :: Load Level Action for unity 
Csharp :: unity input tastiera 
Csharp :: block nulltarge tpl dataflow 
Csharp :: wpf scoll to on new item datagrtid 
Csharp :: 10x10 table matrix C# 
Html :: google material icons cdn 
Html :: import js in html 
Html :: bootstrap text bold 
Html :: regex find html comment 
Html :: materialize cdn 
Html :: html disable drag image 
Html :: Uncaught ReferenceError: jQuery is not defined 
Html :: _blank in html 
Html :: rails add favicon 
Html :: difference between name and value in html 
Html :: html lien 
Html :: html phone 
Html :: html entity and 
Html :: ck editor cdn 
Html :: handlebars teamplate script tag 
Html :: html description tag 
Html :: add spaces html 
Html :: function to do when the html done loading 
Html :: password pattern html regex 
Html :: discernible name 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =