ClearCanvas.Desktop.View.WinForms.DesktopWindowView.SetMenuModel C# (CSharp) Method

SetMenuModel() public method

Sets the menu model, causing the menu displayed on the screen to be updated.
The default implementation just sets the DesktopForm.MenuModel property. Override this method if you need to perform custom processing.
public SetMenuModel ( ClearCanvas.Desktop.Actions.ActionModelNode model ) : void
model ClearCanvas.Desktop.Actions.ActionModelNode
return void
        public virtual void SetMenuModel(ActionModelNode model)
        {
            _form.MenuModel = model;
        }