forked from StockSharp/AlgoTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActiproSoftware.Views.Wpf.xml
1648 lines (1648 loc) · 213 KB
/
ActiproSoftware.Views.Wpf.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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?><doc><assembly><name>ActiproSoftware.Views.Wpf</name></assembly><members><member name="T:ActiproSoftware.Products.Views.AssemblyInfo"><summary>
Provides a class for retrieving information about the <c>ActiproSoftware.Views</c> assembly.
</summary></member><member name="P:ActiproSoftware.Products.Views.AssemblyInfo.Instance"><summary>
Gets the instance of the <see cref="T:ActiproSoftware.Products.AssemblyInfo" /> class for this assembly.
</summary><value>The instance of the <see cref="T:ActiproSoftware.Products.AssemblyInfo" /> class for this assembly.</value></member><member name="P:ActiproSoftware.Products.Views.AssemblyInfo.LicenseType"><summary>
Gets the type of license that is available for the assembly.
</summary><value>A <see cref="T:ActiproSoftware.Products.AssemblyLicenseType" /> specifying the type of license that is available for the assembly.</value></member><member name="P:ActiproSoftware.Products.Views.AssemblyInfo.Platform"><summary>
Gets the target platform for the assembly.
</summary><value>A <see cref="T:ActiproSoftware.Products.AssemblyPlatform" /> specifying the target platform for the assembly.</value></member><member name="P:ActiproSoftware.Products.Views.AssemblyInfo.ProductCode"><summary>
Gets the product code of the assembly.
</summary><value>A three-letter product code of the assembly.</value></member><member name="P:ActiproSoftware.Products.Views.AssemblyInfo.ProductId"><summary>
Gets the product ID of the assembly.
</summary><value>The product ID of the assembly.</value></member><member name="T:ActiproSoftware.Products.Views.ViewsLicenseToken"><summary>
Represents the license token class for this assembly that needs to be referenced in Visual Studio licenses.licx files.
</summary></member><member name="M:ActiproSoftware.Products.Views.ViewsLicenseToken.#ctor"><summary>
Initializes a new instance of the <c>ViewsLicenseToken</c> class.
</summary></member><member name="M:ActiproSoftware.Products.Views.ViewsLicenseToken.#ctor(System.Object)"><summary>
Initializes a new instance of the <c>ViewsLicenseToken</c> class.
</summary><param name="owner">The owner of the token (the object being licensed).</param></member><member name="T:ActiproSoftware.Products.Views.ViewsLogo"><summary>
Represents the logo for this product.
</summary><summary>
ViewsLogo
</summary></member><member name="M:ActiproSoftware.Products.Views.ViewsLogo.InitializeComponent"><summary>
InitializeComponent
</summary></member><member name="M:ActiproSoftware.Products.Views.ViewsLogo.#ctor"><summary>
Initializes a new instance of the <c>ViewsLogo</c> class.
</summary></member><member name="T:ActiproSoftware.Products.Views.SR"><summary>
Provides access to the string resources of this assembly, also allowing for their customization.
</summary><remarks>
Call the <see cref="M:ActiproSoftware.Products.Views.SR.GetString(System.String)" /> method to return a resolved resource string.
If a custom string has been set for a specified string resource name, it will be returned.
Otherwise, the default string resource value is returned.
<para>
If any of the resource strings are customized via a call to <see cref="M:ActiproSoftware.Products.Views.SR.SetCustomString(System.String,System.String)" />,
it is best to do so before any other classes in this assembly are referenced,
such as in the application startup.
</para></remarks></member><member name="M:ActiproSoftware.Products.Views.SR.ClearCustomStrings"><summary>
Removes all custom strings.
</summary></member><member name="M:ActiproSoftware.Products.Views.SR.ContainsCustomString(System.String)"><summary>
Returns whether a custom string is defined for the specified string resource.
</summary><param name="name">The name of the resource for which to search.</param><returns><c>true</c> if a custom string is defined for the specified string resource; otherwise, <c>false</c>.
</returns></member><member name="M:ActiproSoftware.Products.Views.SR.GetCustomString(System.String)"><summary>
Returns custom string that is stored for the specified string resource, if any.
</summary><param name="name">The name of the resource to get.</param><returns>The custom string that is stored for the specified string resource, if any.</returns></member><member name="M:ActiproSoftware.Products.Views.SR.GetString(System.String)"><summary>
Returns the resolved value of the specified string resource.
</summary><param name="name">The name of the resource to get.</param><returns>
The value of the resource localized for the caller's current culture settings.
If a best match is not possible, <see langword="null" /> is returned.
</returns></member><member name="M:ActiproSoftware.Products.Views.SR.GetString(ActiproSoftware.Products.Views.SRName)"><summary>
Returns the resolved value of the specified string resource.
</summary><param name="name">The name of the resource to get.</param><returns>
The value of the resource localized for the caller's current culture settings.
If a best match is not possible, <see langword="null" /> is returned.
</returns></member><member name="M:ActiproSoftware.Products.Views.SR.GetString(System.String,System.Object[])"><summary>
Returns the resolved value of the specified string resource, by calling <c>String.Format</c> using supplied arguments.
</summary><param name="name">The name of the resource to get.</param><param name="args">The arguments to pass to <c>String.Format</c>.</param><returns>
The value of the resource localized for the caller's current culture settings.
If a best match is not possible, <see langword="null" /> is returned.
</returns></member><member name="M:ActiproSoftware.Products.Views.SR.GetString(ActiproSoftware.Products.Views.SRName,System.Object[])"><summary>
Returns the resolved value of the specified string resource, by calling <c>String.Format</c> using supplied arguments.
</summary><param name="name">The name of the resource to get.</param><param name="args">The arguments to pass to <c>String.Format</c>.</param><returns>
The value of the resource localized for the caller's current culture settings.
If a best match is not possible, <see langword="null" /> is returned.
</returns></member><member name="M:ActiproSoftware.Products.Views.SR.RemoveCustomString(System.String)"><summary>
Removes any custom string that is defined for the specified string resource.
</summary><param name="name">The name of the resource to remove.</param></member><member name="M:ActiproSoftware.Products.Views.SR.SetCustomString(System.String,System.String)"><summary>
Sets a custom string value for the specified string resource.
</summary><param name="name">The name of the resource to set.</param><param name="value">The value of the resource to set.</param></member><member name="P:ActiproSoftware.Products.Views.SR.ResourceManager"><summary>
Gets the <see cref="P:ActiproSoftware.Products.Views.SR.ResourceManager" /> that provides the default resources.
</summary><value>The <see cref="P:ActiproSoftware.Products.Views.SR.ResourceManager" /> that provides the default resources.</value></member><member name="T:ActiproSoftware.Products.Views.SRExtension"><summary>
Provides a markup extension for loading a string resource from the assembly that could possibly be customized.
</summary></member><member name="M:ActiproSoftware.Products.Views.SRExtension.ProvideValue(System.IServiceProvider)"><summary>
Returns the string resource based on the supplied name.
</summary><param name="serviceProvider">An object that can provide services for the markup extension.</param><returns>The object value to set on the property where the extension is applied.</returns></member><member name="M:ActiproSoftware.Products.Views.SRExtension.#ctor"><summary>
Creates an instance of the <c>SRExtension</c> class.
</summary></member><member name="M:ActiproSoftware.Products.Views.SRExtension.#ctor(System.String)"><summary>
Creates an instance of the <c>SRExtension</c> class.
</summary><param name="name">The name of the string resource.</param></member><member name="P:ActiproSoftware.Products.Views.SRExtension.Name"><summary>
Gets or sets the name of the string resource.
</summary><value>The name of the string resource.</value></member><member name="T:ActiproSoftware.Products.Views.SRName"><summary>
Specifies the names of string resources for this assembly.
</summary></member><member name="F:ActiproSoftware.Products.Views.SRName.ExLengthConverterInvalidFormat"><summary>An exception message string.</summary></member><member name="F:ActiproSoftware.Products.Views.SRName.ExScrollOffsetCannotBeNaN"><summary>An exception message string.</summary></member><member name="T:ActiproSoftware.Products.Views.Resources"><summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary></member><member name="P:ActiproSoftware.Products.Views.Resources.ResourceManager"><summary>
Returns the cached ResourceManager instance used by this class.
</summary></member><member name="P:ActiproSoftware.Products.Views.Resources.Culture"><summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary></member><member name="P:ActiproSoftware.Products.Views.Resources.ExLengthConverterInvalidFormat"><summary>
Looks up a localized string similar to '{0}' string cannot be converted to Length..
</summary></member><member name="P:ActiproSoftware.Products.Views.Resources.ExScrollOffsetCannotBeNaN"><summary>
Looks up a localized string similar to '{0}' parameter value cannot be NaN..
</summary></member><member name="T:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase"><summary>
Represents the base class for the various animated panels.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeElement(System.Windows.UIElement,System.Boolean)"><summary>
Arranges the specified element using the current arrange state.
</summary><param name="element">The element.</param><param name="dispatch">if set to <c>true</c> then the arrange call will be dispatched.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeElement(System.Windows.UIElement,System.Nullable{System.Windows.Rect},System.Boolean)"><summary>
Arranges the specified element using the current arrange state.
</summary><param name="element">The element.</param><param name="finalRect">The final rect to use to arrange element; otherwise, <see langword="null" /> to use current position.</param><param name="dispatch">if set to <c>true</c> then the arrange call will be dispatched.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeElement(ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase,System.Windows.UIElement,System.Boolean)"><summary>
Arranges the specified element using the current arrange state.
</summary><param name="panel">The panel that contains the specified element; otherwise, <see langword="null" />.</param><param name="element">The element.</param><param name="dispatch">if set to <c>true</c> then the arrange call will be dispatched.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeElement(ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase,System.Windows.UIElement,System.Nullable{System.Windows.Rect},System.Boolean)"><summary>
Arranges the specified element using the current arrange state.
</summary><param name="panel">The panel that contains the specified element; otherwise, <see langword="null" />.</param><param name="element">The element.</param><param name="finalRect">The final rect to use to arrange element; otherwise, <see langword="null" /> to use current position.</param><param name="dispatch">if set to <c>true</c> then the arrange call will be dispatched.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeElements(System.Collections.Generic.IList{System.Windows.UIElement},System.Windows.Size)"><summary>
Positions the specified elements and determines a size for a <see cref="T:System.Windows.FrameworkElement" />-derived class.
</summary><param name="elements">The elements to be arranged.</param><param name="finalSize">
The final area within the parent that this element should use to arrange itself and the specified elements.
</param><returns>The actual size used.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.GetArrangeHeightAnimated(System.Windows.UIElement)"><summary>
Gets the value of the <c>ArrangeHeightAnimatedProperty</c> attached property for the specified object.
</summary><param name="element">The element from which the property value is read.</param><returns>The object's value.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.SetArrangeHeightAnimated(System.Windows.UIElement,System.Double)"><summary>
Sets the value of the <c>ArrangeHeightAnimatedProperty</c> attached property to the specified object.
</summary><param name="element">The element to which the attached property is written.</param><param name="value">The value to set.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeOverride(System.Windows.Size)"><summary>
Positions child elements and determines a size for a <see cref="T:System.Windows.FrameworkElement" />-derived class.
</summary><param name="finalSize">
The final area within the parent that this element should use to arrange itself and its children.
</param><returns>The actual size used.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.GetArrangeRectAnimated(System.Windows.UIElement)"><summary>
Gets the current arrange rectangle of the specified element based on the animated properties.
</summary><param name="element">The element.</param><returns>The current arrange rectangle of the specified element.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.GetArrangeState(System.Windows.UIElement)"><summary>
Gets the value of the <c>ArrangeStateProperty</c> attached property for the specified object.
</summary><param name="element">The element from which the property value is read.</param><returns>The object's value.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.SetArrangeState(System.Windows.UIElement,ActiproSoftware.Windows.Controls.Views.ArrangeState)"><summary>
Sets the value of the <c>ArrangeStateProperty</c> attached property to the specified object.
</summary><param name="element">The element to which the attached property is written.</param><param name="value">The value to set.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.GetArrangeWidthAnimated(System.Windows.UIElement)"><summary>
Gets the value of the <c>ArrangeWidthAnimatedProperty</c> attached property for the specified object.
</summary><param name="element">The element from which the property value is read.</param><returns>The object's value.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.SetArrangeWidthAnimated(System.Windows.UIElement,System.Double)"><summary>
Sets the value of the <c>ArrangeWidthAnimatedProperty</c> attached property to the specified object.
</summary><param name="element">The element to which the attached property is written.</param><param name="value">The value to set.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.GetArrangeXAnimated(System.Windows.UIElement)"><summary>
Gets the value of the <c>ArrangeXAnimatedProperty</c> attached property for the specified object.
</summary><param name="element">The element from which the property value is read.</param><returns>The object's value.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.SetArrangeXAnimated(System.Windows.UIElement,System.Double)"><summary>
Sets the value of the <c>ArrangeXAnimatedProperty</c> attached property to the specified object.
</summary><param name="element">The element to which the attached property is written.</param><param name="value">The value to set.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.GetArrangeYAnimated(System.Windows.UIElement)"><summary>
Gets the value of the <c>ArrangeYAnimatedProperty</c> attached property for the specified object.
</summary><param name="element">The element from which the property value is read.</param><returns>The object's value.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.SetArrangeYAnimated(System.Windows.UIElement,System.Double)"><summary>
Sets the value of the <c>ArrangeYAnimatedProperty</c> attached property to the specified object.
</summary><param name="element">The element to which the attached property is written.</param><param name="value">The value to set.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.GetIsAnimated(System.Windows.UIElement)"><summary>
Gets the value of the <c>IsAnimatedProperty</c> attached property for the specified object.
</summary><param name="element">The element from which the property value is read.</param><returns>The object's value.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.SetIsAnimated(System.Windows.UIElement,System.Boolean)"><summary>
Sets the value of the <c>IsAnimatedProperty</c> attached property to the specified object.
</summary><param name="element">The element to which the attached property is written.</param><param name="value">The value to set.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.MeasureElements(System.Collections.Generic.IList{System.Windows.UIElement},System.Windows.Size)"><summary>
Measures the size in layout required for the specified elements and determines a size for the <see cref="T:System.Windows.FrameworkElement" />-derived class.
</summary><param name="elements">The elements to be measured.</param><param name="availableSize">The available size that this element can give to the specified elements. Infinity can be specified as a value to indicate that
the element will size to whatever content is available.</param><returns>
The size that this element determines it needs during layout, based on its calculations of the specified elements.
</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.MeasureOverride(System.Windows.Size)"><summary>
Measures the size in layout required for child elements and determines a size for the <see cref="T:System.Windows.FrameworkElement" />-derived class.
</summary><param name="availableSize">The available size that this element can give to child elements. Infinity can be specified as a value to indicate that
the element will size to whatever content is available.</param><returns>
The size that this element determines it needs during layout, based on its calculations of child element sizes.
</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.GetVisualChild(System.Int32)"><summary>
Gets a <see cref="T:System.Windows.Media.Visual" /> child of this <see cref="T:System.Windows.Controls.Panel" /> at the specified index position.
</summary><param name="index">The index position of the <see cref="T:System.Windows.Media.Visual" /> child.</param><returns>
A <see cref="T:System.Windows.Media.Visual" /> child of the parent <see cref="T:System.Windows.Controls.Panel" /> element.
</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.OnVisualChildrenChanged(System.Windows.DependencyObject,System.Windows.DependencyObject)"><summary>
Invoked when the <see cref="T:System.Windows.Media.VisualCollection" /> of a visual object is modified.
</summary><param name="visualAdded">The <see cref="T:System.Windows.Media.Visual" /> that was added to the collection.</param><param name="visualRemoved">The <see cref="T:System.Windows.Media.Visual" /> that was removed from the collection.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.#ctor"><summary>
Initializes a new instance of the <see cref="T:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase" /> class.
</summary></member><member name="P:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeAnimation"><summary>
Gets or sets the <see cref="T:ActiproSoftware.Windows.Controls.Views.IArrangeAnimation" /> that controls the animation of elements when arranging.
This is a dependency property.
</summary><value>
The <see cref="T:ActiproSoftware.Windows.Controls.Views.IArrangeAnimation" /> that controls the animation of elements when arranging
The default value is <see langword="null" />.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeAnimationResolved"><summary>
Gets resolved <see cref="T:ActiproSoftware.Windows.Controls.Views.IArrangeAnimation" /> that controls the animation of elements when arranging.
</summary><value>
The resolved <see cref="T:ActiproSoftware.Windows.Controls.Views.IArrangeAnimation" /> that controls the animation of elements when arranging
</value><remarks>
By default, this property simply returns the value of the <see cref="P:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeAnimation" /> property. This
property can be overridden by derived classes to provide custom logic.
</remarks></member><member name="P:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.IsLayoutUpdatePending"><summary>
Gets a value indicating whether a change to the layout logic has changed and the elements have yet to be arranged.
This is a dependency property.
</summary><value><c>true</c> if a change to the layout logic has changed and the elements have yet to be arranged; otherwise, <c>false</c>.
The default value is <c>false</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.AreLeavingElementsAnimated"><summary>
Gets or sets a value indicating whether elements that are leaving the panel will be automatically animated.
This is a dependency property.
</summary><value><c>true</c> if elements that are leaving the panel will be automatically animated; otherwise, <c>false</c>.
The default value is <c>true</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.HasLeavingChildren"><summary>
Gets a value indicating whether there are any children that are leaving the panel.
</summary><value><c>true</c> if there are any children that are leaving the panel; otherwise, <c>false</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.LeavingChildren"><summary>
Gets the children that are currently leaving the panel.
</summary><value>The children that are currently leaving the panel.</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.VisualChildrenCount"><summary>
Gets the number of child <see cref="T:System.Windows.Media.Visual" /> objects in this instance of <see cref="T:System.Windows.Controls.Panel" />.
</summary><value></value><returns>
The number of child <see cref="T:System.Windows.Media.Visual" /> objects.
</returns></member><member name="F:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.AnimationCountProperty"><summary>
Identifies the <c>AnimationCount</c> dependency property. This field is read-only.
</summary><value>The identifier for the <c>AnimationCount</c> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeAnimationProperty"><summary>
Identifies the <c>ArrangeAnimation</c> dependency property. This field is read-only.
</summary><value>The identifier for the <c>ArrangeAnimation</c> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeHeightAnimatedProperty"><summary>
Identifies the <c>ArrangeHeightAnimated</c> dependency property. This field is read-only.
</summary><value>The identifier for the <c>ArrangeHeightAnimated</c> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeStateProperty"><summary>
Identifies the <c>ArrangeState</c> dependency property. This field is read-only.
</summary><value>The identifier for the <c>ArrangeState</c> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeWidthAnimatedProperty"><summary>
Identifies the <c>ArrangeWidthAnimated</c> dependency property. This field is read-only.
</summary><value>The identifier for the <c>ArrangeWidthAnimated</c> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeXAnimatedProperty"><summary>
Identifies the <c>ArrangeXAnimated</c> dependency property. This field is read-only.
</summary><value>The identifier for the <c>ArrangeXAnimated</c> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.ArrangeYAnimatedProperty"><summary>
Identifies the <c>ArrangeYAnimated</c> dependency property. This field is read-only.
</summary><value>The identifier for the <c>ArrangeYAnimated</c> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.IsAnimatedProperty"><summary>
Identifies the <c>IsAnimated</c> dependency property. This field is read-only.
</summary><value>The identifier for the <c>IsAnimated</c> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.IsLayoutUpdatePendingProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.IsLayoutUpdatePending" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.IsLayoutUpdatePending" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase.AreLeavingElementsAnimatedProperty"><summary>
Identifies the <c>AreLeavingElementsAnimated</c> dependency property. This field is read-only.
</summary><value>The identifier for the <c>AreLeavingElementsAnimated</c> dependency property.</value></member><member name="T:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel"><summary>
Represents a panel that positions child elements in sequential order, either horizontally or vertically.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.ArrangeElements(System.Collections.Generic.IList{System.Windows.UIElement},System.Windows.Size)"><summary>
Positions the specified elements and determines a size for a <see cref="T:System.Windows.FrameworkElement" />-derived class.
</summary><param name="elements">The elements to be arranged.</param><param name="finalSize">The final area within the parent that this element should use to arrange itself and the specified elements.</param><returns>The actual size used.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.MeasureElements(System.Collections.Generic.IList{System.Windows.UIElement},System.Windows.Size)"><summary>
Measures the size in layout required for the specified elements and determines a size for the <see cref="T:System.Windows.FrameworkElement" />-derived class.
</summary><param name="elements">The elements to be measured.</param><param name="availableSize">The available size that this element can give to the specified elements. Infinity can be specified as a value to indicate that
the element will size to whatever content is available.</param><returns>
The size that this element determines it needs during layout, based on its calculations of the specified elements.
</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.LineDown"><summary>
Scrolls down within content by one logical unit.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.LineLeft"><summary>
Scrolls left within content by one logical unit.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.LineRight"><summary>
Scrolls right within content by one logical unit.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.LineUp"><summary>
Scrolls up within content by one logical unit.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.MakeVisible(System.Windows.Media.Visual,System.Windows.Rect)"><summary>
Forces content to scroll until the coordinate space of a <see cref="T:System.Windows.Media.Visual" /> object is visible.
</summary><param name="visual">A <see cref="T:System.Windows.Media.Visual" /> that becomes visible.</param><param name="rectangle">A bounding rectangle that identifies the coordinate space to make visible.</param><returns>
A <see cref="T:System.Windows.Rect" /> that is visible.
</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.MouseWheelDown"><summary>
Scrolls down within content after a user clicks the wheel button on a mouse.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.MouseWheelLeft"><summary>
Scrolls left within content after a user clicks the wheel button on a mouse.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.MouseWheelRight"><summary>
Scrolls right within content after a user clicks the wheel button on a mouse.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.MouseWheelUp"><summary>
Scrolls up within content after a user clicks the wheel button on a mouse.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.PageDown"><summary>
Scrolls down within content by one page.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.PageLeft"><summary>
Scrolls left within content by one page.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.PageRight"><summary>
Scrolls right within content by one page.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.PageUp"><summary>
Scrolls up within content by one page.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.SetHorizontalOffset(System.Double)"><summary>
Sets the amount of horizontal offset.
</summary><param name="offset">The degree to which content is horizontally offset from the containing viewport.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.SetVerticalOffset(System.Double)"><summary>
Sets the amount of vertical offset.
</summary><param name="offset">The degree to which content is vertically offset from the containing viewport.</param></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.HasLogicalOrientation"><summary>
Gets a value that indicates whether this <see cref="T:System.Windows.Controls.Panel" /> arranges its descendants in a single dimension.
</summary><value><c>true</c> if the orientation of the <see cref="T:System.Windows.Controls.Panel" /> is in one dimension; otherwise, <c>false</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.LogicalOrientation"><summary>
The <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.Orientation" /> of the panel, if the panel supports layout in only a single dimension.
</summary><value>
The <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.Orientation" /> of the panel. This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.Orientation"><summary>
Gets or sets the orientation that the child elements are arranged.
This is a dependency property.
</summary><value>
The orientation that the child elements are arranged.
The default value is <c>Orientation.Vertical</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.CanHorizontallyScroll"><summary>
Gets or sets a value that indicates whether scrolling on the horizontal axis is possible.
</summary><value></value><returns><c>true</c> if scrolling is possible; otherwise, <c>false</c>. This property has no default value.</returns></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.CanVerticallyScroll"><summary>
Gets or sets a value that indicates whether scrolling on the vertical axis is possible.
</summary><value></value><returns><c>true</c> if scrolling is possible; otherwise, <c>false</c>. This property has no default value.</returns></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.ExtentHeight"><summary>
Gets the vertical size of the extent.
</summary><value>
A <see cref="T:System.Double" /> that represents, in device independent pixels, the vertical size of the extent.
This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.ExtentWidth"><summary>
Gets the horizontal size of the extent.
</summary><value>
A <see cref="T:System.Double" /> that represents, in device independent pixels, the horizontal size of the extent.
This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.HorizontalOffset"><summary>
Gets the horizontal offset of the scrolled content.
</summary><value>
A <see cref="T:System.Double" /> that represents, in device independent pixels, the horizontal offset.
This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.ScrollOwner"><summary>
Gets or sets a <see cref="T:System.Windows.Controls.ScrollViewer" /> element that controls scrolling behavior.
</summary><value>
A <see cref="T:System.Windows.Controls.ScrollViewer" /> element that controls scrolling behavior.
This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.VerticalOffset"><summary>
Gets the vertical offset of the scrolled content.
</summary><value>
A <see cref="T:System.Double" /> that represents, in device independent pixels, the vertical offset of the scrolled content.
Valid values are between zero and the <see cref="P:System.Windows.Controls.Primitives.IScrollInfo.ExtentHeight" /> minus the <see cref="P:System.Windows.Controls.Primitives.IScrollInfo.ViewportHeight" />.
This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.ViewportHeight"><summary>
Gets the vertical size of the viewport for this content.
</summary><value>
A <see cref="T:System.Double" /> that represents, in device independent pixels, the vertical size of the viewport for this content.
This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.ViewportWidth"><summary>
Gets the horizontal size of the viewport for this content.
</summary><value>
A <see cref="T:System.Double" /> that represents, in device independent pixels, the horizontal size of the viewport for this content.
This property has no default value.
</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.OrientationProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.Orientation" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel.Orientation" /> dependency property.</value></member><member name="T:ActiproSoftware.Windows.Controls.Views.ElementLayoutPlacement"><summary>
Specifies the layout placement of elements in a <see cref="T:ActiproSoftware.Windows.Controls.Views.FanPanel" />.
</summary></member><member name="F:ActiproSoftware.Windows.Controls.Views.ElementLayoutPlacement.Above"><summary>
Indicates the element will be placed above any focal elements.
</summary></member><member name="F:ActiproSoftware.Windows.Controls.Views.ElementLayoutPlacement.Below"><summary>
Indicates the element will be placed below any focal elements.
</summary></member><member name="F:ActiproSoftware.Windows.Controls.Views.ElementLayoutPlacement.Wrap"><summary>
Indicates the element will be wrapped around to the back or front, depending on it's position relative to any focal elements.
</summary></member><member name="F:ActiproSoftware.Windows.Controls.Views.ElementLayoutPlacement.Hidden"><summary>
Indicates the element will be hidden from view.
</summary></member><member name="T:ActiproSoftware.Windows.Controls.Views.FanPanel"><summary>
Represents a panel that positions child elements along the z-axis.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.ArrangeElements(System.Collections.Generic.IList{System.Windows.UIElement},System.Windows.Size)"><summary>
Positions the specified elements and determines a size for a <see cref="T:System.Windows.FrameworkElement" />-derived class.
</summary><param name="elements">The elements to be arranged.</param><param name="finalSize">The final area within the parent that this element should use to arrange itself and the specified elements.</param><returns>The actual size used.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.MeasureElements(System.Collections.Generic.IList{System.Windows.UIElement},System.Windows.Size)"><summary>
Measures the size in layout required for the specified elements and determines a size for the <see cref="T:System.Windows.FrameworkElement" />-derived class.
</summary><param name="elements">The elements to be measured.</param><param name="availableSize">The available size that this element can give to the specified elements. Infinity can be specified as a value to indicate that
the element will size to whatever content is available.</param><returns>
The size that this element determines it needs during layout, based on its calculations of the specified elements.
</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.LineDown"><summary>
Scrolls down within content by one logical unit.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.LineLeft"><summary>
Scrolls left within content by one logical unit.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.LineRight"><summary>
Scrolls right within content by one logical unit.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.LineUp"><summary>
Scrolls up within content by one logical unit.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.MakeVisible(System.Windows.Media.Visual,System.Windows.Rect)"><summary>
Forces content to scroll until the coordinate space of a <see cref="T:System.Windows.Media.Visual" /> object is visible.
</summary><param name="visual">A <see cref="T:System.Windows.Media.Visual" /> that becomes visible.</param><param name="rectangle">A bounding rectangle that identifies the coordinate space to make visible.</param><returns>
A <see cref="T:System.Windows.Rect" /> that is visible.
</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.MouseWheelDown"><summary>
Scrolls down within content after a user clicks the wheel button on a mouse.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.MouseWheelLeft"><summary>
Scrolls left within content after a user clicks the wheel button on a mouse.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.MouseWheelRight"><summary>
Scrolls right within content after a user clicks the wheel button on a mouse.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.MouseWheelUp"><summary>
Scrolls up within content after a user clicks the wheel button on a mouse.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.PageDown"><summary>
Scrolls down within content by one page.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.PageLeft"><summary>
Scrolls left within content by one page.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.PageRight"><summary>
Scrolls right within content by one page.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.PageUp"><summary>
Scrolls up within content by one page.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.SetHorizontalOffset(System.Double)"><summary>
Sets the amount of horizontal offset.
</summary><param name="offset">The degree to which content is horizontally offset from the containing viewport.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.SetVerticalOffset(System.Double)"><summary>
Sets the amount of vertical offset.
</summary><param name="offset">The degree to which content is vertically offset from the containing viewport.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.FanPanel.#ctor"><summary>
Initializes a new instance of the <see cref="T:ActiproSoftware.Windows.Controls.Views.FanPanel" /> class.
</summary></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.BackAngleStep"><summary>
Gets or sets a value used to increment the angle of elements after the focal element based on their distance.
This is a dependency property.
</summary><value>
A value used to increment the angle of elements after the focal element based on their distance.
The default value is <c>15.0</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.BackOffsetStep"><summary>
Gets or sets a value used to increment the X and Y coordinate of the elements after the focal element based on their distance.
This is a dependency property.
</summary><value>
A value used to increment the X and Y coordinate of the elements after the focal element based on their distance.
The default value is <c>0,0</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.BackOpacityStep"><summary>
Gets or sets a value used to decrement the opacity of the elements after the focal element based on their distance.
This is a dependency property.
</summary><value>
A value used to decrement the opacity of the elements after the focal element based on their distance.
The default value is <c>0.1</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.FocalIndex"><summary>
Gets or sets the index of the focal child, which should be centered in the panel.
This is a dependency property.
</summary><value>
The index of the focal child, which should be centered in the panel. If set to <c>-1</c> then no focal item will be used.
The default value is <c>-1</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeAngleStep"><summary>
Gets or sets a value used to increment the angle of elements before the focal element based on their distance.
This is a dependency property.
</summary><value>
A value used to increment the angle of elements before the focal element based on their distance.
The default value is <c>15.0</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeElementLayoutPlacement"><summary>
Gets or sets the placement of any elements before the focal element in the panel.
This is a dependency property.
</summary><value>
The placement of any elements before the focal element in the panel.
The default value is <c>ElementLayoutPlacement.Hidden</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeOffsetStep"><summary>
Gets or sets a value used to increment the X and Y coordinate of the elements before the focal element based on their distance.
This is a dependency property.
</summary><value>
A value used to increment the X and Y coordinate of the elements before the focal element based on their distance.
The default value is <c>0,0</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeOpacityStep"><summary>
Gets or sets a value used to decrement the opacity of the elements before the focal element based on their distance.
This is a dependency property.
</summary><value>
A value used to decrement the opacity of the elements before the focal element based on their distance.
The default value is <c>0.1</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.IsFocalIndexAutoBound"><summary>
Gets or sets a value indicating whether the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.FocalIndex" /> property is automatically bound to the associated
<see cref="T:System.Windows.Controls.Primitives.Selector" />.<see cref="P:System.Windows.Controls.Primitives.Selector.SelectedIndex" /> property when used as an items host.
This is a dependency property.
</summary><value><c>true</c> if the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.FocalIndex" /> property is automatically bound; otherwise, <c>false</c>.
The default value is <c>true</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.CanHorizontallyScroll"><summary>
Gets or sets a value that indicates whether scrolling on the horizontal axis is possible.
</summary><value></value><returns><c>true</c> if scrolling is possible; otherwise, <c>false</c>. This property has no default value.</returns></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.CanVerticallyScroll"><summary>
Gets or sets a value that indicates whether scrolling on the vertical axis is possible.
</summary><value></value><returns><c>true</c> if scrolling is possible; otherwise, <c>false</c>. This property has no default value.</returns></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ExtentHeight"><summary>
Gets the vertical size of the extent.
</summary><value>
A <see cref="T:System.Double" /> that represents, in device independent pixels, the vertical size of the extent.
This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ExtentWidth"><summary>
Gets the horizontal size of the extent.
</summary><value>
A <see cref="T:System.Double" /> that represents, in device independent pixels, the horizontal size of the extent.
This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.HorizontalOffset"><summary>
Gets the horizontal offset of the scrolled content.
</summary><value>
A <see cref="T:System.Double" /> that represents, in device independent pixels, the horizontal offset.
This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ScrollOwner"><summary>
Gets or sets a <see cref="T:System.Windows.Controls.ScrollViewer" /> element that controls scrolling behavior.
</summary><value>
A <see cref="T:System.Windows.Controls.ScrollViewer" /> element that controls scrolling behavior.
This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.VerticalOffset"><summary>
Gets the vertical offset of the scrolled content.
</summary><value>
A <see cref="T:System.Double" /> that represents, in device independent pixels, the vertical offset of the scrolled content.
Valid values are between zero and the <see cref="P:System.Windows.Controls.Primitives.IScrollInfo.ExtentHeight" /> minus the <see cref="P:System.Windows.Controls.Primitives.IScrollInfo.ViewportHeight" />.
This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ViewportHeight"><summary>
Gets the vertical size of the viewport for this content.
</summary><value>
A <see cref="T:System.Double" /> that represents, in device independent pixels, the vertical size of the viewport for this content.
This property has no default value.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ViewportWidth"><summary>
Gets the horizontal size of the viewport for this content.
</summary><value>
A <see cref="T:System.Double" /> that represents, in device independent pixels, the horizontal size of the viewport for this content.
This property has no default value.
</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.FanPanel.BackAngleStepProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.BackAngleStep" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.BackAngleStep" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.FanPanel.BackOffsetStepProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.BackOffsetStep" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.BackOffsetStep" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.FanPanel.BackOpacityStepProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.BackOpacityStep" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.BackOpacityStep" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.FanPanel.FocalIndexProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.FocalIndex" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.FocalIndex" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeAngleStepProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeAngleStep" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeAngleStep" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeElementLayoutPlacementProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeElementLayoutPlacement" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeElementLayoutPlacement" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeOffsetStepProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeOffsetStep" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeOffsetStep" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeOpacityStepProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeOpacityStep" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.ForeOpacityStep" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.FanPanel.IsFocalIndexAutoBoundProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.IsFocalIndexAutoBound" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.FanPanel.IsFocalIndexAutoBound" /> dependency property.</value></member><member name="T:ActiproSoftware.Windows.Controls.Views.Book"><summary>
A control that looks like a book.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs)"><summary>
Called before the <see cref="E:System.Windows.UIElement.MouseLeftButtonDown" /> event occurs.
</summary><param name="e">The data for the event.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs)"><summary>
Called before the <see cref="E:System.Windows.UIElement.MouseLeftButtonUp" /> event occurs.
</summary><param name="e">The data for the event.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnMouseMove(System.Windows.Input.MouseEventArgs)"><summary>
Called before the <see cref="E:System.Windows.UIElement.MouseMove" /> event occurs.
</summary><param name="e">The data for the event.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnPageCurlActivated(ActiproSoftware.Windows.Controls.Views.BookPageRoutedEventArgs)"><summary>
Invoked when an unhandled <see cref="E:ActiproSoftware.Windows.Controls.Views.Book.PageCurlActivated" /> attached event reaches an element in its route that is derived from this class.
Implement this method to add class handling for this event.
</summary><param name="e">A <see cref="T:ActiproSoftware.Windows.Controls.Views.BookPageRoutedEventArgs" /> that contains the event data.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnPageCurlActivating(ActiproSoftware.Windows.Controls.Views.CancelBookPageRoutedEventArgs)"><summary>
Invoked when an unhandled <see cref="E:ActiproSoftware.Windows.Controls.Views.Book.PageCurlActivating" /> attached event reaches an element in its route that is derived from this class.
Implement this method to add class handling for this event.
</summary><param name="e">A <see cref="T:ActiproSoftware.Windows.Controls.Views.CancelBookPageRoutedEventArgs" /> that contains the event data.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnPageCurlDeactivated(ActiproSoftware.Windows.Controls.Views.BookPageRoutedEventArgs)"><summary>
Invoked when an unhandled <see cref="E:ActiproSoftware.Windows.Controls.Views.Book.PageCurlDeactivated" /> attached event reaches an element in its route that is derived from this class.
Implement this method to add class handling for this event.
</summary><param name="e">A <see cref="T:ActiproSoftware.Windows.Controls.Views.BookPageRoutedEventArgs" /> that contains the event data.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnPageFlipped(ActiproSoftware.Windows.Controls.Views.BookPageRoutedEventArgs)"><summary>
Invoked when an unhandled <see cref="E:ActiproSoftware.Windows.Controls.Views.Book.PageFlipped" /> attached event reaches an element in its route that is derived from this class.
Implement this method to add class handling for this event.
</summary><param name="e">A <see cref="T:ActiproSoftware.Windows.Controls.Views.BookPageRoutedEventArgs" /> that contains the event data.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnPageFlipping(ActiproSoftware.Windows.Controls.Views.CancelBookPageRoutedEventArgs)"><summary>
Invoked when an unhandled <see cref="E:ActiproSoftware.Windows.Controls.Views.Book.PageFlipping" /> attached event reaches an element in its route that is derived from this class.
Implement this method to add class handling for this event.
</summary><param name="e">A <see cref="T:ActiproSoftware.Windows.Controls.Views.CancelBookPageRoutedEventArgs" /> that contains the event data.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnSelectedViewChanged(ActiproSoftware.Windows.PropertyChangedRoutedEventArgs{System.Int32})"><summary>
Invoked when an unhandled <see cref="E:ActiproSoftware.Windows.Controls.Views.Book.SelectedViewChanged" /> attached event reaches an element in its route that is derived from this class.
Implement this method to add class handling for this event.
</summary><param name="e">The <see cref="T:ActiproSoftware.Windows.PropertyChangedRoutedEventArgs`1" /> instance containing the event data.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnSelectedViewChanging(ActiproSoftware.Windows.PropertyChangingRoutedEventArgs{System.Int32})"><summary>
Invoked when an unhandled <c>SelectedViewChanging</c> attached event reaches an element in its route that is derived from this class.
Implement this method to add class handling for this event.
</summary><param name="e">A <c>PropertyChangingRoutedEventArgs<int></c> that contains the event data.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.PrepareContainerForItemOverride(System.Windows.DependencyObject,System.Object)"><summary>
Prepares the specified element to display the specified item.
</summary><param name="element">The element used to display the specified item.</param><param name="item">The item to display.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.ResetCommandBindings"><summary>
Resets the <c>CommandBindings</c> property to its default value.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.ResetInputBindings"><summary>
Resets the <c>InputBindings</c> property to its default value.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.ShowAboutWindow"><summary>
Displays the About window for the component.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.ViewIndexToItemIndexes(System.Int32)"><summary>
Converts a view index to the associated item indexes.
</summary><param name="viewIndex">The index of the view to convert.</param><returns>The item indexes that are contained in the specified view index.</returns><remarks>
The method always returns an <see cref="T:System.Int32" /> array with a length of <c>2</c>, where the first integer represents the item presented on the back of a page and the second integer represents the item presented on the front of a page.
Both values can be set to <c>-1</c>, which indicates that there is no item present on that side of the book.
</remarks></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.ViewIndexToItemIndexes(System.Int32,System.Int32,System.Boolean)"><summary>
Converts a view index to the associated item indexes.
</summary><param name="viewIndex">The index of the view to convert.</param><param name="count">The number of pages.</param><param name="isFirstPageFront">if <c>true</c> then the first page of the book is front facing.</param><returns>The item indexes that are contained in the specified view index.</returns><remarks>
The method always returns an <see cref="T:System.Int32" /> array with a length of <c>2</c>, where the first integer represents the item presented on the back of a page and the second integer represents the item presented on the front of a page.
Both values can be set to <c>-1</c>, which indicates that there is no item present on that side of the book.
</remarks></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.ClearContainerForItemOverride(System.Windows.DependencyObject,System.Object)"><summary>
Undoes the effects of the <see cref="M:System.Windows.Controls.ItemsControl.PrepareContainerForItemOverride(System.Windows.DependencyObject,System.Object)" /> method.
</summary><param name="element">The container element.</param><param name="item">The item.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.GetContainerForItemOverride"><summary>
Creates or identifies the element used to display the specified item.
</summary><returns>The element that is used to display the given item. </returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.GoToFirstPage"><summary>
Selects the first view, if any.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.GoToLastPage"><summary>
Selects the last view, if any.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.GoToNextPage"><summary>
Selects the next view, if any.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.GoToNextPage(System.Int32)"><summary>
Selects the next view based on the specified number, if any.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.GoToPage(System.Object)"><summary>
Selects the view that contains the specified item.
</summary><param name="item">The item to select.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.GoToPage(System.Int32)"><summary>
Selects the view that contains the specified page/item index.
</summary><param name="index">The page/item index to select.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.GoToPreviousPage"><summary>
Selects the previous view, if any.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.GoToPreviousPage(System.Int32)"><summary>
Selects the previous view based on the specified number, if any.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.IsItemItsOwnContainerOverride(System.Object)"><summary>
Determines if the specified item is (or is eligible to be) its own container.
</summary><param name="item">The item to check.</param><returns><c>true</c> if the item is (or is eligible to be) its own container; otherwise, <c>false</c>.
</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.ItemIndexToBookPageFace(System.Int32)"><summary>
Converts an item index to a book page face, which indicates if the given item is on a back facing or front facing page.
</summary><param name="itemIndex">The index of the item to convert.</param><returns>A <see cref="T:ActiproSoftware.Windows.Controls.Views.BookPageFace" /> that indicates if the given item is on a back facing or front facing page.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.ItemIndexToBookPageFace(System.Int32,System.Boolean)"><summary>
Converts an item index to a book page face, which indicates if the given item is on a back facing or front facing page.
</summary><param name="itemIndex">The index of the item to convert.</param><param name="isFirstPageFront">if <c>true</c> then the first page of the book is front facing.</param><returns>A <see cref="T:ActiproSoftware.Windows.Controls.Views.BookPageFace" /> that indicates if the given item is on a back facing or front facing page.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.ItemIndexToViewIndex(System.Int32)"><summary>
Converts an item index to a view index.
</summary><param name="itemIndex">The index of the item to convert.</param><returns>The view index that contains the specified item index.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.ItemIndexToViewIndex(System.Int32,System.Boolean)"><summary>
Converts an item index to a view index.
</summary><param name="itemIndex">The index of the item to convert.</param><param name="isFirstPageFront">if <c>true</c> then the first page of the book is front facing.</param><returns>The view index that contains the specified item index.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnApplyTemplate"><summary>
When overridden in a derived class, is invoked whenever application code or internal processes (such as a rebuilding layout pass) call <c>ApplyTemplate</c>.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)"><summary>
Invoked whenever the <c>Items</c> collection changes.
</summary><param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> object that contains the event data.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.OnMouseLeave(System.Windows.Input.MouseEventArgs)"><summary>
Called before the <see cref="E:System.Windows.UIElement.MouseLeave" /> event occurs.
</summary><param name="e">The data for the event.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.Book.#ctor"><summary>
Initializes an instance of the <see cref="T:ActiproSoftware.Windows.Controls.Views.Book" /> class.
</summary></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.AnimationState"><summary>
Gets the current animation state of the control.
This is a dependency property.
</summary><value>
The current animation state of the control.
The default value is <c>BookAnimationState.None</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.CornerRadius"><summary>
Gets or sets a value that represents the degree to which the corners of a <see cref="T:ActiproSoftware.Windows.Controls.Views.Book" /> are rounded.
This is a dependency property.
</summary><value>
The <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.CornerRadius" /> that describes the degree to which corners are rounded.
The default value is <c>0,0,0,0</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.HotspotExtent"><summary>
Gets or sets the extent of the hot spot areas in the corners of the book.
This is a dependency property.
</summary><value>
The extent of the hot spot areas in the corners of the book.
The default value is <c>10%</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.IsFirstPageFront"><summary>
Gets or sets a value indicating whether the first page displayed by the book is front facing.
This is a dependency property.
</summary><value><c>true</c> if the first page displayed by the book is front facing; otherwise, <c>false</c>.
The default value is <c>false</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.Orientation"><summary>
Gets or sets the orientation of the book.
This is a dependency property.
</summary><value>
The orientation of the book.
The default value is <c>Orientation.Horizontal</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.PageDepth"><summary>
Gets or sets the number of pages measured and arranged on the back and front sides of the book.
This is a dependency property.
</summary><value>
The number of pages measured and arranged on the back and front sides of the book.
The default value is <c>1</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.PendingViewIndex"><summary>
Gets or sets the index of the pending selected view.
This is a dependency property.
</summary><value>
The index of the pending selected view.
The default value is <see langword="null" />.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedBackIndex"><summary>
Gets the index of the item presented on the back facing page in the selected view.
This is a dependency property.
</summary><value>
The index of the item presented on the back facing page in the selected view.
The default value is <c>-1</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedBackItem"><summary>
Gets the item presented on the back facing page in the selected view.
This is a dependency property.
</summary><value>
The item presented on the front back page in the selected view.
The default value is <see langword="null" />.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedFrontIndex"><summary>
Gets the index of the item presented on the front facing page in the selected view.
This is a dependency property.
</summary><value>
The index of the item presented on the front facing page in the selected view.
The default value is <c>-1</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedFrontItem"><summary>
Gets the item presented on the front facing page in the selected view.
This is a dependency property.
</summary><value>
The item presented on the front facing page in the selected view.
The default value is <see langword="null" />.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedViewIndex"><summary>
Gets or sets the index of the selected view.
This is a dependency property.
</summary><value>
The index of the selected view.
The default value is <c>0</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.Book.ViewCount"><summary>
Gets the view count.
</summary><value>The view count.</value></member><member name="E:ActiproSoftware.Windows.Controls.Views.Book.PageCurlActivated"><summary>
Occurs when a page has curled.
</summary></member><member name="E:ActiproSoftware.Windows.Controls.Views.Book.PageCurlActivating"><summary>
Occurs when a page is about to curl.
</summary></member><member name="E:ActiproSoftware.Windows.Controls.Views.Book.PageCurlDeactivated"><summary>
Occurs when a page is no longer curled.
</summary></member><member name="E:ActiproSoftware.Windows.Controls.Views.Book.PageFlipped"><summary>
Occurs when a page has flipped.
</summary></member><member name="E:ActiproSoftware.Windows.Controls.Views.Book.PageFlipping"><summary>
Occurs when a page is about to flip.
</summary></member><member name="E:ActiproSoftware.Windows.Controls.Views.Book.SelectedViewChanged"><summary>
Occurs when the selected view has changed.
</summary></member><member name="E:ActiproSoftware.Windows.Controls.Views.Book.SelectedViewChanging"><summary>
Occurs when the selected view is about to change.
</summary></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.PageCurlActivatedEvent"><summary>
Identifies the <c>PageCurlActivated</c> routed event. This field is read-only.
</summary><value>The identifier for the <c>PageCurlActivated</c> routed event.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.PageCurlActivatingEvent"><summary>
Identifies the <c>PageCurlActivating</c> routed event. This field is read-only.
</summary><value>The identifier for the <c>PageCurlActivating</c> routed event.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.PageCurlDeactivatedEvent"><summary>
Identifies the <c>PageCurlDeactivated</c> routed event. This field is read-only.
</summary><value>The identifier for the <c>PageCurlDeactivated</c> routed event.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.PageFlippedEvent"><summary>
Identifies the <c>PageFlipped</c> routed event. This field is read-only.
</summary><value>The identifier for the <c>PageFlipped</c> routed event.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.PageFlippingEvent"><summary>
Identifies the <c>PageFlipping</c> routed event. This field is read-only.
</summary><value>The identifier for the <c>PageFlipping</c> routed event.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.SelectedViewChangedEvent"><summary>
Identifies the <c>SelectedViewChanged</c> routed event. This field is read-only.
</summary><value>The identifier for the <c>SelectedViewChanged</c> routed event.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.SelectedViewChangingEvent"><summary>
Identifies the <c>SelectedViewChanging</c> routed event. This field is read-only.
</summary><value>The identifier for the <c>SelectedViewChanging</c> routed event.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.AnimationStateProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.AnimationState" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.AnimationState" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.CornerRadiusProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.CornerRadius" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.CornerRadius" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.HotspotExtentProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.HotspotExtent" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.HotspotExtent" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.IsFirstPageFrontProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.IsFirstPageFront" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.IsFirstPageFront" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.OrientationProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.Orientation" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.Orientation" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.PageDepthProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.PageDepth" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.PageDepth" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.PendingViewIndexProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.PendingViewIndex" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.PendingViewIndex" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.SelectedBackIndexProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedBackIndex" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedBackIndex" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.SelectedBackItemProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedBackItem" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedBackItem" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.SelectedFrontIndexProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedFrontIndex" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedFrontIndex" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.SelectedFrontItemProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedFrontItem" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedBackItem" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.Book.SelectedViewIndexProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedViewIndex" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.Book.SelectedViewIndex" /> dependency property.</value></member><member name="T:ActiproSoftware.Windows.Controls.Views.BookAnimationState"><summary>
Specifies the animation states of the <see cref="T:ActiproSoftware.Windows.Controls.Views.Book" /> control.
</summary></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookAnimationState.None"><summary>
Indicates that nothing in the book is currently being animated.
</summary></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookAnimationState.Curling"><summary>
Indicates that a page in the book is curling.
</summary></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookAnimationState.Flipping"><summary>
Indicates that a page in the book is flipping.
</summary></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookAnimationState.Canceling"><summary>
Indicates that a page flip or curl in the book is being canceled.
</summary></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookAnimationState.Committing"><summary>
Indicates that a page flip in the book is being committed.
</summary></member><member name="T:ActiproSoftware.Windows.Controls.Views.BookPage"><summary>
Represents a page of a <see cref="T:ActiproSoftware.Windows.Controls.Views.Book" /> control.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPage.OnApplyTemplate"><summary>
When overridden in a derived class, is invoked whenever application code or internal processes (such as a rebuilding layout pass) call <c>ApplyTemplate</c>.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPage.OnFooterChanged(System.Object,System.Object)"><summary>
Called when the footer has changed.
</summary><param name="oldValue">The old value.</param><param name="newValue">The new value.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPage.OnFooterTemplateChanged(System.Windows.DataTemplate,System.Windows.DataTemplate)"><summary>
Called when the footer template has changed.
</summary><param name="oldValue">The old value.</param><param name="newValue">The new value.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPage.OnFooterTemplateSelectorChanged(System.Windows.Controls.DataTemplateSelector,System.Windows.Controls.DataTemplateSelector)"><summary>
Called when the footer template selector has changed.
</summary><param name="oldValue">The old value.</param><param name="newValue">The new value.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPage.OnHeaderChanged(System.Object,System.Object)"><summary>
Called when the header has changed.
</summary><param name="oldValue">The old value.</param><param name="newValue">The new value.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPage.OnHeaderTemplateChanged(System.Windows.DataTemplate,System.Windows.DataTemplate)"><summary>
Called when the header template has changed.
</summary><param name="oldValue">The old value.</param><param name="newValue">The new value.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPage.OnHeaderTemplateSelectorChanged(System.Windows.Controls.DataTemplateSelector,System.Windows.Controls.DataTemplateSelector)"><summary>
Called when the header template selector has changed.
</summary><param name="oldValue">The old value.</param><param name="newValue">The new value.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPage.#ctor"><summary>
Initializes an instance of the <see cref="T:ActiproSoftware.Windows.Controls.Views.BookPage" /> class.
</summary></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.CornerRadius"><summary>
Gets or sets a value that represents the degree to which the corners of a <see cref="T:ActiproSoftware.Windows.Controls.Views.BookPage" /> are rounded.
This is a dependency property.
</summary><value>
The <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.CornerRadius" /> that describes the degree to which corners are rounded.
The default value is <c>0,0,0,0</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.Face"><summary>
Gets a value that indicates if the page is back or front facing.
This is a dependency property.
</summary><value>
A <see cref="T:ActiproSoftware.Windows.Controls.Views.BookPageFace" /> that indicates if the page is back or front facing.
The default value is <c>BookPageFace.Front</c></value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.Footer"><summary>
Gets or sets the footer content.
This is a dependency property.
</summary><value>
The footer content.
The default value is <see langword="null" />.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.FooterTemplate"><summary>
Gets or sets the <see cref="T:System.Windows.DataTemplate" /> used to present the footer content.
This is a dependency property.
</summary><value>
The <see cref="T:System.Windows.DataTemplate" /> used to present the footer content.
The default value is <see langword="null" />.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.FooterTemplateSelector"><summary>
Gets or sets the <see cref="T:System.Windows.Controls.DataTemplateSelector" /> used to present the footer content.
This is a dependency property.
</summary><value>
The <see cref="T:System.Windows.Controls.DataTemplateSelector" /> used to present the footer content.
The default value is <see langword="null" />.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.Header"><summary>
Gets or sets the header content.
This is a dependency property.
</summary><value>
The header content.
The default value is <see langword="null" />.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.HeaderTemplate"><summary>
Gets or sets the <see cref="T:System.Windows.DataTemplate" /> used to present the header content.
This is a dependency property.
</summary><value>
The <see cref="T:System.Windows.DataTemplate" /> used to present the header content.
The default value is <see langword="null" />.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.HeaderTemplateSelector"><summary>
Gets or sets the <see cref="T:System.Windows.Controls.DataTemplateSelector" /> used to present the header content.
This is a dependency property.
</summary><value>
The <see cref="T:System.Windows.Controls.DataTemplateSelector" /> used to present the header content.
The default value is <see langword="null" />.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.Index"><summary>
Gets the index of the page in the associated book control.
This is a dependency property.
</summary><value>
The index of the page in the associated book control.
The default value is <c>-1</c></value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsBindingShadowVisible"><summary>
Gets or sets a value indicating whether the binding shadow is visible.
This is a dependency property.
</summary><value><c>true</c> if the binding shadow is visible; otherwise, <c>false</c>.
The default value is <c>true</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsFirstPage"><summary>
Gets a value that indicates if the page is the first page of the book.
This is a dependency property.
</summary><value><c>true</c> if the page is the first page of the book; otherwise, <c>false</c>.
The default value is <c>false</c></value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsLastPage"><summary>
Gets a value that indicates if the page is the last page of the book.
This is a dependency property.
</summary><value><c>true</c> if the page is the last page of the book; otherwise, <c>false</c>.
The default value is <c>false</c></value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsReversePage"><summary>
Gets a value that indicates if the page is on the reverse side of a visible page.
This is a dependency property.
</summary><value><c>true</c> if the page is on the reverse side of a visible page; otherwise, <c>false</c>.
The default value is <c>false</c></value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsSelected"><summary>
Gets a value that indicates if the page is selected.
This is a dependency property.
</summary><value><c>true</c> if the page is selected; otherwise, <c>false</c>.
The default value is <c>false</c></value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.CornerRadiusProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.CornerRadius" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.CornerRadius" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.FaceProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.Face" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.Face" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.FooterProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.Footer" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.Footer" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.FooterTemplateProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.FooterTemplate" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.FooterTemplate" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.FooterTemplateSelectorProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.FooterTemplateSelector" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.FooterTemplateSelector" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.HeaderProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.Header" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.Header" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.HeaderTemplateProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.HeaderTemplate" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.HeaderTemplate" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.HeaderTemplateSelectorProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.HeaderTemplateSelector" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.HeaderTemplateSelector" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.IndexProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.Index" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.Index" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.IsBindingShadowVisibleProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsBindingShadowVisible" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsBindingShadowVisible" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.IsFirstPageProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsFirstPage" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsFirstPage" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.IsLastPageProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsLastPage" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsLastPage" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.IsReversePageProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsReversePage" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsReversePage" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPage.IsSelectedProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsSelected" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPage.IsSelected" /> dependency property.</value></member><member name="T:ActiproSoftware.Windows.Controls.Views.BookPageFace"><summary>
Specifies the faces of a book page.
</summary></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPageFace.Back"><summary>
Indicates the page is back facing.
</summary></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPageFace.Front"><summary>
Indicates the page is front facing.
</summary></member><member name="T:ActiproSoftware.Windows.Controls.Views.BookPageRoutedEventArgs"><summary>
Provides event arguments for a <see cref="T:ActiproSoftware.Windows.Controls.Views.Book" /> routed event.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPageRoutedEventArgs.#ctor(System.Windows.RoutedEvent,System.Object,ActiproSoftware.Windows.Controls.Corner,ActiproSoftware.Windows.Controls.Views.BookPageFace)"><summary>
Initializes a new instance of the <c>BookPageRoutedEventArgs</c> class.
</summary><param name="routedEvent">The routed event.</param><param name="source">Gets or sets a reference to the object that raised the event.</param><param name="corner">The corner being curled or flipped.</param><param name="face">The page face that is being curled or flipped.</param></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPageRoutedEventArgs.Corner"><summary>
Gets the corner being curled or flipped.
</summary><value>The corner being curled or flipped.</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPageRoutedEventArgs.Face"><summary>
Gets the page face that is being curled or flipped.
</summary><value>The page face that is being curled or flipped.</value></member><member name="T:ActiproSoftware.Windows.Controls.Views.BookPageStyleSelector"><summary>
Provides a way to choose a <see cref="T:System.Windows.Style" /> for <see cref="T:ActiproSoftware.Windows.Controls.Views.BookPage" /> based various properties.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPageStyleSelector.SelectStyle(System.Object,System.Windows.DependencyObject)"><summary>
When overridden in a derived class, returns a <see cref="T:System.Windows.Style" /> based on custom logic.
</summary><param name="item">The content.</param><param name="container">The element to which the style will be applied.</param><returns>Returns a <see cref="T:System.Windows.Style" />; otherwise <see langword="null" />.</returns></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPageStyleSelector.BackFacingPageStyle"><summary>
Gets or sets a <see cref="T:System.Windows.Style" /> applied to all back-facing pages.
</summary><value>A <see cref="T:System.Windows.Style" /> applied to all back-facing pages.</value><remarks>
The <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPageStyleSelector.FirstPageStyle" /> and <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPageStyleSelector.LastPageStyle" /> properties take precedence over this property.
</remarks></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPageStyleSelector.FirstPageStyle"><summary>
Gets or sets a <see cref="T:System.Windows.Style" /> applied to the first page.
</summary><value>A <see cref="T:System.Windows.Style" /> applied to the first page.</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPageStyleSelector.FrontFacingPageStyle"><summary>
Gets or sets a <see cref="T:System.Windows.Style" /> applied to all front-facing pages.
</summary><value>A <see cref="T:System.Windows.Style" /> applied to all front-facing pages.</value><remarks>
The <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPageStyleSelector.FirstPageStyle" /> and <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPageStyleSelector.LastPageStyle" /> properties take precedence over this property.
</remarks></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPageStyleSelector.LastPageStyle"><summary>
Gets or sets a <see cref="T:System.Windows.Style" /> applied to the last page.
</summary><value>A <see cref="T:System.Windows.Style" /> applied to the last page.</value><remarks>
The <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPageStyleSelector.FirstPageStyle" /> property take precedence over this property.
</remarks></member><member name="T:ActiproSoftware.Windows.Controls.Views.BookPageTemplateSelector"><summary>
Provides a way to choose a <see cref="T:System.Windows.DataTemplate" /> for <see cref="T:ActiproSoftware.Windows.Controls.Views.BookPage" /> based various properties.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPageTemplateSelector.SelectTemplate(System.Object,System.Windows.DependencyObject)"><summary>
When overridden in a derived class, returns a <see cref="T:System.Windows.DataTemplate" /> based on custom logic.
</summary><param name="item">The data object for which to select the template.</param><param name="container">The data-bound object.</param><returns>Returns a <see cref="T:System.Windows.DataTemplate" />; otherwise <see langword="null" />.</returns></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPageTemplateSelector.BackFacingPageTemplate"><summary>
Gets or sets a <see cref="T:System.Windows.DataTemplate" /> used to present the content of all back-facing pages.
</summary><value>A <see cref="T:System.Windows.Style" /> used to present the content of all back-facing pages.</value><remarks>
The <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPageTemplateSelector.FirstPageTemplate" /> and <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPageTemplateSelector.LastPageTemplate" /> properties take precedence over this property.
</remarks></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPageTemplateSelector.FirstPageTemplate"><summary>
Gets or sets a <see cref="T:System.Windows.DataTemplate" /> used to present the content of the first page.
</summary><value>A <see cref="T:System.Windows.DataTemplate" /> used to present the content of the first page.</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPageTemplateSelector.FrontFacingPageTemplate"><summary>
Gets or sets a <see cref="T:System.Windows.DataTemplate" /> used to present the content of all front-facing pages.
</summary><value>A <see cref="T:System.Windows.Style" /> used to present the content of all front-facing pages.</value><remarks>
The <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPageTemplateSelector.FirstPageTemplate" /> and <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPageTemplateSelector.LastPageTemplate" /> properties take precedence over this property.
</remarks></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPageTemplateSelector.LastPageTemplate"><summary>
Gets or sets a <see cref="T:System.Windows.DataTemplate" /> used to present the content of the last page.
</summary><value>A <see cref="T:System.Windows.DataTemplate" /> used to present the content of the last page.</value><remarks>
The <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPageTemplateSelector.FirstPageTemplate" /> property take precedence over this property.
</remarks></member><member name="T:ActiproSoftware.Windows.Controls.Views.BookPanel"><summary>
Represents a <see cref="T:System.Windows.Controls.Panel" /> used to display pages in a <see cref="T:ActiproSoftware.Windows.Controls.Views.Book" /> control.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPanel.ArrangeOverride(System.Windows.Size)"><summary>
Provides the behavior for the Arrange pass of Silverlight layout. Classes can override this method to define their own Arrange pass behavior.
</summary><param name="finalSize">The final area within the parent that this object should use to arrange itself and its children.</param><returns>
The actual size that is used after the element is arranged in layout.
</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPanel.MeasureOverride(System.Windows.Size)"><summary>
Provides the behavior for the Measure pass of Silverlight layout. Classes can override this method to define their own Measure pass behavior.
</summary><param name="availableSize">The available size that this object can give to child objects. <c>PositiveInfinity</c> can be specified as a value to indicate that the object will size to whatever content is available.</param><returns>
The size that this object determines it needs during layout, based on its calculations of the allocated sizes for child objects; or based on other considerations, such as a fixed container size.
</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPanel.OnItemsChanged(System.Object,System.Windows.Controls.Primitives.ItemsChangedEventArgs)"><summary>
Called when the <c>Items</c> collection that is associated with the <see cref="T:System.Windows.Controls.ItemsControl" /> for this <see cref="T:System.Windows.Controls.Panel" /> changes.
</summary><param name="sender">The <see cref="T:System.Object" /> that raised the event.</param><param name="args">Provides data for the <c>ItemsChanged</c> event.</param></member><member name="M:ActiproSoftware.Windows.Controls.Views.BookPanel.#ctor"><summary>
Initializes a new instance of the <see cref="T:ActiproSoftware.Windows.Controls.Views.BookPanel" /> class.
</summary></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPanel.IsFirstPageFront"><summary>
Gets or sets a value indicating whether the first page displayed by the book panel is front facing.
This is a dependency property.
</summary><value><c>true</c> if the first page displayed by the book panel is front facing; otherwise, <c>false</c>.
The default value is <c>false</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPanel.Orientation"><summary>
Gets or sets the orientation of the panel.
</summary><value>The orientation of the panel.</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPanel.PageDepth"><summary>
Gets or sets the number of pages measured and arranged on the back and front sides of the book panel.
This is a dependency property.
</summary><value>
The number of pages measured and arranged on the back and front sides of the book panel.
The default value is <c>1</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPanel.PendingViewIndex"><summary>
Gets or sets the index of the pending selected view.
This is a dependency property.
</summary><value>
The index of the pending selected view.
The default value is <see langword="null" />.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.BookPanel.SelectedViewIndex"><summary>
Gets or sets the index of the selected view.
This is a dependency property.
</summary><value>
The index of the selected view.
The default value is <c>0</c>.
</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPanel.IsFirstPageFrontProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPanel.IsFirstPageFront" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPanel.IsFirstPageFront" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPanel.OrientationProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPanel.Orientation" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPanel.Orientation" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPanel.PageDepthProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPanel.PageDepth" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPanel.PageDepth" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPanel.PendingViewIndexProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPanel.PendingViewIndex" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPanel.PendingViewIndex" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.BookPanel.SelectedViewIndexProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPanel.SelectedViewIndex" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.BookPanel.SelectedViewIndex" /> dependency property.</value></member><member name="T:ActiproSoftware.Windows.Controls.Views.CancelBookPageRoutedEventArgs"><summary>
Provides event arguments for a cancelable <see cref="T:ActiproSoftware.Windows.Controls.Views.Book" /> routed event.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.CancelBookPageRoutedEventArgs.#ctor(System.Windows.RoutedEvent,System.Object,ActiproSoftware.Windows.Controls.Corner,ActiproSoftware.Windows.Controls.Views.BookPageFace)"><summary>
Initializes a new instance of the <c>CancelBookPageRoutedEventArgs</c> class.
</summary><param name="routedEvent">The routed event.</param><param name="source">Gets or sets a reference to the object that raised the event.</param><param name="corner">The corner being curled or flipped.</param><param name="face">The page face that is being curled or flipped.</param></member><member name="P:ActiproSoftware.Windows.Controls.Views.CancelBookPageRoutedEventArgs.Cancel"><summary>
Gets or sets a value indicating whether the event should be canceled.
</summary><value><c>true</c> to cancel the event; otherwise, <c>false</c>.
</value></member><member name="T:ActiproSoftware.Windows.Controls.Views.SwitchPanel"><summary>
Represents a panel that delegates the positioning of the child elements to one or more child panels.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.SwitchPanel.ArrangeElements(System.Collections.Generic.IList{System.Windows.UIElement},System.Windows.Size)"><summary>
Positions the specified elements and determines a size for a <see cref="T:System.Windows.FrameworkElement" />-derived class.
</summary><param name="elements">The elements to be arranged.</param><param name="finalSize">The final area within the parent that this element should use to arrange itself and the specified elements.</param><returns>The actual size used.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.SwitchPanel.MeasureElements(System.Collections.Generic.IList{System.Windows.UIElement},System.Windows.Size)"><summary>
Measures the size in layout required for the specified elements and determines a size for the <see cref="T:System.Windows.FrameworkElement" />-derived class.
</summary><param name="elements">The elements to be measured.</param><param name="availableSize">The available size that this element can give to the specified elements. Infinity can be specified as a value to indicate that
the element will size to whatever content is available.</param><returns>
The size that this element determines it needs during layout, based on its calculations of the specified elements.
</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.SwitchPanel.#ctor"><summary>
Initializes a new instance of the <see cref="T:ActiproSoftware.Windows.Controls.Views.SwitchPanel" /> class.
</summary></member><member name="P:ActiproSoftware.Windows.Controls.Views.SwitchPanel.ActiveIndex"><summary>
Gets or sets the index of the <see cref="T:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase" /> from the <see cref="P:ActiproSoftware.Windows.Controls.Views.SwitchPanel.Panels" /> collection that is active.
This is a dependency property.
</summary><value>
The index of the <see cref="T:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase" /> from the <see cref="P:ActiproSoftware.Windows.Controls.Views.SwitchPanel.Panels" /> collection that is active.
The default value is <c>0</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.SwitchPanel.ActivePanel"><summary>
Gets the <see cref="T:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase" /> from the <see cref="P:ActiproSoftware.Windows.Controls.Views.SwitchPanel.Panels" /> collection that is active.
This is a dependency property.
</summary><value>
The <see cref="T:ActiproSoftware.Windows.Controls.Views.Primitives.PanelBase" /> from the <see cref="P:ActiproSoftware.Windows.Controls.Views.SwitchPanel.Panels" /> collection that is active.
The default value is <see langword="null" />.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.SwitchPanel.ArrangeAnimationResolved"><summary>
Gets resolved <see cref="T:ActiproSoftware.Windows.Controls.Views.IArrangeAnimation" /> that controls the animation of elements when arranging.
</summary><value>
The resolved <see cref="T:ActiproSoftware.Windows.Controls.Views.IArrangeAnimation" /> that controls the animation of elements when arranging
</value><remarks>
By default, this property simply returns the value of the <see cref="T:ActiproSoftware.Windows.Controls.Views.ArrangeAnimation" /> property. This
property can be overridden by derived classes to provide custom logic.
</remarks></member><member name="P:ActiproSoftware.Windows.Controls.Views.SwitchPanel.Panels"><summary>
Gets or sets the panels that can be used to layout the children.
</summary><value>The panels that can be used to layout the children.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.SwitchPanel.ActiveIndexProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.SwitchPanel.ActiveIndex" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.SwitchPanel.ActiveIndex" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.SwitchPanel.ActivePanelProperty"><summary>
Identifies the read-only <see cref="P:ActiproSoftware.Windows.Controls.Views.SwitchPanel.ActivePanel" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.SwitchPanel.ActivePanel" /> dependency property.</value></member><member name="T:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel"><summary>
Represents a panel that positions child elements in sequential order, breaking content to the next row or column at the
edge of the containing box. Subsequent ordering happens sequentially from top to bottom or from right to left, depending
on the value of the <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.Orientation" /> property.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.ArrangeElements(System.Collections.Generic.IList{System.Windows.UIElement},System.Windows.Size)"><summary>
Positions the specified elements and determines a size for a <see cref="T:System.Windows.FrameworkElement" />-derived class.
</summary><param name="elements">The elements to be arranged.</param><param name="finalSize">The final area within the parent that this element should use to arrange itself and the specified elements.</param><returns>The actual size used.</returns></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.MeasureElements(System.Collections.Generic.IList{System.Windows.UIElement},System.Windows.Size)"><summary>
Measures the size in layout required for the specified elements and determines a size for the <see cref="T:System.Windows.FrameworkElement" />-derived class.
</summary><param name="elements">The elements to be measured.</param><param name="availableSize">The available size that this element can give to the specified elements. Infinity can be specified as a value to indicate that
the element will size to whatever content is available.</param><returns>
The size that this element determines it needs during layout, based on its calculations of the specified elements.
</returns></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.IsEmptySpaceEvenlyDistributed"><summary>
Gets or sets a value indicating whether any empty space in a row/column will be evenly distributed around the elements.
This is a dependency property.
</summary><value><c>true</c> if any empty space in a row/column will be evenly distributed around the elements; otherwise <c>false</c>.
The default value is <c>false</c>.
</value></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.ItemHeight"><summary>
Gets or sets a value that specifies the height of all items.
This is a dependency property.
</summary><value>
The <see cref="T:System.Double" /> that represents the uniform height of all items.
The default value is <see cref="F:System.Double.NaN" />.
</value><remarks>
If this property is not set (or if it is set to <c>Auto</c> in XAML or to <see cref="F:System.Double.NaN" /> in code), the size of the layout partition is equal to the desired size of the child element.
</remarks></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.ItemWidth"><summary>
Gets or sets a value that specifies the width of all items.
This is a dependency property.
</summary><value>
The <see cref="T:System.Double" /> that represents the uniform width of all items.
The default value is <see cref="F:System.Double.NaN" />.
</value><remarks>
If this property is not set (or if it is set to <c>Auto</c> in XAML or to <see cref="F:System.Double.NaN" /> in code), the size of the layout partition is equal to the desired size of the child element.
</remarks></member><member name="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.Orientation"><summary>
Gets or sets the orientation that the child elements are arranged.
This is a dependency property.
</summary><value>
The orientation that the child elements are arranged.
The default value is <c>Orientation.Horizontal</c>.
</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.IsEmptySpaceEvenlyDistributedProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.IsEmptySpaceEvenlyDistributed" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.IsEmptySpaceEvenlyDistributed" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.ItemHeightProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.ItemHeight" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.ItemHeight" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.ItemWidthProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.ItemWidth" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.ItemWidth" /> dependency property.</value></member><member name="F:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.OrientationProperty"><summary>
Identifies the <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.Orientation" /> dependency property. This field is read-only.
</summary><value>The identifier for the <see cref="P:ActiproSoftware.Windows.Controls.Views.AnimatedWrapPanel.Orientation" /> dependency property.</value></member><member name="T:ActiproSoftware.Windows.Controls.Views.AnimatedDockPanel"><summary>
Represents a panel that positions child elements either horizontally or vertically, relative to each other.
</summary></member><member name="M:ActiproSoftware.Windows.Controls.Views.AnimatedDockPanel.ArrangeElements(System.Collections.Generic.IList{System.Windows.UIElement},System.Windows.Size)"><summary>