Ejemplo n.º 1
0
 public ExportAnnotationsDlg(SkylineDataSchema dataSchema)
 {
     InitializeComponent();
     DataSchema = dataSchema;
     Handlers   = ImmutableList.ValueOf(ElementHandler.GetElementHandlers(dataSchema));
     _inUpdate  = true;
     foreach (var handler in Handlers)
     {
         listBoxElementTypes.Items.Add(handler.Name);
     }
     SelectAll(listBoxElementTypes);
     _inUpdate = false;
     UpdateUi();
     SelectAll(listBoxAnnotations);
     SelectAll(listBoxProperties);
 }