本文整理汇总了C#中Dynamo.Models.DynamoModel.AddHomeWorkspace方法的典型用法代码示例。如果您正苦于以下问题:C# DynamoModel.AddHomeWorkspace方法的具体用法?C# DynamoModel.AddHomeWorkspace怎么用?C# DynamoModel.AddHomeWorkspace使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Dynamo.Models.DynamoModel
的用法示例。
在下文中一共展示了DynamoModel.AddHomeWorkspace方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DynamoViewModel
public DynamoViewModel(DynamoController controller, string commandFilePath)
{
//create the model
_model = new DynamoModel();
dynSettings.Controller.DynamoModel = _model;
//register for property change notifications
//on the model and the controller
_model.PropertyChanged += _model_PropertyChanged;
dynSettings.Controller.PropertyChanged += Controller_PropertyChanged;
_model.Workspaces.CollectionChanged += Workspaces_CollectionChanged;
_model.AddHomeWorkspace();
_model.CurrentWorkspace = _model.HomeSpace;
Controller = controller;
//Register for a notification when the update manager downloads an update
dynSettings.Controller.UpdateManager.UpdateDownloaded += Instance_UpdateDownloaded;
// Instantiate an AutomationSettings to handle record/playback.
automationSettings = new AutomationSettings(this, commandFilePath);
OpenCommand = new DelegateCommand(_model.Open, _model.CanOpen);
ShowOpenDialogAndOpenResultCommand = new DelegateCommand(_model.ShowOpenDialogAndOpenResult, _model.CanShowOpenDialogAndOpenResultCommand);
WriteToLogCmd = new DelegateCommand(_model.WriteToLog, _model.CanWriteToLog);
PostUiActivationCommand = new DelegateCommand(_model.PostUIActivation, _model.CanDoPostUIActivation);
AddNoteCommand = new DelegateCommand(_model.AddNote, _model.CanAddNote);
AddToSelectionCommand = new DelegateCommand(_model.AddToSelection, _model.CanAddToSelection);
ShowNewFunctionDialogCommand = new DelegateCommand(_model.ShowNewFunctionDialogAndMakeFunction, _model.CanShowNewFunctionDialogCommand);
SaveRecordedCommand = new DelegateCommand(SaveRecordedCommands, CanSaveRecordedCommands);
InsertPausePlaybackCommand = new DelegateCommand(ExecInsertPausePlaybackCommand, CanInsertPausePlaybackCommand);
GoHomeCommand = new DelegateCommand(GoHomeView, CanGoHomeView);
SelectAllCommand = new DelegateCommand(SelectAll, CanSelectAll);
ShowSaveDialogAndSaveResultCommand = new DelegateCommand(ShowSaveDialogAndSaveResult, CanShowSaveDialogAndSaveResult);
SaveCommand = new DelegateCommand(_model.Save, _model.CanSave);
SaveAsCommand = new DelegateCommand(_model.SaveAs, _model.CanSaveAs);
HomeCommand = new DelegateCommand(_model.Home, _model.CanGoHome);
NewHomeWorkspaceCommand = new DelegateCommand(MakeNewHomeWorkspace, CanMakeNewHomeWorkspace);
GoToWorkspaceCommand = new DelegateCommand(GoToWorkspace, CanGoToWorkspace);
DeleteCommand = new DelegateCommand(_model.Delete, _model.CanDelete);
ExitCommand = new DelegateCommand(Exit, CanExit);
ToggleFullscreenWatchShowingCommand = new DelegateCommand(ToggleFullscreenWatchShowing, CanToggleFullscreenWatchShowing);
ToggleCanNavigateBackgroundCommand = new DelegateCommand(ToggleCanNavigateBackground, CanToggleCanNavigateBackground);
AlignSelectedCommand = new DelegateCommand(AlignSelected, CanAlignSelected); ;
ShowSaveDialogIfNeededAndSaveResultCommand = new DelegateCommand(ShowSaveDialogIfNeededAndSaveResult, CanShowSaveDialogIfNeededAndSaveResultCommand);
SaveImageCommand = new DelegateCommand(SaveImage, CanSaveImage);
ShowSaveImageDialogAndSaveResultCommand = new DelegateCommand(ShowSaveImageDialogAndSaveResult, CanShowSaveImageDialogAndSaveResult);
UndoCommand = new DelegateCommand(Undo, CanUndo);
RedoCommand = new DelegateCommand(Redo, CanRedo);
CopyCommand = new DelegateCommand(_model.Copy, _model.CanCopy);
PasteCommand = new DelegateCommand(_model.Paste, _model.CanPaste);
ToggleConsoleShowingCommand = new DelegateCommand(ToggleConsoleShowing, CanToggleConsoleShowing);
CancelRunCommand = new DelegateCommand(Controller.CancelRunCmd, Controller.CanCancelRunCmd);
RunExpressionCommand = new DelegateCommand(Controller.RunExprCmd, Controller.CanRunExprCmd);
DisplayFunctionCommand = new DelegateCommand(Controller.DisplayFunction, Controller.CanDisplayFunction);
SetConnectorTypeCommand = new DelegateCommand(SetConnectorType, CanSetConnectorType);
ReportABugCommand = new DelegateCommand(Controller.ReportABug, Controller.CanReportABug);
GoToWikiCommand = new DelegateCommand(GoToWiki, CanGoToWiki);
GoToSourceCodeCommand = new DelegateCommand(GoToSourceCode, CanGoToSourceCode);
ShowPackageManagerSearchCommand = new DelegateCommand(ShowPackageManagerSearch, CanShowPackageManagerSearch);
ShowInstalledPackagesCommand = new DelegateCommand(ShowInstalledPackages, CanShowInstalledPackages);
PublishCurrentWorkspaceCommand = new DelegateCommand(PublishCurrentWorkspace, CanPublishCurrentWorkspace);
PublishSelectedNodesCommand = new DelegateCommand(PublishSelectedNodes, CanPublishSelectedNodes);
ShowHideConnectorsCommand = new DelegateCommand(ShowConnectors, CanShowConnectors);
SelectNeighborsCommand = new DelegateCommand(SelectNeighbors, CanSelectNeighbors);
ClearLogCommand = new DelegateCommand(dynSettings.Controller.ClearLog, dynSettings.Controller.CanClearLog);
PanCommand = new DelegateCommand(Pan, CanPan);
ZoomInCommand = new DelegateCommand(ZoomIn, CanZoomIn);
ZoomOutCommand = new DelegateCommand(ZoomOut, CanZoomOut);
FitViewCommand = new DelegateCommand(FitView, CanFitView);
TogglePanCommand = new DelegateCommand(TogglePan, CanTogglePan);
EscapeCommand = new DelegateCommand(Escape, CanEscape);
SelectVisualizationInViewCommand = new DelegateCommand(SelectVisualizationInView, CanSelectVisualizationInView);
GetBranchVisualizationCommand = new DelegateCommand(GetBranchVisualization, CanGetBranchVisualization);
TogglePreviewBubbleVisibilityCommand = new DelegateCommand(TogglePreviewBubbleVisibility, CanTogglePreviewBubbleVisibility);
ExportToSTLCommand = new DelegateCommand(ExportToSTL, CanExportToSTL);
ImportLibraryCommand = new DelegateCommand(ImportLibrary, CanImportLibrary);
SetLengthUnitCommand = new DelegateCommand(SetLengthUnit, CanSetLengthUnit);
SetAreaUnitCommand = new DelegateCommand(SetAreaUnit, CanSetAreaUnit);
SetVolumeUnitCommand = new DelegateCommand(SetVolumeUnit, CanSetVolumeUnit);
ShowAboutWindowCommand = new DelegateCommand(ShowAboutWindow, CanShowAboutWindow);
CheckForUpdateCommand = new DelegateCommand(CheckForUpdate, CanCheckForUpdate);
SetNumberFormatCommand = new DelegateCommand(SetNumberFormat, CanSetNumberFormat);
DynamoLogger.Instance.PropertyChanged += new System.ComponentModel.PropertyChangedEventHandler(Instance_PropertyChanged);
DynamoSelection.Instance.Selection.CollectionChanged += SelectionOnCollectionChanged;
dynSettings.Controller.VisualizationManager.PropertyChanged += VisualizationManager_PropertyChanged;
this.Model.PropertyChanged += (e, args) =>
{
if (args.PropertyName == "CurrentWorkspace" && dynSettings.Controller.DynamoModel.CurrentWorkspace != null)
{
var visibleWorkspace =
(dynSettings.Controller.DynamoModel.CurrentWorkspace is CustomNodeWorkspaceModel);
dynSettings.Controller.SearchViewModel.SearchElements
.Where(x => x.Name == "Input" || x.Name == "Output")
.OfType<NodeSearchElement>()
//.........这里部分代码省略.........