9 writes to State
System.Workflow.ComponentModel (9)
AuthoringOM\Design\MessageFilters\DynamicActionMessageFilter.cs (8)
145actionButton.State = ActionButton.States.Pressed; 151actionButton.State = ActionButton.States.Normal; 196actionButton.State = ActionButton.States.Highlight; 198actionButton.State = ActionButton.States.Normal; 206actionButton.State = ActionButton.States.Normal; 265actionButton.State = ActionButton.States.Highlight; 267actionButton.State = ActionButton.States.Normal; 386this.actions[this.draggedActionIndex].Buttons[this.draggedButtonIndex].State = ActionButton.States.Highlight;
AuthoringOM\Design\WorkflowView.cs (1)
1881this.fitAllAction.Buttons[0].State = ActionButton.States.Normal;
13 references to State
System.Workflow.ComponentModel (13)
AuthoringOM\Design\MessageFilters\DynamicActionMessageFilter.cs (12)
132if (buttonBounds.Contains(clientPoint) && action.Buttons[j].State == ActionButton.States.Disabled) 140if (actionButton.State != ActionButton.States.Disabled) 192if (actionButton.State != ActionButton.States.Disabled && 193actionButton.State != ActionButton.States.Pressed) 205if (actionButton.State == ActionButton.States.Highlight) 260if (actionButton.State != ActionButton.States.Disabled) 266else if (actionButton.State == ActionButton.States.Highlight) 544if (button.State == ActionButton.States.Normal || button.State == ActionButton.States.Disabled) 547ActivityDesignerPaint.DrawImage(graphics, buttonImage, buttonBounds, new Rectangle(Point.Empty, buttonImage.Size), DesignerContentAlignment.Fill, transparency, (button.State == ActionButton.States.Disabled)); 551ButtonState state = (button.State == ActionButton.States.Highlight) ? ButtonState.Normal : ButtonState.Pushed; 557Image buttonImage = this.buttons[i].StateImages[(int)this.buttons[i].State];
AuthoringOM\Design\WorkflowView.cs (1)
1888if (fitallButton == null || fitallButton.State != ActionButton.States.Pressed)