-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWpfAnimatedGif.xml
254 lines (254 loc) · 13.1 KB
/
WpfAnimatedGif.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<?xml version="1.0"?>
<doc>
<assembly>
<name>WpfAnimatedGif</name>
</assembly>
<members>
<member name="T:WpfAnimatedGif.ImageAnimationController">
<summary>
Provides a way to pause, resume or seek a GIF animation.
</summary>
</member>
<member name="P:WpfAnimatedGif.ImageAnimationController.FrameCount">
<summary>
Returns the number of frames in the image.
</summary>
</member>
<member name="P:WpfAnimatedGif.ImageAnimationController.Duration">
<summary>
Returns the duration of the animation.
</summary>
</member>
<member name="P:WpfAnimatedGif.ImageAnimationController.IsPaused">
<summary>
Returns a value that indicates whether the animation is paused.
</summary>
</member>
<member name="P:WpfAnimatedGif.ImageAnimationController.IsComplete">
<summary>
Returns a value that indicates whether the animation is complete.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageAnimationController.GotoFrame(System.Int32)">
<summary>
Seeks the animation to the specified frame index.
</summary>
<param name="index">The index of the frame to seek to</param>
</member>
<member name="P:WpfAnimatedGif.ImageAnimationController.CurrentFrame">
<summary>
Returns the current frame index.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageAnimationController.Pause">
<summary>
Pauses the animation.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageAnimationController.Play">
<summary>
Starts or resumes the animation. If the animation is complete, it restarts from the beginning.
</summary>
</member>
<member name="E:WpfAnimatedGif.ImageAnimationController.CurrentFrameChanged">
<summary>
Raised when the current frame changes.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageAnimationController.Finalize">
<summary>
Finalizes the current object.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageAnimationController.Dispose">
<summary>
Disposes the current object.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageAnimationController.Dispose(System.Boolean)">
<summary>
Disposes the current object
</summary>
<param name="disposing">true to dispose both managed an unmanaged resources, false to dispose only managed resources</param>
</member>
<member name="T:WpfAnimatedGif.ImageBehavior">
<summary>
Provides attached properties that display animated GIFs in a standard Image control.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.GetAnimatedSource(System.Windows.Controls.Image)">
<summary>
Gets the value of the <c>AnimatedSource</c> attached property for the specified object.
</summary>
<param name="obj">The element from which to read the property value.</param>
<returns>The currently displayed animated image.</returns>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.SetAnimatedSource(System.Windows.Controls.Image,System.Windows.Media.ImageSource)">
<summary>
Sets the value of the <c>AnimatedSource</c> attached property for the specified object.
</summary>
<param name="obj">The element on which to set the property value.</param>
<param name="value">The animated image to display.</param>
</member>
<member name="F:WpfAnimatedGif.ImageBehavior.AnimatedSourceProperty">
<summary>
Identifies the <c>AnimatedSource</c> attached property.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.GetRepeatBehavior(System.Windows.Controls.Image)">
<summary>
Gets the value of the <c>RepeatBehavior</c> attached property for the specified object.
</summary>
<param name="obj">The element from which to read the property value.</param>
<returns>The repeat behavior of the animated image.</returns>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.SetRepeatBehavior(System.Windows.Controls.Image,System.Windows.Media.Animation.RepeatBehavior)">
<summary>
Sets the value of the <c>RepeatBehavior</c> attached property for the specified object.
</summary>
<param name="obj">The element on which to set the property value.</param>
<param name="value">The repeat behavior of the animated image.</param>
</member>
<member name="F:WpfAnimatedGif.ImageBehavior.RepeatBehaviorProperty">
<summary>
Identifies the <c>RepeatBehavior</c> attached property.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.GetAnimationSpeedRatio(System.Windows.DependencyObject)">
<summary>
Gets the value of the <c>AnimationSpeedRatio</c> attached property for the specified object.
</summary>
<param name="obj">The element from which to read the property value.</param>
<returns>The speed ratio for the animated image.</returns>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.SetAnimationSpeedRatio(System.Windows.DependencyObject,System.Nullable{System.Double})">
<summary>
Sets the value of the <c>AnimationSpeedRatio</c> attached property for the specified object.
</summary>
<param name="obj">The element on which to set the property value.</param>
<param name="value">The speed ratio of the animated image.</param>
<remarks>The <c>AnimationSpeedRatio</c> and <c>AnimationDuration</c> properties are mutually exclusive, only one can be set at a time.</remarks>
</member>
<member name="F:WpfAnimatedGif.ImageBehavior.AnimationSpeedRatioProperty">
<summary>
Identifies the <c>AnimationSpeedRatio</c> attached property.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.GetAnimationDuration(System.Windows.DependencyObject)">
<summary>
Gets the value of the <c>AnimationDuration</c> attached property for the specified object.
</summary>
<param name="obj">The element from which to read the property value.</param>
<returns>The duration for the animated image.</returns>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.SetAnimationDuration(System.Windows.DependencyObject,System.Nullable{System.Windows.Duration})">
<summary>
Sets the value of the <c>AnimationDuration</c> attached property for the specified object.
</summary>
<param name="obj">The element on which to set the property value.</param>
<param name="value">The duration of the animated image.</param>
<remarks>The <c>AnimationSpeedRatio</c> and <c>AnimationDuration</c> properties are mutually exclusive, only one can be set at a time.</remarks>
</member>
<member name="F:WpfAnimatedGif.ImageBehavior.AnimationDurationProperty">
<summary>
Identifies the <c>AnimationDuration</c> attached property.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.GetAnimateInDesignMode(System.Windows.DependencyObject)">
<summary>
Gets the value of the <c>AnimateInDesignMode</c> attached property for the specified object.
</summary>
<param name="obj">The element from which to read the property value.</param>
<returns>true if GIF animations are shown in design mode; false otherwise.</returns>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.SetAnimateInDesignMode(System.Windows.DependencyObject,System.Boolean)">
<summary>
Sets the value of the <c>AnimateInDesignMode</c> attached property for the specified object.
</summary>
<param name="obj">The element on which to set the property value.</param>
<param name="value">true to show GIF animations in design mode; false otherwise.</param>
</member>
<member name="F:WpfAnimatedGif.ImageBehavior.AnimateInDesignModeProperty">
<summary>
Identifies the <c>AnimateInDesignMode</c> attached property.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.GetAutoStart(System.Windows.Controls.Image)">
<summary>
Gets the value of the <c>AutoStart</c> attached property for the specified object.
</summary>
<param name="obj">The element from which to read the property value.</param>
<returns>true if the animation should start immediately when loaded. Otherwise, false.</returns>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.SetAutoStart(System.Windows.Controls.Image,System.Boolean)">
<summary>
Sets the value of the <c>AutoStart</c> attached property for the specified object.
</summary>
<param name="obj">The element from which to read the property value.</param>
<param name="value">true if the animation should start immediately when loaded. Otherwise, false.</param>
<remarks>The default value is true.</remarks>
</member>
<member name="F:WpfAnimatedGif.ImageBehavior.AutoStartProperty">
<summary>
Identifies the <c>AutoStart</c> attached property.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.GetAnimationController(System.Windows.Controls.Image)">
<summary>
Gets the animation controller for the specified <c>Image</c> control.
</summary>
<param name="imageControl"></param>
<returns></returns>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.GetIsAnimationLoaded(System.Windows.Controls.Image)">
<summary>
Gets the value of the <c>IsAnimationLoaded</c> attached property for the specified object.
</summary>
<param name="image">The element from which to read the property value.</param>
<returns>true if the animation is loaded. Otherwise, false.</returns>
</member>
<member name="F:WpfAnimatedGif.ImageBehavior.IsAnimationLoadedProperty">
<summary>
Identifies the <c>IsAnimationLoaded</c> attached property.
</summary>
</member>
<member name="F:WpfAnimatedGif.ImageBehavior.AnimationLoadedEvent">
<summary>
Identifies the <c>AnimationLoaded</c> attached event.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.AddAnimationLoadedHandler(System.Windows.Controls.Image,System.Windows.RoutedEventHandler)">
<summary>
Adds a handler for the AnimationLoaded attached event.
</summary>
<param name="image">The UIElement that listens to this event.</param>
<param name="handler">The event handler to be added.</param>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.RemoveAnimationLoadedHandler(System.Windows.Controls.Image,System.Windows.RoutedEventHandler)">
<summary>
Removes a handler for the AnimationLoaded attached event.
</summary>
<param name="image">The UIElement that listens to this event.</param>
<param name="handler">The event handler to be removed.</param>
</member>
<member name="F:WpfAnimatedGif.ImageBehavior.AnimationCompletedEvent">
<summary>
Identifies the <c>AnimationCompleted</c> attached event.
</summary>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.AddAnimationCompletedHandler(System.Windows.Controls.Image,System.Windows.RoutedEventHandler)">
<summary>
Adds a handler for the AnimationCompleted attached event.
</summary>
<param name="d">The UIElement that listens to this event.</param>
<param name="handler">The event handler to be added.</param>
</member>
<member name="M:WpfAnimatedGif.ImageBehavior.RemoveAnimationCompletedHandler(System.Windows.Controls.Image,System.Windows.RoutedEventHandler)">
<summary>
Removes a handler for the AnimationCompleted attached event.
</summary>
<param name="d">The UIElement that listens to this event.</param>
<param name="handler">The event handler to be removed.</param>
</member>
</members>
</doc>