private static void RemoveDoFile_Executed(object target, ExecutedRoutedEventArgs e)
        {
            Mi8SimpleInterfaceEditor editor = target as Mi8SimpleInterfaceEditor;
            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)
        {
            Mi8SimpleInterfaceEditor editor = target as Mi8SimpleInterfaceEditor;
            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 = "";
            }
        }