public frmExplorer(AppSettings appsettings) { // Thread.CurrentThread.SetApartmentState(ApartmentState.STA); InitializeComponent(); this.childs = new ArrayList(); this.optset = (LocalAppSettings)appsettings; UpdateInterfaceFromConfg(); BindExplorerEvents(); this.localizator = new Localizator(); this.localizator.Culture = this.optset.Language; this.localizator.Localize(this); this.UpdateComboWidth(); this.BringToFront(); }
public frmExplorer(AppSettings appsettings, string url) : this(appsettings) { this.BeginNavigate(url); }