Bloom.Collection.CollectionSettingsDialog.OnLoad C# (CSharp) Method

OnLoad() private method

private OnLoad ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void OnLoad(object sender, EventArgs e)
        {
            _countryText.Text = _collectionSettings.Country;
            _provinceText.Text = _collectionSettings.Province;
            _districtText.Text = _collectionSettings.District;
            _bloomCollectionName.Text = _collectionSettings.CollectionName;
            LoadFontCombo();
            LoadPageNumberStyleCombo();
            LoadBrandingCombo();
            AdjustFontComboDropdownWidth();

            _loaded = true;
            Logger.WriteEvent("Entered Settings Dialog");
        }