comparison Messaging/Libs/Elysium.Theme.1.3/System.Windows.Interactivity.xml @ 26:045dac571339

Working on data binding to a user control
author adminsh@apollo
date Wed, 21 Mar 2012 15:39:53 +0000
parents
children
comparison
equal deleted inserted replaced
25:81f9b72a44ce 26:045dac571339
1 <?xml version="1.0"?>
2 <doc>
3 <assembly>
4 <name>System.Windows.Interactivity</name>
5 </assembly>
6 <members>
7 <member name="T:System.Windows.Interactivity.AttachableCollection`1">
8 <summary>
9 Represents a collection of IAttachedObject with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes.
10 </summary>
11 </member>
12 <member name="T:System.Windows.Interactivity.IAttachedObject">
13 <summary>
14 An interface for an object that can be attached to another object.
15 </summary>
16 </member>
17 <member name="M:System.Windows.Interactivity.IAttachedObject.Attach(System.Windows.DependencyObject)">
18 <summary>
19 Attaches to the specified object.
20 </summary>
21 <param name="dependencyObject">The object to attach to.</param>
22 </member>
23 <member name="M:System.Windows.Interactivity.IAttachedObject.Detach">
24 <summary>
25 Detaches this instance from its associated object.
26 </summary>
27 </member>
28 <member name="P:System.Windows.Interactivity.IAttachedObject.AssociatedObject">
29 <summary>
30 Gets the associated object.
31 </summary>
32 <value>The associated object.</value>
33 <remarks>Represents the object the instance is attached to.</remarks>
34 </member>
35 <member name="M:System.Windows.Interactivity.AttachableCollection`1.#ctor">
36 <summary>
37 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.AttachableCollection`1"/> class.
38 </summary>
39 <remarks>Internal, because this should not be inherited outside this assembly.</remarks>
40 </member>
41 <member name="M:System.Windows.Interactivity.AttachableCollection`1.OnAttached">
42 <summary>
43 Called immediately after the collection is attached to an AssociatedObject.
44 </summary>
45 </member>
46 <member name="M:System.Windows.Interactivity.AttachableCollection`1.OnDetaching">
47 <summary>
48 Called when the collection is being detached from its AssociatedObject, but before it has actually occurred.
49 </summary>
50 </member>
51 <member name="M:System.Windows.Interactivity.AttachableCollection`1.ItemAdded(`0)">
52 <summary>
53 Called when a new item is added to the collection.
54 </summary>
55 <param name="item">The new item.</param>
56 </member>
57 <member name="M:System.Windows.Interactivity.AttachableCollection`1.ItemRemoved(`0)">
58 <summary>
59 Called when an item is removed from the collection.
60 </summary>
61 <param name="item">The removed item.</param>
62 </member>
63 <member name="M:System.Windows.Interactivity.AttachableCollection`1.VerifyAdd(`0)">
64 <exception cref="T:System.InvalidOperationException">Cannot add the instance to a collection more than once.</exception>
65 </member>
66 <member name="M:System.Windows.Interactivity.AttachableCollection`1.Attach(System.Windows.DependencyObject)">
67 <summary>
68 Attaches to the specified object.
69 </summary>
70 <param name="dependencyObject">The object to attach to.</param>
71 <exception cref="T:System.InvalidOperationException">The IAttachedObject is already attached to a different object.</exception>
72 </member>
73 <member name="M:System.Windows.Interactivity.AttachableCollection`1.Detach">
74 <summary>
75 Detaches this instance from its associated object.
76 </summary>
77 </member>
78 <member name="P:System.Windows.Interactivity.AttachableCollection`1.AssociatedObject">
79 <summary>
80 The object on which the collection is hosted.
81 </summary>
82 </member>
83 <member name="P:System.Windows.Interactivity.AttachableCollection`1.System#Windows#Interactivity#IAttachedObject#AssociatedObject">
84 <summary>
85 Gets the associated object.
86 </summary>
87 <value>The associated object.</value>
88 </member>
89 <member name="T:System.Windows.Interactivity.Behavior`1">
90 <summary>
91 Encapsulates state information and zero or more ICommands into an attachable object.
92 </summary>
93 <typeparam name="T">The type the <see cref="T:System.Windows.Interactivity.Behavior`1"/> can be attached to.</typeparam>
94 <remarks>
95 Behavior is the base class for providing attachable state and commands to an object.
96 The types the Behavior can be attached to can be controlled by the generic parameter.
97 Override OnAttached() and OnDetaching() methods to hook and unhook any necessary handlers
98 from the AssociatedObject.
99 </remarks>
100 </member>
101 <member name="T:System.Windows.Interactivity.Behavior">
102 <summary>
103 Encapsulates state information and zero or more ICommands into an attachable object.
104 </summary>
105 <remarks>This is an infrastructure class. Behavior authors should derive from Behavior&lt;T&gt; instead of from this class.</remarks>
106 </member>
107 <member name="M:System.Windows.Interactivity.Behavior.OnAttached">
108 <summary>
109 Called after the behavior is attached to an AssociatedObject.
110 </summary>
111 <remarks>Override this to hook up functionality to the AssociatedObject.</remarks>
112 </member>
113 <member name="M:System.Windows.Interactivity.Behavior.OnDetaching">
114 <summary>
115 Called when the behavior is being detached from its AssociatedObject, but before it has actually occurred.
116 </summary>
117 <remarks>Override this to unhook functionality from the AssociatedObject.</remarks>
118 </member>
119 <member name="M:System.Windows.Interactivity.Behavior.Attach(System.Windows.DependencyObject)">
120 <summary>
121 Attaches to the specified object.
122 </summary>
123 <param name="dependencyObject">The object to attach to.</param>
124 <exception cref="T:System.InvalidOperationException">The Behavior is already hosted on a different element.</exception>
125 <exception cref="T:System.InvalidOperationException">dependencyObject does not satisfy the Behavior type constraint.</exception>
126 </member>
127 <member name="M:System.Windows.Interactivity.Behavior.Detach">
128 <summary>
129 Detaches this instance from its associated object.
130 </summary>
131 </member>
132 <member name="P:System.Windows.Interactivity.Behavior.AssociatedType">
133 <summary>
134 The type to which this behavior can be attached.
135 </summary>
136 </member>
137 <member name="P:System.Windows.Interactivity.Behavior.AssociatedObject">
138 <summary>
139 Gets the object to which this behavior is attached.
140 </summary>
141 </member>
142 <member name="P:System.Windows.Interactivity.Behavior.System#Windows#Interactivity#IAttachedObject#AssociatedObject">
143 <summary>
144 Gets the associated object.
145 </summary>
146 <value>The associated object.</value>
147 </member>
148 <member name="M:System.Windows.Interactivity.Behavior`1.#ctor">
149 <summary>
150 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.Behavior`1"/> class.
151 </summary>
152 </member>
153 <member name="P:System.Windows.Interactivity.Behavior`1.AssociatedObject">
154 <summary>
155 Gets the object to which this <see cref="T:System.Windows.Interactivity.Behavior`1"/> is attached.
156 </summary>
157 </member>
158 <member name="T:System.Windows.Interactivity.BehaviorCollection">
159 <summary>
160 Represents a collection of behaviors with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes.
161 </summary>
162 </member>
163 <member name="M:System.Windows.Interactivity.BehaviorCollection.#ctor">
164 <summary>
165 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.BehaviorCollection"/> class.
166 </summary>
167 <remarks>Internal, because this should not be inherited outside this assembly.</remarks>
168 </member>
169 <member name="M:System.Windows.Interactivity.BehaviorCollection.OnAttached">
170 <summary>
171 Called immediately after the collection is attached to an AssociatedObject.
172 </summary>
173 </member>
174 <member name="M:System.Windows.Interactivity.BehaviorCollection.OnDetaching">
175 <summary>
176 Called when the collection is being detached from its AssociatedObject, but before it has actually occurred.
177 </summary>
178 </member>
179 <member name="M:System.Windows.Interactivity.BehaviorCollection.ItemAdded(System.Windows.Interactivity.Behavior)">
180 <summary>
181 Called when a new item is added to the collection.
182 </summary>
183 <param name="item">The new item.</param>
184 </member>
185 <member name="M:System.Windows.Interactivity.BehaviorCollection.ItemRemoved(System.Windows.Interactivity.Behavior)">
186 <summary>
187 Called when an item is removed from the collection.
188 </summary>
189 <param name="item">The removed item.</param>
190 </member>
191 <member name="M:System.Windows.Interactivity.BehaviorCollection.CreateInstanceCore">
192 <summary>
193 Creates a new instance of the BehaviorCollection.
194 </summary>
195 <returns>The new instance.</returns>
196 </member>
197 <member name="T:System.Windows.Interactivity.CustomPropertyValueEditor">
198 <summary>
199 Enumerates possible values for reusable property value editors.
200 </summary>
201 </member>
202 <member name="F:System.Windows.Interactivity.CustomPropertyValueEditor.Element">
203 <summary>
204 Uses the element picker, if supported, to edit this property at design time.
205 </summary>
206 </member>
207 <member name="F:System.Windows.Interactivity.CustomPropertyValueEditor.Storyboard">
208 <summary>
209 Uses the storyboard picker, if supported, to edit this property at design time.
210 </summary>
211 </member>
212 <member name="F:System.Windows.Interactivity.CustomPropertyValueEditor.StateName">
213 <summary>
214 Uses the state picker, if supported, to edit this property at design time.
215 </summary>
216 </member>
217 <member name="F:System.Windows.Interactivity.CustomPropertyValueEditor.ElementBinding">
218 <summary>
219 Uses the element-binding picker, if supported, to edit this property at design time.
220 </summary>
221 </member>
222 <member name="F:System.Windows.Interactivity.CustomPropertyValueEditor.PropertyBinding">
223 <summary>
224 Uses the property-binding picker, if supported, to edit this property at design time.
225 </summary>
226 </member>
227 <member name="T:System.Windows.Interactivity.CustomPropertyValueEditorAttribute">
228 <summary>
229 Associates the given editor type with the property on which the CustomPropertyValueEditor is applied.
230 </summary>
231 <remarks>Use this attribute to get improved design-time editing for properties that denote element (by name), storyboards, or states (by name).</remarks>
232 </member>
233 <member name="M:System.Windows.Interactivity.CustomPropertyValueEditorAttribute.#ctor(System.Windows.Interactivity.CustomPropertyValueEditor)">
234 <summary>
235 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.CustomPropertyValueEditorAttribute"/> class.
236 </summary>
237 <param name="customPropertyValueEditor">The custom property value editor.</param>
238 </member>
239 <member name="P:System.Windows.Interactivity.CustomPropertyValueEditorAttribute.CustomPropertyValueEditor">
240 <summary>
241 Gets or sets the custom property value editor.
242 </summary>
243 <value>The custom property value editor.</value>
244 </member>
245 <member name="T:System.Windows.Interactivity.DefaultTriggerAttribute">
246 <summary>
247 Provides design tools information about what <see cref="T:System.Windows.Interactivity.TriggerBase"/> to instantiate for a given action or command.
248 </summary>
249 </member>
250 <member name="M:System.Windows.Interactivity.DefaultTriggerAttribute.#ctor(System.Type,System.Type,System.Object)">
251 <summary>
252 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.DefaultTriggerAttribute"/> class.
253 </summary>
254 <param name="targetType">The type this attribute applies to.</param>
255 <param name="triggerType">The type of <see cref="T:System.Windows.Interactivity.TriggerBase"/> to instantiate.</param>
256 <param name="parameters">A single argument for the specified <see cref="T:System.Windows.Interactivity.TriggerBase"/>.</param>
257 <exception cref="T:System.ArgumentException"><c cref="F:System.Windows.Interactivity.DefaultTriggerAttribute.triggerType"/> is not derived from TriggerBase.</exception>
258 <remarks>This constructor is useful if the specifed <see cref="T:System.Windows.Interactivity.TriggerBase"/> has a single argument. The
259 resulting code will be CLS compliant.</remarks>
260 </member>
261 <member name="M:System.Windows.Interactivity.DefaultTriggerAttribute.#ctor(System.Type,System.Type,System.Object[])">
262 <summary>
263 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.DefaultTriggerAttribute"/> class.
264 </summary>
265 <param name="targetType">The type this attribute applies to.</param>
266 <param name="triggerType">The type of <see cref="T:System.Windows.Interactivity.TriggerBase"/> to instantiate.</param>
267 <param name="parameters">The constructor arguments for the specified <see cref="T:System.Windows.Interactivity.TriggerBase"/>.</param>
268 <exception cref="T:System.ArgumentException"><c cref="F:System.Windows.Interactivity.DefaultTriggerAttribute.triggerType"/> is not derived from TriggerBase.</exception>
269 </member>
270 <member name="M:System.Windows.Interactivity.DefaultTriggerAttribute.Instantiate">
271 <summary>
272 Instantiates this instance.
273 </summary>
274 <returns>The <see cref="T:System.Windows.Interactivity.TriggerBase"/> specified by the DefaultTriggerAttribute.</returns>
275 </member>
276 <member name="P:System.Windows.Interactivity.DefaultTriggerAttribute.TargetType">
277 <summary>
278 Gets the type that this DefaultTriggerAttribute applies to.
279 </summary>
280 <value>The type this DefaultTriggerAttribute applies to.</value>
281 </member>
282 <member name="P:System.Windows.Interactivity.DefaultTriggerAttribute.TriggerType">
283 <summary>
284 Gets the type of the <see cref="T:System.Windows.Interactivity.TriggerBase"/> to instantiate.
285 </summary>
286 <value>The type of the <see cref="T:System.Windows.Interactivity.TriggerBase"/> to instantiate.</value>
287 </member>
288 <member name="P:System.Windows.Interactivity.DefaultTriggerAttribute.Parameters">
289 <summary>
290 Gets the parameters to pass to the <see cref="T:System.Windows.Interactivity.TriggerBase"/> constructor.
291 </summary>
292 <value>The parameters to pass to the <see cref="T:System.Windows.Interactivity.TriggerBase"/> constructor.</value>
293 </member>
294 <member name="M:System.Windows.Interactivity.DependencyObjectHelper.GetSelfAndAncestors(System.Windows.DependencyObject)">
295 <summary>
296 This method will use the VisualTreeHelper.GetParent method to do a depth first walk up
297 the visual tree and return all ancestors of the specified object, including the object itself.
298 </summary>
299 <param name="dependencyObject">The object in the visual tree to find ancestors of.</param>
300 <returns>Returns itself an all ancestors in the visual tree.</returns>
301 </member>
302 <member name="T:System.Windows.Interactivity.EventObserver">
303 <summary>
304 EventObserver is designed to help manage event handlers by detatching when disposed. Creating this object will also attach in the constructor.
305 </summary>
306 </member>
307 <member name="M:System.Windows.Interactivity.EventObserver.#ctor(System.Reflection.EventInfo,System.Object,System.Delegate)">
308 <summary>
309 Creates an instance of EventObserver and attaches to the supplied event on the supplied target. Call dispose to detach.
310 </summary>
311 <param name="eventInfo">The event to attach and detach from.</param>
312 <param name="target">The target object the event is defined on. Null if the method is static.</param>
313 <param name="handler">The delegate to attach to the event.</param>
314 </member>
315 <member name="M:System.Windows.Interactivity.EventObserver.Dispose">
316 <summary>
317 Detaches the handler from the event.
318 </summary>
319 </member>
320 <member name="T:System.Windows.Interactivity.EventTrigger">
321 <summary>
322 A trigger that listens for a specified event on its source and fires when that event is fired.
323 </summary>
324 </member>
325 <member name="T:System.Windows.Interactivity.EventTriggerBase`1">
326 <summary>
327 Represents a trigger that can listen to an element other than its AssociatedObject.
328 </summary>
329 <typeparam name="T">The type that this trigger can be associated with.</typeparam>
330 <remarks>
331 EventTriggerBase extends TriggerBase to add knowledge of another object than the one it is attached to.
332 This allows a user to attach a Trigger/Action pair to one element and invoke the Action in response to a
333 change in another object somewhere else. Override OnSourceChanged to hook or unhook handlers on the source
334 element, and OnAttached/OnDetaching for the associated element. The type of the Source element can be
335 constrained by the generic type parameter. If you need control over the type of the
336 AssociatedObject, set a TypeConstraintAttribute on your derived type.
337 </remarks>
338 </member>
339 <member name="T:System.Windows.Interactivity.EventTriggerBase">
340 <summary>
341 Represents a trigger that can listen to an object other than its AssociatedObject.
342 </summary>
343 <remarks>This is an infrastructure class. Trigger authors should derive from EventTriggerBase&lt;T&gt; instead of this class.</remarks>
344 </member>
345 <member name="T:System.Windows.Interactivity.TriggerBase">
346 <summary>
347 Represents an object that can invoke Actions conditionally.
348 </summary>
349 <remarks>This is an infrastructure class. Trigger authors should derive from Trigger&lt;T&gt; instead of this class.</remarks>
350 </member>
351 <member name="M:System.Windows.Interactivity.TriggerBase.InvokeActions(System.Object)">
352 <summary>
353 Invoke all actions associated with this trigger.
354 </summary>
355 <remarks>Derived classes should call this to fire the trigger.</remarks>
356 </member>
357 <member name="M:System.Windows.Interactivity.TriggerBase.OnAttached">
358 <summary>
359 Called after the trigger is attached to an AssociatedObject.
360 </summary>
361 </member>
362 <member name="M:System.Windows.Interactivity.TriggerBase.OnDetaching">
363 <summary>
364 Called when the trigger is being detached from its AssociatedObject, but before it has actually occurred.
365 </summary>
366 </member>
367 <member name="M:System.Windows.Interactivity.TriggerBase.CreateInstanceCore">
368 <summary>
369 Creates a new instance of the TriggerBase derived class.
370 </summary>
371 <returns>The new instance.</returns>
372 </member>
373 <member name="M:System.Windows.Interactivity.TriggerBase.Attach(System.Windows.DependencyObject)">
374 <summary>
375 Attaches to the specified object.
376 </summary>
377 <param name="dependencyObject">The object to attach to.</param>
378 <exception cref="T:System.InvalidOperationException">Cannot host the same trigger on more than one object at a time.</exception>
379 <exception cref="T:System.InvalidOperationException">dependencyObject does not satisfy the trigger type constraint.</exception>
380 </member>
381 <member name="M:System.Windows.Interactivity.TriggerBase.Detach">
382 <summary>
383 Detaches this instance from its associated object.
384 </summary>
385 </member>
386 <member name="P:System.Windows.Interactivity.TriggerBase.AssociatedObject">
387 <summary>
388 Gets the object to which the trigger is attached.
389 </summary>
390 <value>The associated object.</value>
391 </member>
392 <member name="P:System.Windows.Interactivity.TriggerBase.AssociatedObjectTypeConstraint">
393 <summary>
394 Gets the type constraint of the associated object.
395 </summary>
396 <value>The associated object type constraint.</value>
397 </member>
398 <member name="P:System.Windows.Interactivity.TriggerBase.Actions">
399 <summary>
400 Gets the actions associated with this trigger.
401 </summary>
402 <value>The actions associated with this trigger.</value>
403 </member>
404 <member name="E:System.Windows.Interactivity.TriggerBase.PreviewInvoke">
405 <summary>
406 Event handler for registering to PreviewInvoke.
407 </summary>
408 </member>
409 <member name="P:System.Windows.Interactivity.TriggerBase.System#Windows#Interactivity#IAttachedObject#AssociatedObject">
410 <summary>
411 Gets the associated object.
412 </summary>
413 <value>The associated object.</value>
414 </member>
415 <member name="M:System.Windows.Interactivity.EventTriggerBase.GetEventName">
416 <summary>
417 Specifies the name of the Event this EventTriggerBase is listening for.
418 </summary>
419 <returns></returns>
420 </member>
421 <member name="M:System.Windows.Interactivity.EventTriggerBase.OnEvent(System.EventArgs)">
422 <summary>
423 Called when the event associated with this EventTriggerBase is fired. By default, this will invoke all actions on the trigger.
424 </summary>
425 <param name="eventArgs">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
426 <remarks>Override this to provide more granular control over when actions associated with this trigger will be invoked.</remarks>
427 </member>
428 <member name="M:System.Windows.Interactivity.EventTriggerBase.OnSourceChangedImpl(System.Object,System.Object)">
429 <summary>
430 Called when the source changes.
431 </summary>
432 <param name="oldSource">The old source.</param>
433 <param name="newSource">The new source.</param>
434 <remarks>This function should be overridden in derived classes to hook functionality to and unhook functionality from the changing source objects.</remarks>
435 </member>
436 <member name="M:System.Windows.Interactivity.EventTriggerBase.OnAttached">
437 <summary>
438 Called after the trigger is attached to an AssociatedObject.
439 </summary>
440 </member>
441 <member name="M:System.Windows.Interactivity.EventTriggerBase.OnDetaching">
442 <summary>
443 Called when the trigger is being detached from its AssociatedObject, but before it has actually occurred.
444 </summary>
445 </member>
446 <member name="M:System.Windows.Interactivity.EventTriggerBase.RegisterEvent(System.Object,System.String)">
447 <exception cref="T:System.ArgumentException">Could not find eventName on the Target.</exception>
448 </member>
449 <member name="P:System.Windows.Interactivity.EventTriggerBase.AssociatedObjectTypeConstraint">
450 <summary>
451 Gets the type constraint of the associated object.
452 </summary>
453 <value>The associated object type constraint.</value>
454 <remarks>Define a TypeConstraintAttribute on a derived type to constrain the types it may be attached to.</remarks>
455 </member>
456 <member name="P:System.Windows.Interactivity.EventTriggerBase.SourceTypeConstraint">
457 <summary>
458 Gets the source type constraint.
459 </summary>
460 <value>The source type constraint.</value>
461 </member>
462 <member name="P:System.Windows.Interactivity.EventTriggerBase.SourceObject">
463 <summary>
464 Gets or sets the target object. If TargetObject is not set, the target will look for the object specified by TargetName. If an element referred to by TargetName cannot be found, the target will default to the AssociatedObject. This is a dependency property.
465 </summary>
466 <value>The target object.</value>
467 </member>
468 <member name="P:System.Windows.Interactivity.EventTriggerBase.SourceName">
469 <summary>
470 Gets or sets the name of the element this EventTriggerBase listens for as a source. If the name is not set or cannot be resolved, the AssociatedObject will be used. This is a dependency property.
471 </summary>
472 <value>The name of the source element.</value>
473 </member>
474 <member name="P:System.Windows.Interactivity.EventTriggerBase.Source">
475 <summary>
476 Gets the resolved source. If <c ref="SourceName"/> is not set or cannot be resolved, defaults to AssociatedObject.
477 </summary>
478 <value>The resolved source object.</value>
479 <remarks>In general, this property should be used in place of AssociatedObject in derived classes.</remarks>
480 <exception cref="T:System.InvalidOperationException">The element pointed to by <c cref="P:System.Windows.Interactivity.EventTriggerBase.Source"/> does not satisify the type constraint.</exception>
481 </member>
482 <member name="M:System.Windows.Interactivity.EventTriggerBase`1.#ctor">
483 <summary>
484 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.EventTriggerBase`1"/> class.
485 </summary>
486 </member>
487 <member name="M:System.Windows.Interactivity.EventTriggerBase`1.OnSourceChanged(`0,`0)">
488 <summary>
489 Called when the source property changes.
490 </summary>
491 <remarks>Override this to hook functionality to and unhook functionality from the specified source, rather than the AssociatedObject.</remarks>
492 <param name="oldSource">The old source.</param>
493 <param name="newSource">The new source.</param>
494 </member>
495 <member name="P:System.Windows.Interactivity.EventTriggerBase`1.Source">
496 <summary>
497 Gets the resolved source. If <c ref="SourceName"/> is not set or cannot be resolved, defaults to AssociatedObject.
498 </summary>
499 <value>The resolved source object.</value>
500 <remarks>In general, this property should be used in place of AssociatedObject in derived classes.</remarks>
501 </member>
502 <member name="M:System.Windows.Interactivity.EventTrigger.#ctor">
503 <summary>
504 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.EventTrigger"/> class.
505 </summary>
506 </member>
507 <member name="M:System.Windows.Interactivity.EventTrigger.#ctor(System.String)">
508 <summary>
509 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.EventTrigger"/> class.
510 </summary>
511 <param name="eventName">Name of the event.</param>
512 </member>
513 <member name="P:System.Windows.Interactivity.EventTrigger.EventName">
514 <summary>
515 Gets or sets the name of the event to listen for. This is a dependency property.
516 </summary>
517 <value>The name of the event.</value>
518 </member>
519 <member name="T:System.Windows.Interactivity.Interaction">
520 <summary>
521 Static class that owns the Triggers and Behaviors attached properties. Handles propagation of AssociatedObject change notifications.
522 </summary>
523 </member>
524 <member name="F:System.Windows.Interactivity.Interaction.TriggersProperty">
525 <summary>
526 This property is used as the internal backing store for the public Triggers attached property.
527 </summary>
528 <remarks>
529 This property is not exposed publicly. This forces clients to use the GetTriggers and SetTriggers methods to access the
530 collection, ensuring the collection exists and is set before it is used.
531 </remarks>
532 </member>
533 <member name="F:System.Windows.Interactivity.Interaction.BehaviorsProperty">
534 <summary>
535 This property is used as the internal backing store for the public Behaviors attached property.
536 </summary>
537 <remarks>
538 This property is not exposed publicly. This forces clients to use the GetBehaviors and SetBehaviors methods to access the
539 collection, ensuring the collection exists and is set before it is used.
540 </remarks>
541 </member>
542 <member name="M:System.Windows.Interactivity.Interaction.GetTriggers(System.Windows.DependencyObject)">
543 <summary>
544 Gets the TriggerCollection containing the triggers associated with the specified object.
545 </summary>
546 <param name="obj">The object from which to retrieve the triggers.</param>
547 <returns>A TriggerCollection containing the triggers associated with the specified object.</returns>
548 </member>
549 <member name="M:System.Windows.Interactivity.Interaction.GetBehaviors(System.Windows.DependencyObject)">
550 <summary>
551 Gets the <see cref="T:System.Windows.Interactivity.BehaviorCollection"/> associated with a specified object.
552 </summary>
553 <param name="obj">The object from which to retrieve the <see cref="T:System.Windows.Interactivity.BehaviorCollection"/>.</param>
554 <returns>A <see cref="T:System.Windows.Interactivity.BehaviorCollection"/> containing the behaviors associated with the specified object.</returns>
555 </member>
556 <member name="M:System.Windows.Interactivity.Interaction.OnBehaviorsChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
557 <exception cref="T:System.InvalidOperationException">Cannot host the same BehaviorCollection on more than one object at a time.</exception>
558 </member>
559 <member name="M:System.Windows.Interactivity.Interaction.OnTriggersChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
560 <exception cref="T:System.InvalidOperationException">Cannot host the same TriggerCollection on more than one object at a time.</exception>
561 </member>
562 <member name="M:System.Windows.Interactivity.Interaction.IsElementLoaded(System.Windows.FrameworkElement)">
563 <summary>
564 A helper function to take the place of FrameworkElement.IsLoaded, as this property is not available in Silverlight.
565 </summary>
566 <param name="element">The element of interest.</param>
567 <returns>True if the element has been loaded; otherwise, False.</returns>
568 </member>
569 <member name="P:System.Windows.Interactivity.Interaction.ShouldRunInDesignMode">
570 <summary>
571 Gets or sets a value indicating whether to run as if in design mode.
572 </summary>
573 <value>
574 <c>True</c> if [should run in design mode]; otherwise, <c>False</c>.
575 </value>
576 <remarks>Not to be used outside unit tests.</remarks>
577 </member>
578 <member name="T:System.Windows.Interactivity.InvokeCommandAction">
579 <summary>
580 Executes a specified ICommand when invoked.
581 </summary>
582 </member>
583 <member name="T:System.Windows.Interactivity.TriggerAction`1">
584 <summary>
585 Represents an attachable object that encapsulates a unit of functionality.
586 </summary>
587 <typeparam name="T">The type to which this action can be attached.</typeparam>
588 </member>
589 <member name="T:System.Windows.Interactivity.TriggerAction">
590 <summary>
591 Represents an attachable object that encapsulates a unit of functionality.
592 </summary>
593 <remarks>This is an infrastructure class. Action authors should derive from TriggerAction&lt;T&gt; instead of this class.</remarks>
594 </member>
595 <member name="M:System.Windows.Interactivity.TriggerAction.CallInvoke(System.Object)">
596 <summary>
597 Attempts to invoke the action.
598 </summary>
599 <param name="parameter">The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference.</param>
600 </member>
601 <member name="M:System.Windows.Interactivity.TriggerAction.Invoke(System.Object)">
602 <summary>
603 Invokes the action.
604 </summary>
605 <param name="parameter">The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference.</param>
606 </member>
607 <member name="M:System.Windows.Interactivity.TriggerAction.OnAttached">
608 <summary>
609 Called after the action is attached to an AssociatedObject.
610 </summary>
611 </member>
612 <member name="M:System.Windows.Interactivity.TriggerAction.OnDetaching">
613 <summary>
614 Called when the action is being detached from its AssociatedObject, but before it has actually occurred.
615 </summary>
616 </member>
617 <member name="M:System.Windows.Interactivity.TriggerAction.CreateInstanceCore">
618 <summary>
619 When implemented in a derived class, creates a new instance of the <see cref="T:System.Windows.Freezable"/> derived class.
620 </summary>
621 <returns>The new instance.</returns>
622 </member>
623 <member name="M:System.Windows.Interactivity.TriggerAction.Attach(System.Windows.DependencyObject)">
624 <summary>
625 Attaches to the specified object.
626 </summary>
627 <param name="dependencyObject">The object to attach to.</param>
628 <exception cref="T:System.InvalidOperationException">Cannot host the same TriggerAction on more than one object at a time.</exception>
629 <exception cref="T:System.InvalidOperationException">dependencyObject does not satisfy the TriggerAction type constraint.</exception>
630 </member>
631 <member name="M:System.Windows.Interactivity.TriggerAction.Detach">
632 <summary>
633 Detaches this instance from its associated object.
634 </summary>
635 </member>
636 <member name="P:System.Windows.Interactivity.TriggerAction.IsEnabled">
637 <summary>
638 Gets or sets a value indicating whether this action will run when invoked. This is a dependency property.
639 </summary>
640 <value>
641 <c>True</c> if this action will be run when invoked; otherwise, <c>False</c>.
642 </value>
643 </member>
644 <member name="P:System.Windows.Interactivity.TriggerAction.AssociatedObject">
645 <summary>
646 Gets the object to which this action is attached.
647 </summary>
648 <value>The associated object.</value>
649 </member>
650 <member name="P:System.Windows.Interactivity.TriggerAction.AssociatedObjectTypeConstraint">
651 <summary>
652 Gets the associated object type constraint.
653 </summary>
654 <value>The associated object type constraint.</value>
655 </member>
656 <member name="P:System.Windows.Interactivity.TriggerAction.IsHosted">
657 <summary>
658 Gets or sets a value indicating whether this instance is attached.
659 </summary>
660 <value><c>True</c> if this instance is attached; otherwise, <c>False</c>.</value>
661 </member>
662 <member name="P:System.Windows.Interactivity.TriggerAction.System#Windows#Interactivity#IAttachedObject#AssociatedObject">
663 <summary>
664 Gets the associated object.
665 </summary>
666 <value>The associated object.</value>
667 </member>
668 <member name="M:System.Windows.Interactivity.TriggerAction`1.#ctor">
669 <summary>
670 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.TriggerAction`1"/> class.
671 </summary>
672 </member>
673 <member name="P:System.Windows.Interactivity.TriggerAction`1.AssociatedObject">
674 <summary>
675 Gets the object to which this <see cref="T:System.Windows.Interactivity.TriggerAction`1"/> is attached.
676 </summary>
677 <value>The associated object.</value>
678 </member>
679 <member name="P:System.Windows.Interactivity.TriggerAction`1.AssociatedObjectTypeConstraint">
680 <summary>
681 Gets the associated object type constraint.
682 </summary>
683 <value>The associated object type constraint.</value>
684 </member>
685 <member name="M:System.Windows.Interactivity.InvokeCommandAction.Invoke(System.Object)">
686 <summary>
687 Invokes the action.
688 </summary>
689 <param name="parameter">The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference.</param>
690 </member>
691 <member name="P:System.Windows.Interactivity.InvokeCommandAction.CommandName">
692 <summary>
693 Gets or sets the name of the command this action should invoke.
694 </summary>
695 <value>The name of the command this action should invoke.</value>
696 <remarks>This property will be superseded by the Command property if both are set.</remarks>
697 </member>
698 <member name="P:System.Windows.Interactivity.InvokeCommandAction.Command">
699 <summary>
700 Gets or sets the command this action should invoke. This is a dependency property.
701 </summary>
702 <value>The command to execute.</value>
703 <remarks>This property will take precedence over the CommandName property if both are set.</remarks>
704 </member>
705 <member name="P:System.Windows.Interactivity.InvokeCommandAction.CommandParameter">
706 <summary>
707 Gets or sets the command parameter. This is a dependency property.
708 </summary>
709 <value>The command parameter.</value>
710 <remarks>This is the value passed to ICommand.CanExecute and ICommand.Execute.</remarks>
711 </member>
712 <member name="T:System.Windows.Interactivity.NameResolvedEventArgs">
713 <summary>
714 Provides data about which objects were affected when resolving a name change.
715 </summary>
716 </member>
717 <member name="T:System.Windows.Interactivity.NameResolver">
718 <summary>
719 Helper class to handle the logic of resolving a TargetName into a Target element
720 based on the context provided by a host element.
721 </summary>
722 </member>
723 <member name="M:System.Windows.Interactivity.NameResolver.UpdateObjectFromName(System.Windows.DependencyObject)">
724 <summary>
725 Attempts to update the resolved object from the name within the context of the namescope reference element.
726 </summary>
727 <param name="oldObject">The old resolved object.</param>
728 <remarks>
729 Resets the existing target and attempts to resolve the current TargetName from the
730 context of the current Host. If it cannot resolve from the context of the Host, it will
731 continue up the visual tree until it resolves. If it has not resolved it when it reaches
732 the root, it will set the Target to null and write a warning message to Debug output.
733 </remarks>
734 </member>
735 <member name="E:System.Windows.Interactivity.NameResolver.ResolvedElementChanged">
736 <summary>
737 Occurs when the resolved element has changed.
738 </summary>
739 </member>
740 <member name="P:System.Windows.Interactivity.NameResolver.Name">
741 <summary>
742 Gets or sets the name of the element to attempt to resolve.
743 </summary>
744 <value>The name to attempt to resolve.</value>
745 </member>
746 <member name="P:System.Windows.Interactivity.NameResolver.Object">
747 <summary>
748 The resolved object. Will return the reference element if TargetName is null or empty, or if a resolve has not been attempted.
749 </summary>
750 </member>
751 <member name="P:System.Windows.Interactivity.NameResolver.NameScopeReferenceElement">
752 <summary>
753 Gets or sets the reference element from which to perform the name resolution.
754 </summary>
755 <value>The reference element.</value>
756 </member>
757 <member name="P:System.Windows.Interactivity.NameResolver.PendingReferenceElementLoad">
758 <summary>
759 Gets or sets a value indicating whether the reference element load is pending.
760 </summary>
761 <value>
762 <c>True</c> if [pending reference element load]; otherwise, <c>False</c>.
763 </value>
764 <remarks>
765 If the Host has not been loaded, the name will not be resolved.
766 In that case, delay the resolution and track that fact with this property.
767 </remarks>
768 </member>
769 <member name="T:System.Windows.Interactivity.TargetedTriggerAction`1">
770 <summary>
771 Represents an action that can be targeted to affect an object other than its AssociatedObject.
772 </summary>
773 <typeparam name="T">The type constraint on the target.</typeparam>
774 <remarks>
775 TargetedTriggerAction extends TriggerAction to add knowledge of another element than the one it is attached to.
776 This allows a user to invoke the action on an element other than the one it is attached to in response to a
777 trigger firing. Override OnTargetChanged to hook or unhook handlers on the target element, and OnAttached/OnDetaching
778 for the associated element. The type of the Target element can be constrained by the generic type parameter. If
779 you need control over the type of the AssociatedObject, set a TypeConstraintAttribute on your derived type.
780 </remarks>
781 </member>
782 <member name="T:System.Windows.Interactivity.TargetedTriggerAction">
783 <summary>
784 Represents an action that can be targeted to affect an object other than its AssociatedObject.
785 </summary>
786 <remarks>This is an infrastructure class. Action authors should derive from TargetedTriggerAction&lt;T&gt; instead of this class.</remarks>
787 </member>
788 <member name="M:System.Windows.Interactivity.TargetedTriggerAction.OnTargetChangedImpl(System.Object,System.Object)">
789 <summary>
790 Called when the target changes.
791 </summary>
792 <param name="oldTarget">The old target.</param>
793 <param name="newTarget">The new target.</param>
794 <remarks>This function should be overriden in derived classes to hook and unhook functionality from the changing source objects.</remarks>
795 </member>
796 <member name="M:System.Windows.Interactivity.TargetedTriggerAction.OnAttached">
797 <summary>
798 Called after the action is attached to an AssociatedObject.
799 </summary>
800 </member>
801 <member name="M:System.Windows.Interactivity.TargetedTriggerAction.OnDetaching">
802 <summary>
803 Called when the action is being detached from its AssociatedObject, but before it has actually occurred.
804 </summary>
805 </member>
806 <member name="P:System.Windows.Interactivity.TargetedTriggerAction.TargetObject">
807 <summary>
808 Gets or sets the target object. If TargetObject is not set, the target will look for the object specified by TargetName. If an element referred to by TargetName cannot be found, the target will default to the AssociatedObject. This is a dependency property.
809 </summary>
810 <value>The target object.</value>
811 </member>
812 <member name="P:System.Windows.Interactivity.TargetedTriggerAction.TargetName">
813 <summary>
814 Gets or sets the name of the object this action targets. If Target is set, this property is ignored. If Target is not set and TargetName is not set or cannot be resolved, the target will default to the AssociatedObject. This is a dependency property.
815 </summary>
816 <value>The name of the target object.</value>
817 </member>
818 <member name="P:System.Windows.Interactivity.TargetedTriggerAction.Target">
819 <summary>
820 Gets the target object. If TargetObject is set, returns TargetObject. Else, if TargetName is not set or cannot be resolved, defaults to the AssociatedObject.
821 </summary>
822 <value>The target object.</value>
823 <remarks>In general, this property should be used in place of AssociatedObject in derived classes.</remarks>
824 <exception cref="T:System.InvalidOperationException">The Target element does not satisfy the type constraint.</exception>
825 </member>
826 <member name="P:System.Windows.Interactivity.TargetedTriggerAction.AssociatedObjectTypeConstraint">
827 <summary>
828 Gets the associated object type constraint.
829 </summary>
830 <value>The associated object type constraint.</value>
831 <remarks>Define a TypeConstraintAttribute on a derived type to constrain the types it may be attached to.</remarks>
832 </member>
833 <member name="P:System.Windows.Interactivity.TargetedTriggerAction.TargetTypeConstraint">
834 <summary>
835 Gets the target type constraint.
836 </summary>
837 <value>The target type constraint.</value>
838 </member>
839 <member name="M:System.Windows.Interactivity.TargetedTriggerAction`1.#ctor">
840 <summary>
841 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.TargetedTriggerAction`1"/> class.
842 </summary>
843 </member>
844 <member name="M:System.Windows.Interactivity.TargetedTriggerAction`1.OnTargetChanged(`0,`0)">
845 <summary>
846 Called when the target property changes.
847 </summary>
848 <remarks>Override this to hook and unhook functionality on the specified Target, rather than the AssociatedObject.</remarks>
849 <param name="oldTarget">The old target.</param>
850 <param name="newTarget">The new target.</param>
851 </member>
852 <member name="P:System.Windows.Interactivity.TargetedTriggerAction`1.Target">
853 <summary>
854 Gets the target object. If TargetName is not set or cannot be resolved, defaults to the AssociatedObject.
855 </summary>
856 <value>The target.</value>
857 <remarks>In general, this property should be used in place of AssociatedObject in derived classes.</remarks>
858 </member>
859 <member name="T:System.Windows.Interactivity.TriggerActionCollection">
860 <summary>
861 Represents a collection of actions with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes.
862 </summary>
863 </member>
864 <member name="M:System.Windows.Interactivity.TriggerActionCollection.#ctor">
865 <summary>
866 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.TriggerActionCollection"/> class.
867 </summary>
868 <remarks>Internal, because this should not be inherited outside this assembly.</remarks>
869 </member>
870 <member name="M:System.Windows.Interactivity.TriggerActionCollection.OnAttached">
871 <summary>
872 Called immediately after the collection is attached to an AssociatedObject.
873 </summary>
874 </member>
875 <member name="M:System.Windows.Interactivity.TriggerActionCollection.OnDetaching">
876 <summary>
877 Called when the collection is being detached from its AssociatedObject, but before it has actually occurred.
878 </summary>
879 </member>
880 <member name="M:System.Windows.Interactivity.TriggerActionCollection.ItemAdded(System.Windows.Interactivity.TriggerAction)">
881 <summary>
882 Called when a new item is added to the collection.
883 </summary>
884 <param name="item">The new item.</param>
885 </member>
886 <member name="M:System.Windows.Interactivity.TriggerActionCollection.ItemRemoved(System.Windows.Interactivity.TriggerAction)">
887 <summary>
888 Called when an item is removed from the collection.
889 </summary>
890 <param name="item">The removed item.</param>
891 </member>
892 <member name="M:System.Windows.Interactivity.TriggerActionCollection.CreateInstanceCore">
893 <summary>
894 Creates a new instance of the TriggerActionCollection.
895 </summary>
896 <returns>The new instance.</returns>
897 </member>
898 <member name="T:System.Windows.Interactivity.TriggerBase`1">
899 <summary>
900 Represents an object that can invoke actions conditionally.
901 </summary>
902 <typeparam name="T">The type to which this trigger can be attached.</typeparam>
903 <remarks>
904 TriggerBase is the base class for controlling actions. Override OnAttached() and
905 OnDetaching() to hook and unhook handlers on the AssociatedObject. You may
906 constrain the types that a derived TriggerBase may be attached to by specifying
907 the generic parameter. Call InvokeActions() to fire all Actions associated with
908 this TriggerBase.
909 </remarks>
910 </member>
911 <member name="M:System.Windows.Interactivity.TriggerBase`1.#ctor">
912 <summary>
913 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.TriggerBase`1"/> class.
914 </summary>
915 </member>
916 <member name="P:System.Windows.Interactivity.TriggerBase`1.AssociatedObject">
917 <summary>
918 Gets the object to which the trigger is attached.
919 </summary>
920 <value>The associated object.</value>
921 </member>
922 <member name="P:System.Windows.Interactivity.TriggerBase`1.AssociatedObjectTypeConstraint">
923 <summary>
924 Gets the type constraint of the associated object.
925 </summary>
926 <value>The associated object type constraint.</value>
927 </member>
928 <member name="T:System.Windows.Interactivity.PreviewInvokeEventArgs">
929 <summary>
930 Argument passed to PreviewInvoke event. Assigning Cancelling to True will cancel the invoking of the trigger.
931 </summary>
932 <remarks>This is an infrastructure class. Behavior attached to a trigger base object can add its behavior as a listener to TriggerBase.PreviewInvoke.</remarks>
933 </member>
934 <member name="T:System.Windows.Interactivity.TriggerCollection">
935 <summary>
936 Represents a collection of triggers with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes.
937 </summary>
938 </member>
939 <member name="M:System.Windows.Interactivity.TriggerCollection.#ctor">
940 <summary>
941 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.TriggerCollection"/> class.
942 </summary>
943 <remarks>Internal, because this should not be inherited outside this assembly.</remarks>
944 </member>
945 <member name="M:System.Windows.Interactivity.TriggerCollection.OnAttached">
946 <summary>
947 Called immediately after the collection is attached to an AssociatedObject.
948 </summary>
949 </member>
950 <member name="M:System.Windows.Interactivity.TriggerCollection.OnDetaching">
951 <summary>
952 Called when the collection is being detached from its AssociatedObject, but before it has actually occurred.
953 </summary>
954 </member>
955 <member name="M:System.Windows.Interactivity.TriggerCollection.ItemAdded(System.Windows.Interactivity.TriggerBase)">
956 <summary>
957 Called when a new item is added to the collection.
958 </summary>
959 <param name="item">The new item.</param>
960 </member>
961 <member name="M:System.Windows.Interactivity.TriggerCollection.ItemRemoved(System.Windows.Interactivity.TriggerBase)">
962 <summary>
963 Called when an item is removed from the collection.
964 </summary>
965 <param name="item">The removed item.</param>
966 </member>
967 <member name="M:System.Windows.Interactivity.TriggerCollection.CreateInstanceCore">
968 <summary>
969 Creates a new instance of the <see cref="T:System.Windows.Interactivity.TriggerCollection"/>.
970 </summary>
971 <returns>The new instance.</returns>
972 </member>
973 <member name="T:System.Windows.Interactivity.TypeConstraintAttribute">
974 <summary>
975 Specifies type constraints on the AssociatedObject of TargetedTriggerAction and EventTriggerBase.
976 </summary>
977 </member>
978 <member name="M:System.Windows.Interactivity.TypeConstraintAttribute.#ctor(System.Type)">
979 <summary>
980 Initializes a new instance of the <see cref="T:System.Windows.Interactivity.TypeConstraintAttribute"/> class.
981 </summary>
982 <param name="constraint">The constraint type.</param>
983 </member>
984 <member name="P:System.Windows.Interactivity.TypeConstraintAttribute.Constraint">
985 <summary>
986 Gets the constraint type.
987 </summary>
988 <value>The constraint type.</value>
989 </member>
990 <member name="T:ExceptionStringTable">
991 <summary>
992 A strongly-typed resource class, for looking up localized strings, etc.
993 </summary>
994 </member>
995 <member name="P:ExceptionStringTable.ResourceManager">
996 <summary>
997 Returns the cached ResourceManager instance used by this class.
998 </summary>
999 </member>
1000 <member name="P:ExceptionStringTable.Culture">
1001 <summary>
1002 Overrides the current thread's CurrentUICulture property for all
1003 resource lookups using this strongly typed resource class.
1004 </summary>
1005 </member>
1006 <member name="P:ExceptionStringTable.CannotHostBehaviorCollectionMultipleTimesExceptionMessage">
1007 <summary>
1008 Looks up a localized string similar to Cannot set the same BehaviorCollection on multiple objects..
1009 </summary>
1010 </member>
1011 <member name="P:ExceptionStringTable.CannotHostBehaviorMultipleTimesExceptionMessage">
1012 <summary>
1013 Looks up a localized string similar to An instance of a Behavior cannot be attached to more than one object at a time..
1014 </summary>
1015 </member>
1016 <member name="P:ExceptionStringTable.CannotHostTriggerActionMultipleTimesExceptionMessage">
1017 <summary>
1018 Looks up a localized string similar to Cannot host an instance of a TriggerAction in multiple TriggerCollections simultaneously. Remove it from one TriggerCollection before adding it to another..
1019 </summary>
1020 </member>
1021 <member name="P:ExceptionStringTable.CannotHostTriggerCollectionMultipleTimesExceptionMessage">
1022 <summary>
1023 Looks up a localized string similar to Cannot set the same TriggerCollection on multiple objects..
1024 </summary>
1025 </member>
1026 <member name="P:ExceptionStringTable.CannotHostTriggerMultipleTimesExceptionMessage">
1027 <summary>
1028 Looks up a localized string similar to An instance of a trigger cannot be attached to more than one object at a time..
1029 </summary>
1030 </member>
1031 <member name="P:ExceptionStringTable.CommandDoesNotExistOnBehaviorWarningMessage">
1032 <summary>
1033 Looks up a localized string similar to The command &quot;{0}&quot; does not exist or is not publicly exposed on {1}..
1034 </summary>
1035 </member>
1036 <member name="P:ExceptionStringTable.DefaultTriggerAttributeInvalidTriggerTypeSpecifiedExceptionMessage">
1037 <summary>
1038 Looks up a localized string similar to &quot;{0}&quot; is not a valid type for the TriggerType parameter. Make sure &quot;{0}&quot; derives from TriggerBase..
1039 </summary>
1040 </member>
1041 <member name="P:ExceptionStringTable.DuplicateItemInCollectionExceptionMessage">
1042 <summary>
1043 Looks up a localized string similar to Cannot add the same instance of &quot;{0}&quot; to a &quot;{1}&quot; more than once..
1044 </summary>
1045 </member>
1046 <member name="P:ExceptionStringTable.EventTriggerBaseInvalidEventExceptionMessage">
1047 <summary>
1048 Looks up a localized string similar to The event &quot;{0}&quot; on type &quot;{1}&quot; has an incompatible signature. Make sure the event is public and satisfies the EventHandler delegate..
1049 </summary>
1050 </member>
1051 <member name="P:ExceptionStringTable.EventTriggerCannotFindEventNameExceptionMessage">
1052 <summary>
1053 Looks up a localized string similar to Cannot find an event named &quot;{0}&quot; on type &quot;{1}&quot;..
1054 </summary>
1055 </member>
1056 <member name="P:ExceptionStringTable.RetargetedTypeConstraintViolatedExceptionMessage">
1057 <summary>
1058 Looks up a localized string similar to An object of type &quot;{0}&quot; cannot have a {3} property of type &quot;{1}&quot;. Instances of type &quot;{0}&quot; can have only a {3} property of type &quot;{2}&quot;..
1059 </summary>
1060 </member>
1061 <member name="P:ExceptionStringTable.TypeConstraintViolatedExceptionMessage">
1062 <summary>
1063 Looks up a localized string similar to Cannot attach type &quot;{0}&quot; to type &quot;{1}&quot;. Instances of type &quot;{0}&quot; can only be attached to objects of type &quot;{2}&quot;..
1064 </summary>
1065 </member>
1066 <member name="P:ExceptionStringTable.UnableToResolveTargetNameWarningMessage">
1067 <summary>
1068 Looks up a localized string similar to Unable to resolve TargetName &quot;{0}&quot;..
1069 </summary>
1070 </member>
1071 </members>
1072 </doc>