/// <summary> /// Load tags. /// </summary> private void InitializeTags() { if (!TagDB.Load(ref tags)) { ShowErrorMessageBox(DatabaseError, "Loading tags failed!"); } }
// Loads the templateCreator, adds all of the tags to the tag combo box from the db. private void templateCreator_Load(object sender, EventArgs e) { //this.MinimumSize = new Size(this.Width, this.Height); //this.MaximumSize = new Size(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height); //this.AutoSize = true; //this.AutoSizeMode = AutoSizeMode.GrowAndShrink; templateSelectorComboBox.DropDownStyle = ComboBoxStyle.DropDownList; customTagComboBox.DropDownStyle = ComboBoxStyle.DropDownList; TemplateDB.Load(ref templates); TagDB.Load(ref tags); foreach (Tag myTag in tags) { customTagComboBox.Items.Add(myTag.Name); } reloadTemplateList(); }