15 references to Buttons
System.Workflow.ComponentModel (15)
AuthoringOM\Design\MessageFilters\DynamicActionMessageFilter.cs (9)
129for (int j = 0; j < action.Buttons.Count; j++) 132if (buttonBounds.Contains(clientPoint) && action.Buttons[j].State == ActionButton.States.Disabled) 137for (int j = 0; j < action.Buttons.Count; j++) 139ActionButton actionButton = action.Buttons[j]; 180for (int j = 0; j < action.Buttons.Count; j++) 182ActionButton actionButton = action.Buttons[j]; 256for (int j = 0; j < action.Buttons.Count; j++) 258ActionButton actionButton = action.Buttons[j]; 386this.actions[this.draggedActionIndex].Buttons[this.draggedButtonIndex].State = ActionButton.States.Highlight;
AuthoringOM\Design\WorkflowView.cs (6)
1852fitAllAction.Buttons.Add(fitallButton); 1866this.fitAllAction.Buttons[0].Description = DR.GetString(DR.FitToScreenDescription); 1867this.fitAllAction.Buttons[0].StateImages = new Bitmap[] { DR.GetImage(DR.FitToScreen) as Bitmap }; 1873this.fitAllAction.Buttons[0].Description = DR.GetString(DR.FitToWorkflowDescription); 1874this.fitAllAction.Buttons[0].StateImages = new Bitmap[] { DR.GetImage(DR.FitToWorkflow) as Bitmap }; 1881this.fitAllAction.Buttons[0].State = ActionButton.States.Normal;