Exemplo n.º 1
0
        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();
        }
Exemplo n.º 2
0
 public frmExplorer(AppSettings appsettings, string url)
     : this(appsettings)
 {
     this.BeginNavigate(url);
 }