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();
     }
 }
示例#2
0
 public AutoLabelItem(string name, AutoLabel.Style style)
 {
     Name  = name;
     Style = style;
 }