private static void RemoveDoFile_Executed(object target, ExecutedRoutedEventArgs e)
        {
            FA18CInterfaceEditor editor = target as FA18CInterfaceEditor;
            string file = e.Parameter as string;

            if (editor != null && !string.IsNullOrWhiteSpace(file) && editor.Configuration.DoFiles.Contains(file))
            {
                editor.Configuration.DoFiles.Remove(file);
            }
        }
        private static void AddDoFile_Executed(object target, ExecutedRoutedEventArgs e)
        {
            FA18CInterfaceEditor editor = target as FA18CInterfaceEditor;
            string file = e.Parameter as string;

            if (editor != null && !string.IsNullOrWhiteSpace(file) && !editor.Configuration.DoFiles.Contains(file))
            {
                editor.Configuration.DoFiles.Add((string)e.Parameter);
                editor.NewDoFile.Text = "";
            }
        }