Beispiel #1
0
 private void EditParserProfileClick(object sender, EventArgs e)
 {
     if (_currentProfile == null)
     {
         _currentProfile = new ParsingOptions();
         _currentProfile.Load(_availableProfiles[(string)_boxParserProfile.SelectedItem]);
     }
     ProfileEditor.Edit(_currentProfile);
 }
 private void CurrentProfileClicked(object sender, EventArgs e)
 {
     ProfileEditor.Edit(TrafficViewer.Instance.TrafficViewerFile.Profile);
 }