Skip to content

Commit

Permalink
Adds AddPredeclaredClassModule to the ViewModel
Browse files Browse the repository at this point in the history
  • Loading branch information
ThunderFrame committed Jul 22, 2018
1 parent dd41026 commit a04219f
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -78,6 +78,8 @@ public sealed class CodeExplorerViewModel : ViewModelBase, IDisposable
AddClassModuleCommand = commands.OfType<AddClassModuleCommand>().SingleOrDefault();
AddUserFormCommand = commands.OfType<AddUserFormCommand>().SingleOrDefault();

AddPredeclaredClassModuleCommand = commands.OfType<AddPredeclaredClassModuleCommand>().SingleOrDefault();

OpenProjectPropertiesCommand = commands.OfType<OpenProjectPropertiesCommand>().SingleOrDefault();
RenameCommand = commands.OfType<RenameCommand>().SingleOrDefault();
IndenterCommand = commands.OfType<IndentCommand>().SingleOrDefault();
Expand Down Expand Up @@ -517,6 +519,8 @@ private void SwitchNodeState(CodeExplorerItemViewModel node, bool expandedState)
public CommandBase AddClassModuleCommand { get; }
public CommandBase AddUserFormCommand { get; }

public CommandBase AddPredeclaredClassModuleCommand { get; }

public CommandBase OpenDesignerCommand { get; }
public CommandBase OpenProjectPropertiesCommand { get; }

Expand Down

0 comments on commit a04219f

Please sign in to comment.