private void autoLabelStyleComboBox_SelectedIndexChanged(object sender, EventArgs e) { AutoLabel.Style newStyle = (AutoLabel.Style)autoLabelStyleComboBox.SelectedIndex; if (newStyle != mWorkProps.AutoLabelStyle) { mWorkProps.AutoLabelStyle = newStyle; mDirty = true; UpdateControls(); } }
public AutoLabelItem(string name, AutoLabel.Style style) { Name = name; Style = style; }