我剛纔看到下面的代碼,但我不明白構造函數聲明中基類右派的派生。這是什麼,這是可能的順序方法?在構造函數中使用繼承(publix X():y)
public SplashAppContext(Form mainForm, Form splashForm) : base(splashForm)
{
this.mainForm = mainForm;
splashTimer.Tick += new EventHandler(SplashTimeUp);
splashTimer.Interval = 2000;
splashTimer.Enabled = true;
}