internal ItemStripAccessibleObject(AccessibleObjectType type, PreviewItemStrip itemStrip, int itemIndex) { this.itemIndex = -1; this.accessibleObjectType = type; this.itemStrip = itemStrip; this.itemIndex = itemIndex; }
public ActivityPreviewDesigner() { this.previewStrip = new PreviewItemStrip(this); this.previewStrip.SelectionChanged += new SelectionChangeEventHandler <SelectionChangeEventArgs>(this.OnPreviewChanged); this.previewStrip.HelpText = DR.GetString("DropActivitiesHere", new object[0]); }
internal ItemStripAccessibleObject(AccessibleObjectType type, PreviewItemStrip itemStrip) { this.accessibleObjectType = type; this.itemStrip = itemStrip; }
/// <summary> /// Default constructor to create ActivityPreviewDesigner /// </summary> public ActivityPreviewDesigner() { this.previewStrip = new PreviewItemStrip(this); this.previewStrip.SelectionChanged += new SelectionChangeEventHandler<SelectionChangeEventArgs>(OnPreviewChanged); this.previewStrip.HelpText = DR.GetString(DR.DropActivitiesHere); }