1 instantiation of ActionButton
System.Workflow.ComponentModel (1)
AuthoringOM\Design\WorkflowView.cs (1)
1850
ActionButton fitallButton = new
ActionButton
(new Image[] { DR.GetImage(DR.FitToScreen) as Bitmap });
32 references to ActionButton
System.Workflow.ComponentModel (32)
AuthoringOM\Design\MessageFilters\DynamicActionMessageFilter.cs (27)
132
if (buttonBounds.Contains(clientPoint) && action.Buttons[j].State ==
ActionButton
.States.Disabled)
139
ActionButton
actionButton = action.Buttons[j];
140
if (actionButton.State !=
ActionButton
.States.Disabled)
145
actionButton.State =
ActionButton
.States.Pressed;
151
actionButton.State =
ActionButton
.States.Normal;
182
ActionButton
actionButton = action.Buttons[j];
192
if (actionButton.State !=
ActionButton
.States.Disabled &&
193
actionButton.State !=
ActionButton
.States.Pressed)
196
actionButton.State =
ActionButton
.States.Highlight;
198
actionButton.State =
ActionButton
.States.Normal;
205
if (actionButton.State ==
ActionButton
.States.Highlight)
206
actionButton.State =
ActionButton
.States.Normal;
258
ActionButton
actionButton = action.Buttons[j];
260
if (actionButton.State !=
ActionButton
.States.Disabled)
265
actionButton.State =
ActionButton
.States.Highlight;
266
else if (actionButton.State ==
ActionButton
.States.Highlight)
267
actionButton.State =
ActionButton
.States.Normal;
386
this.actions[this.draggedActionIndex].Buttons[this.draggedButtonIndex].State =
ActionButton
.States.Highlight;
414
private ItemList<
ActionButton
> buttons = null;
428
this.buttons = new ItemList<
ActionButton
>(this);
444
foreach (
ActionButton
button in this.buttons)
451
internal IList<
ActionButton
> Buttons
540
ActionButton
button = this.buttons[i];
544
if (button.State ==
ActionButton
.States.Normal || button.State ==
ActionButton
.States.Disabled)
547
ActivityDesignerPaint.DrawImage(graphics, buttonImage, buttonBounds, new Rectangle(Point.Empty, buttonImage.Size), DesignerContentAlignment.Fill, transparency, (button.State ==
ActionButton
.States.Disabled));
551
ButtonState state = (button.State ==
ActionButton
.States.Highlight) ? ButtonState.Normal : ButtonState.Pushed;
AuthoringOM\Design\WorkflowView.cs (5)
1850
ActionButton
fitallButton = new ActionButton(new Image[] { DR.GetImage(DR.FitToScreen) as Bitmap });
1881
this.fitAllAction.Buttons[0].State =
ActionButton
.States.Normal;
1887
ActionButton
fitallButton = sender as
ActionButton
;
1888
if (fitallButton == null || fitallButton.State !=
ActionButton
.States.Pressed)