-
-
Notifications
You must be signed in to change notification settings - Fork 195
/
AvalonDock.xml
2314 lines (2314 loc) · 114 KB
/
AvalonDock.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>AvalonDock</name>
</assembly>
<members>
<member name="T:AvalonDock.DockablePane">
<summary>
Defines a pane that can contain contents of type <see cref="T:AvalonDock.DockableContent"/>
</summary>
<remarks>Usually a <see cref="T:AvalonDock.DockablePane"/> is used to arrange a series of <see cref="T:AvalonDock.DockableContent"/> in TabControl like model.
A DockablePane can be redocked to a border of the parent <see cref="T:AvalonDock.DockingManager"/>, can be floated in an external window and can be autohidden.
When docked into a docking manager the <see cref="P:AvalonDock.DockablePane.Anchor"/> property gives the border to which it's docked.
See <see cref="T:AvalonDock.DockablePaneCommands"/> to get commands that are supported by DockablePane objects.</remarks>
<seealso cref="T:AvalonDock.DockableContent"/>
<seealso cref="T:AvalonDock.DockingManager"/>
</member>
<member name="T:AvalonDock.IDropSurface">
<summary>
Defines an interface that must be implemented by objects that can host dragged panes
</summary>
</member>
<member name="M:AvalonDock.IDropSurface.OnDragEnter(System.Windows.Point)">
<summary>
Called by <see cref="!:DragPaneService"/> when user dragged pane enter this surface
</summary>
<param name="point">Location of the mouse</param>
</member>
<member name="M:AvalonDock.IDropSurface.OnDragOver(System.Windows.Point)">
<summary>
Called by <see cref="!:DragPaneService"/> when user dragged pane is over this surface
</summary>
<param name="point">Location of the mouse</param>
</member>
<member name="M:AvalonDock.IDropSurface.OnDragLeave(System.Windows.Point)">
<summary>
Called by <see cref="!:DragPaneService"/> when user dragged pane leave this surface
</summary>
<param name="point">Location of the mouse</param>
</member>
<member name="M:AvalonDock.IDropSurface.OnDrop(System.Windows.Point)">
<summary>
Called by <see cref="!:DragPaneService"/> when user drops a pane to this surface
</summary>
<param name="point">Location of the mouse</param>
</member>
<member name="P:AvalonDock.IDropSurface.IsSurfaceVisible">
<summary>
Gets a value indicating if this area is avilable for drop a dockable pane
</summary>
</member>
<member name="P:AvalonDock.IDropSurface.SurfaceRectangle">
<summary>
Gets the sensible area for drop a pane
</summary>
</member>
<member name="F:AvalonDock.Pane.ContainsActiveContentPropertyKey">
<summary>
ContainsActiveContent Read-Only Dependency Property
</summary>
<remarks>This property is specially intended for use in restyling.</remarks>
</member>
<member name="M:AvalonDock.Pane.SetContainsActiveContent(System.Boolean)">
<summary>
Provides a secure method for setting the ContainsActiveContent property.
This dependency property indicates if this <see cref="T:AvalonDock.Pane"/> contains a <see cref="T:AvalonDock.ManagedContent"/> set as active content into the parent <see cref="T:AvalonDock.DockingManager"/> object.
</summary>
<param name="value">The new value for the property.</param>
</member>
<member name="M:AvalonDock.Pane.OnContainsActiveContentChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Handles changes to the ContainsActiveContent property.
</summary>
</member>
<member name="M:AvalonDock.Pane.OnContainsActiveContentChanged(System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Provides derived classes an opportunity to handle changes to the ContainsActiveContent property.
</summary>
</member>
<member name="M:AvalonDock.Pane.Dock">
<summary>
Dock contained contents to the container <see cref="T:AvalonDock.DockingManager"/>
</summary>
</member>
<member name="M:AvalonDock.Pane.FocusContent">
<summary>
Move focus to pane content and activate it
</summary>
</member>
<member name="M:AvalonDock.Pane.OpenOptionsMenu(System.Windows.UIElement)">
<summary>
Open the option context menu
</summary>
<param name="menuTarget">Target element under which context menu will be shown. Pass null if context menu
should be shown at mouse position.</param>
<returns>True if context menu resource was found and open, false otherwise.</returns>
</member>
<member name="M:AvalonDock.Pane.CloseOptionsMenu">
<summary>
Close the options context menu
</summary>
</member>
<member name="P:AvalonDock.Pane.ContainsActiveContent">
<summary>
Gets the ContainsActiveContent property. This dependency property
indicates if this <see cref="T:AvalonDock.Pane"/> contains a <see cref="T:AvalonDock.ManagedContent"/> set as active content into the parent <see cref="T:AvalonDock.DockingManager"/> object.
</summary>
</member>
<member name="P:AvalonDock.Pane.ShowHeader">
<summary>
Gest or set a value indicating if pane should show the tab header
</summary>
</member>
<member name="P:AvalonDock.Pane.IsOptionsMenuOpen">
<summary>
Gets a value indicating if the options context menu is open
</summary>
</member>
<member name="F:AvalonDock.DockablePane.ID">
<summary>
This guid is saved with the dockable content so that can be restored in the case is
referenced by a dockable content
</summary>
</member>
<member name="F:AvalonDock.DockablePane.CanAutohidePropertyKey">
<summary>
CanAutohide Read-Only Dependency Property
</summary>
</member>
<member name="M:AvalonDock.DockablePane.SetCanAutohide(System.Boolean)">
<summary>
Provides a secure method for setting the CanAutohide property.
This dependency property indicates if contents inside pane can be autohidden.
</summary>
<param name="value">The new value for the property.</param>
</member>
<member name="M:AvalonDock.DockablePane.CanExecuteCommand(System.Windows.Input.ICommand)">
<summary>
Retrive a value indicating if the command can be executed based to the dockable content state
</summary>
<param name="command"></param>
<returns></returns>
</member>
<member name="M:AvalonDock.DockablePane.ToggleAutoHide">
<summary>
Toggle auto hide state to all content inside the pane
</summary>
</member>
<member name="M:AvalonDock.DockablePane.Close">
<summary>
Close pane and all contained contents
</summary>
<returns>True if all content has been closed, false if at least one content couldn't be closed.</returns>
<remarks></remarks>
</member>
<member name="M:AvalonDock.DockablePane.Hide">
<summary>
Close pane and hide all contained contents
</summary>
<returns>True if all content has been hidden, false if at least one content couldn't be hidden.</returns>
<remarks></remarks>
</member>
<member name="M:AvalonDock.DockablePane.CloseOrHideCurrentContent">
<summary>
Closes or hides current content depending on HideOnClose property
</summary>
</member>
<member name="P:AvalonDock.DockablePane.CanAutohide">
<summary>
Gets the CanAutohide property. This dependency property
indicates if contents inside pane can be autohidden.
</summary>
</member>
<member name="T:AvalonDock.DocumentContent">
<summary>
Represent a document which can be host by a <see cref="T:AvalonDock.DocumentPane"/>.
</summary>
<remarks>A document is always hosted by a <see cref="T:AvalonDock.DocumentPane"/> usually in the central area of <see cref="T:AvalonDock.DockingManager"/>.
It has limited dragging features becaus it can be only moved to an other <see cref="T:AvalonDock.DocumentPane"/> and can't float as a separate window.
You can access all documents within <see cref="T:AvalonDock.DockingManager"/> with property <see cref="P:AvalonDock.DockingManager.Documents"/>.</remarks>
</member>
<member name="F:AvalonDock.ManagedContent.IconProperty">
<summary>
Select an icon object for the content
</summary>
</member>
<member name="F:AvalonDock.ManagedContent.DefaultFocusedElementProperty">
<summary>
Gets or sets an element which is focused by default when content is activated
</summary>
</member>
<member name="M:AvalonDock.ManagedContent.DetachFromContainerPane">
<summary>
Remove this content from its parent container pane
</summary>
<returns></returns>
</member>
<member name="M:AvalonDock.ManagedContent.OnManagerChanged(AvalonDock.DockingManager,AvalonDock.DockingManager)">
<summary>
Provides derived classes an opportunity to handle changes to the Manager property.
</summary>
</member>
<member name="F:AvalonDock.ManagedContent.IsActiveContentPropertyKey">
<summary>
IsActiveContent Read-Only Dependency Property
</summary>
</member>
<member name="M:AvalonDock.ManagedContent.SetIsActiveContent(System.Boolean)">
<summary>
Provides a secure method for setting the IsActiveContent property.
This dependency property indicates the current content is the active content between all docking manager contents
</summary>
<param name="value">The new value for the property.</param>
</member>
<member name="M:AvalonDock.ManagedContent.OnIsActiveContentChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Handles changes to the IsActiveContent property.
</summary>
</member>
<member name="M:AvalonDock.ManagedContent.OnIsActiveContentChanged(System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Provides derived classes an opportunity to handle changes to the IsActiveContent property.
</summary>
</member>
<member name="M:AvalonDock.ManagedContent.FocusContent">
<summary>
Provides derived classes an opportunity to manage custom focus strategy.
</summary>
<remarks>
Derived classes should not call base class if don't want AvalonDock to set focus on <see cref="P:AvalonDock.ManagedContent.DefaultElement"/> object
</remarks>
</member>
<member name="F:AvalonDock.ManagedContent.IsActiveDocumentPropertyKey">
<summary>
IsActiveDocument Read-Only Dependency Property
</summary>
</member>
<member name="M:AvalonDock.ManagedContent.SetIsActiveDocument(System.Boolean)">
<summary>
Provides a secure method for setting the IsActiveDocument property.
This dependency property indicates is content is the active document.
</summary>
<param name="value">The new value for the property.</param>
</member>
<member name="M:AvalonDock.ManagedContent.OnIsActiveDocumentChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Handles changes to the IsActiveDocument property.
</summary>
</member>
<member name="M:AvalonDock.ManagedContent.OnIsActiveDocumentChanged(System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Provides derived classes an opportunity to handle changes to the IsActiveDocument property.
</summary>
</member>
<member name="F:AvalonDock.ManagedContent.IsLockedProperty">
<summary>
IsLocked Dependency Property
</summary>
</member>
<member name="F:AvalonDock.ManagedContent.FloatingWindowSizeProperty">
<summary>
FloatingWindowSize Dependency Property
</summary>
</member>
<member name="M:AvalonDock.ManagedContent.OnFloatingWindowSizeChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Handles changes to the FloatingWindowSize property.
</summary>
</member>
<member name="M:AvalonDock.ManagedContent.OnFloatingWindowSizeChanged(System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Provides derived classes an opportunity to handle changes to the FloatingWindowSize property.
</summary>
</member>
<member name="M:AvalonDock.ManagedContent.CanExecuteCommand(System.Windows.Input.ICommand)">
<summary>
Retrive a value indicating if the command passed can be executed based to the content state
</summary>
<param name="command">Command to execute</param>
<returns>True if the command can be execute, false otherwise.</returns>
</member>
<member name="M:AvalonDock.ManagedContent.Show">
<summary>
Shows the content
</summary>
<remarks>How content is shows depends from the type of the content.</remarks>
</member>
<member name="M:AvalonDock.ManagedContent.Show(AvalonDock.DockingManager)">
<summary>
Shows the content inside a <see cref="T:AvalonDock.DockingManager"/> object
</summary>
<remarks>How content is shows depends from the type of the content.</remarks>
</member>
<member name="M:AvalonDock.ManagedContent.OnClosing(System.ComponentModel.CancelEventArgs)">
<summary>
Ovveride this method to handle <see cref="!:DocumentContent.OnClosing"/> event.
</summary>
</member>
<member name="M:AvalonDock.ManagedContent.OnClosed">
<summary>
Ovveride this method to handle <see cref="!:DocumentContent.OnClose"/> event.
</summary>
</member>
<member name="M:AvalonDock.ManagedContent.Close">
<summary>
Close the content
</summary>
<returns>Returns true if the content was succesfully closed, false otherwise.</returns>
</member>
<member name="M:AvalonDock.ManagedContent.Hide">
<summary>
Hide the content
</summary>
</member>
<member name="M:AvalonDock.ManagedContent.Activate">
<summary>
Set the content as the active content
</summary>
<remarks>After this method returns property <see cref="P:AvalonDock.ManagedContent.IsActiveContent"/> returns true.</remarks>
</member>
<member name="M:AvalonDock.ManagedContent.SaveLayout(System.Xml.XmlWriter)">
<summary>
Save content specific layout settings
</summary>
<param name="storeWriter">Backend store writer</param>
<remarks>Custom derived class can overloads this method to handle custom layout persistence.</remarks>
</member>
<member name="M:AvalonDock.ManagedContent.RestoreLayout(System.Xml.XmlElement)">
<summary>
Restore content specific layout settings
</summary>
<param name="storeReader">Saved xml element containg content layout settings</param>
<remarks>Custom derived class must overload this method to restore custom layout settings previously saved trought <see cref="M:AvalonDock.ManagedContent.SaveLayout(System.Xml.XmlWriter)"/>.</remarks>
</member>
<member name="P:AvalonDock.ManagedContent.Title">
<summary>
Gets or set the title of the content
</summary>
</member>
<member name="P:AvalonDock.ManagedContent.Icon">
<summary>
Access to <see cref="F:AvalonDock.ManagedContent.IconProperty"/> dependency property
</summary>
</member>
<member name="P:AvalonDock.ManagedContent.DefaultElement">
<summary>
Access to <see cref="F:AvalonDock.ManagedContent.DefaultFocusedElementProperty"/>
</summary>
</member>
<member name="P:AvalonDock.ManagedContent.DragEnabledArea">
<summary>
Gets the draggable area of the document
</summary>
</member>
<member name="P:AvalonDock.ManagedContent.ContainerPane">
<summary>
Gets container pane currently hosting the content
</summary>
<remarks>Please note that this value could change as user move the content around the <see cref="T:AvalonDock.DockingManager"/>.</remarks>
</member>
<member name="P:AvalonDock.ManagedContent.Manager">
<summary>
Get current hosting docking manager (<see cref="T:AvalonDock.DockingManager"/>)
</summary>
</member>
<member name="P:AvalonDock.ManagedContent.IsActiveContent">
<summary>
Gets the IsActiveContent property. This dependency property
indicates the active (selected) content between all contents of the docking manager
</summary>
</member>
<member name="E:AvalonDock.ManagedContent.IsActiveContentChanged">
<summary>
Event fired when the <see cref="P:AvalonDock.ManagedContent.IsActiveContent"/> property changes
</summary>
</member>
<member name="P:AvalonDock.ManagedContent.IsActiveDocument">
<summary>
Gets the IsActiveDocument property. This dependency property
indicates is content is the active document.
</summary>
</member>
<member name="E:AvalonDock.ManagedContent.IsActiveDocumentChanged">
<summary>
Event fired when the <see cref="P:AvalonDock.ManagedContent.IsActiveContent"/> property changes
</summary>
</member>
<member name="P:AvalonDock.ManagedContent.IsLocked">
<summary>
Gets or sets the IsLocked property. This dependency property
indicates if this content is locked (for <see cref="T:AvalonDock.DocumentContent"/> objects this often means that it's readonly).
</summary>
</member>
<member name="P:AvalonDock.ManagedContent.FloatingWindowSize">
<summary>
Gets or sets the FloatingWindowSize property. This dependency property
indicates the size of the floating window hosting the content when it's floating.
</summary>
</member>
<member name="P:AvalonDock.ManagedContent.IsCloseable">
<summary>
Get or set a value indicating if this content can be closed or hidden
</summary>
</member>
<member name="E:AvalonDock.ManagedContent.Closing">
<summary>
Event fired when the content is about to be closed
</summary>
</member>
<member name="E:AvalonDock.ManagedContent.Closed">
<summary>
Event fired when the content has been closed
</summary>
<remarks>Note that when a document is closed property like <see cref="P:AvalonDock.ManagedContent.ContainerPane"/> or <see cref="P:AvalonDock.ManagedContent.Manager"/> returns null.</remarks>
</member>
<member name="F:AvalonDock.DocumentContent.InfoTipProperty">
<summary>
InfoTip Dependency Property
</summary>
</member>
<member name="F:AvalonDock.DocumentContent.ContentTypeDescriptionProperty">
<summary>
ContentTypeDescription Dependency Property
</summary>
</member>
<member name="F:AvalonDock.DocumentContent.IsFloatingPropertyKey">
<summary>
IsFloating Read-Only Dependency Property
</summary>
</member>
<member name="M:AvalonDock.DocumentContent.SetIsFloating(System.Boolean)">
<summary>
Provides a secure method for setting the IsFloating property.
This dependency property indicates if the DocumentContent is floating inside an external window.
</summary>
<param name="value">The new value for the property.</param>
</member>
<member name="M:AvalonDock.DocumentContent.Show">
<summary>
Show <see cref="T:AvalonDock.DocumentContent"/> as tabbed document
</summary>
</member>
<member name="M:AvalonDock.DocumentContent.Show(AvalonDock.DockingManager)">
<summary>
Show <see cref="T:AvalonDock.DocumentContent"/> as tabbed document inside the provided <see cref="T:AvalonDock.DockingManager"/>
</summary>
<param name="manager">Docking manager target</param>
</member>
<member name="M:AvalonDock.DocumentContent.Show(System.Boolean)">
<summary>
Show <see cref="T:AvalonDock.DocumentContent"/> as tabbed document or inside a floating window
</summary>
</member>
<member name="M:AvalonDock.DocumentContent.Show(AvalonDock.DockingManager,System.Boolean)">
<summary>
Show <see cref="T:AvalonDock.DocumentContent"/> as tabbed document inside the provided <see cref="T:AvalonDock.DockingManager"/>
</summary>
<param name="manager">Docking manager target</param>
<param name="showAsFloatingWindow">True if document should be shown inside a floating window (<see cref="T:AvalonDock.DocumentFloatingWindow"/>)</param>
</member>
<member name="M:AvalonDock.DocumentContent.Activate">
<summary>
Activate the document showing its header if it's not visible
</summary>
</member>
<member name="M:AvalonDock.DocumentContent.CanExecuteCommand(System.Windows.Input.ICommand)">
<summary>
Retrive a value indicating if the command can be executed based to the dockable content state
</summary>
<param name="command"></param>
<returns></returns>
</member>
<member name="M:AvalonDock.DocumentContent.InternalClose">
<summary>
Close this content without notifications
</summary>
</member>
<member name="M:AvalonDock.DocumentContent.Close">
<summary>
Close this document removing it from its parent container
</summary>
<remarks>Use this function to close a document and remove it from its parent container. Please note
that if you simply remove it from its parent <see cref="T:AvalonDock.DocumentPane"/> without call this method, events like
<see cref="!:OnClosing"/>/<see cref="!:OnClosed"/> are not called.
</remarks>
</member>
<member name="M:AvalonDock.DocumentContent.Hide">
<summary>
Hide the <see cref="T:AvalonDock.DocumentContent"/> (Close the document)
</summary>
<returns></returns>
</member>
<member name="P:AvalonDock.DocumentContent.InfoTip">
<summary>
Gets or sets the InfoTip property. This dependency property
indicates information text attached to the document content.
</summary>
<remarks>This text is usually displayed when users switch between documents and helps them to choose the right one.</remarks>
</member>
<member name="P:AvalonDock.DocumentContent.ContentTypeDescription">
<summary>
Gets or sets the ContentTypeDescription property. This dependency property
indicates a text which describes the type of content contained in this document.
</summary>
</member>
<member name="P:AvalonDock.DocumentContent.IsFloatingAllowed">
<summary>
Gets or sets a value indicating if this document can float over main window (VS2010 Feature).
</summary>
</member>
<member name="P:AvalonDock.DocumentContent.IsFloating">
<summary>
Gets the IsFloating property. This dependency property
indicates if the DocumentContent is floating inside an external window.
</summary>
</member>
<member name="P:AvalonDock.DeserializationCallbackEventArgs.Name">
<summary>
Gets the name of the content to deserialize
</summary>
</member>
<member name="P:AvalonDock.DeserializationCallbackEventArgs.Content">
<summary>
Gets/Sets the content manually deserialized
</summary>
</member>
<member name="T:AvalonDock.ThemeFactory">
<summary>
Is used for color-support to change the colors depending on a base theme.
</summary>
</member>
<member name="M:AvalonDock.ThemeFactory.ChangeTheme(System.String)">
<summary>
Change the theme to one from AvalonDock.
</summary>
<param name="theme">for example: "aero.normalcolor" (default style)</param>
</member>
<member name="M:AvalonDock.ThemeFactory.ChangeTheme(System.Uri)">
<summary>
Change the theme to one from AvalonDock.
</summary>
<param name="theme">for example: /AvalonDock;component/themes/aero.normalcolor.xaml" (default style)</param>
</member>
<member name="M:AvalonDock.ThemeFactory.ChangeColors(System.Windows.Media.Color)">
<summary>
Change the colors based on the aero-theme from AvalonDock.
<para>
<example>Example: ChangeColors(Colors.DarkGreen)</example>
</para>
</summary>
<param name="color">the new Color</param>
</member>
<member name="M:AvalonDock.ThemeFactory.ChangeColors(System.String,System.Windows.Media.Color)">
<summary>
Change the colors based on a theme-name from AvalonDock.
<para>
<example>Example: ChangeColors("classic", Colors.DarkGreen)</example>
</para>
</summary>
<param name="baseTheme">the string of the base theme we want to change</param>
<param name="color">the new Color</param>
</member>
<member name="M:AvalonDock.ThemeFactory.ResetTheme">
<summary>
Reset custom colors to theme defaults
</summary>
</member>
<member name="M:AvalonDock.ThemeFactory.ChangeBrush(AvalonDock.AvalonDockBrushes,System.Windows.Media.Brush)">
<summary>
Change a specified brush inside the actual theme.
Look at AvalonDockBrushes.cs for possible values.
</summary>
<param name="brushName">an AvalonDockBrushes value</param>
<param name="brush">The new brush. It can be every brush type that is derived from Brush-class.</param>
</member>
<member name="M:AvalonDock.ThemeFactory.ChangeBrush(System.String,System.Windows.Media.Brush)">
<summary>
Change a specified brush inside the actual theme.
</summary>
<param name="brushName">a brush name</param>
<param name="brush">The new brush. It can be every brush type that is derived from Brush-class.</param>
</member>
<member name="M:AvalonDock.ThemeFactory.ChangeKeysInResourceDictionary(System.Windows.ResourceDictionary,System.Windows.Media.Color)">
<summary>
Searches for keys in the ResourceDictionary for brushes and changes the color-values
</summary>
<param name="rd">the ResourceDictionary</param>
<param name="color">the new Color</param>
</member>
<member name="T:AvalonDock.AvalonDockBrushes">
<summary>
Defines a list of brushes used by AvalonDock templates
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DefaultBackgroundBrush">
<summary>
Default brush for DockingManager background
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DockablePaneTitleBackground">
<summary>
Brush used for the title background of a <see cref="T:AvalonDock.DockablePane"/>.
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DockablePaneTitleBackgroundSelected">
<summary>
Brush used for the title background of a <see cref="T:AvalonDock.DockablePane"/> when is focused.
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DockablePaneTitleForeground">
<summary>
Brush used for the title foreground of a <see cref="T:AvalonDock.DockablePane"/>.
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DockablePaneTitleForegroundSelected">
<summary>
Brush used for the title foreground of a <see cref="T:AvalonDock.DockablePane"/> when is focused.
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.PaneHeaderCommandBackground">
<summary>
Brush used for the background of the pane command pins.
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.PaneHeaderCommandBorderBrush">
<summary>
Brush used for the border of the pane command pins.
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DocumentHeaderBackground">
<summary>
Brush used for the background of a document header.
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DocumentHeaderForeground">
<summary>
Brush used for the foreground of a document header.
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DocumentHeaderForegroundSelected">
<summary>
Brush used for fonts while a document header is selected but not activated
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DocumentHeaderForegroundSelectedActivated">
<summary>
Brush used for fonts while a document header is selected and activated
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DocumentHeaderBackgroundSelected">
<summary>
Brush used for the background of a document header when selected (<see cref="P:AvalonDock.ManagedContent.IsActiveContent"/>).
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DocumentHeaderBackgroundSelectedActivated">
<summary>
Brush used for the background of a document header when active and selected (<see cref="P:AvalonDock.ManagedContent.IsActiveDocument"/>).
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DocumentHeaderBackgroundMouseOver">
<summary>
Brush used for the background of a document header when mouse is over it.
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DocumentHeaderBorderBrushMouseOver">
<summary>
Brush used for the border brush of a document header when mouse is over it (but is not selected).
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DocumentHeaderBorder">
<summary>
Brush for the document header border
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DocumentHeaderBorderSelected">
<summary>
Brush for the document header border when contains a document selected
</summary>
</member>
<member name="F:AvalonDock.AvalonDockBrushes.DocumentHeaderBorderSelectedActivated">
<summary>
Brush for the document header border when contains a document selected and activated
</summary>
</member>
<member name="F:AvalonDock.ResizingPanel.OrientationProperty">
<summary>
Give access to Orientation attached property
</summary>
<remarks>If horizontal oriented children are positioned from left to right and width of each child is computed according to <see cref="!:ResizingWidth"/> attached property value. When vertical oriented children are arranged from top to bottom, according to <see cref="!:ResizingHeight"/> of each child.</remarks>
</member>
<member name="M:AvalonDock.ResizingPanel.CorrectSizes">
<summary>
Correct sizes of children if all of them are set to absolutes
</summary>
</member>
<member name="M:AvalonDock.ResizingPanel.AdjustPanelSizes">
<summary>
Helper funcs which correct elements size of a resizing panel
</summary>
</member>
<member name="M:AvalonDock.ResizingPanel.MeasureOverride(System.Windows.Size)">
<summary>
Compute the desidered size of the panel
</summary>
<param name="availableSize"></param>
<returns></returns>
</member>
<member name="M:AvalonDock.ResizingPanel.ArrangeOverride(System.Windows.Size)">
<summary>
Arranges children giving them a proportional space according to their <see cref="!:SplitSize"/> attached property value
</summary>
<param name="finalSize"></param>
<returns></returns>
</member>
<member name="M:AvalonDock.ResizingPanel.splitter_DragDelta(System.Object,System.Windows.Controls.Primitives.DragDeltaEventArgs)">
<summary>
This method is called by a splitter when it is dragged
</summary>
<param name="splitter">Dragged splitter</param>
<param name="delta"></param>
</member>
<member name="M:AvalonDock.ResizingPanel.RemoveChild(System.Windows.FrameworkElement)">
<summary>
Remove a child from children collection
</summary>
<param name="childToRemove"></param>
</member>
<member name="M:AvalonDock.ResizingPanel.InsertChildRelativeTo(System.Windows.FrameworkElement,System.Windows.FrameworkElement,System.Boolean)">
<summary>
Insert a new child element into the children collection.
</summary>
<param name="childToInsert">New child element to insert.</param>
<param name="relativeChild">Child after or before which <see cref="!:childToInsert"/> element must be insert.</param>
<param name="next">True if new child must be insert after the <see cref="!:relativeChild"/> element. False otherwise.</param>
</member>
<member name="P:AvalonDock.ResizingPanel.Orientation">
<summary>
Gets or sets the orientation of the panel
</summary>
<remarks>If horizontal oriented children are positioned from left to right and width of each child is computed according to <see cref="!:ResizingWidth"/> attached property value. When vertical oriented children are arranged from top to bottom, according to <see cref="!:ResizingHeight"/> of each child.</remarks>
</member>
<member name="T:AvalonDock.FloatingWindow">
<summary>
Represents the base class for <see cref="T:AvalonDock.DockableFloatingWindow"/> and <see cref="T:AvalonDock.DocumentFloatingWindow"/> classes
</summary>
<remarks>Provides base services for floating windows</remarks>
</member>
<member name="F:AvalonDock.FloatingWindow.ContentTitlePropertyKey">
<summary>
ContentTitle Read-Only Dependency Property
</summary>
</member>
<member name="M:AvalonDock.FloatingWindow.SetContentTitle(System.Object)">
<summary>
Provides a secure method for setting the ContentTitle property.
This dependency property indicates title of the content currectly hosted in the floating window.
</summary>
<param name="value">The new value for the property.</param>
</member>
<member name="M:AvalonDock.FloatingWindow.Close(System.Boolean)">
<summary>
Closes the window regardless of result of contents CanClose method call
</summary>
<param name="force"></param>
</member>
<member name="M:AvalonDock.FloatingWindow.Dock">
<summary>
Redock contained <see cref="T:AvalonDock.ManagedContent"/> object to the <see cref="!:DcokingManager"/>
</summary>
</member>
<member name="P:AvalonDock.FloatingWindow.ContentTitle">
<summary>
Gets the ContentTitle property. This dependency property
indicates title of the content currectly hosted in the floating window.
</summary>
</member>
<member name="F:AvalonDock.DocumentPane.ContainsActiveDocumentPropertyKey">
<summary>
ContainsActiveDocument Read-Only Dependency Property
</summary>
<remarks>This property is especially intended for use in restyling.</remarks>
</member>
<member name="M:AvalonDock.DocumentPane.SetContainsActiveDocument(System.Boolean)">
<summary>
Provides a secure method for setting the ContainsActiveDocument property.
This dependency property indicates if this pane contains a <see cref="T:AvalonDock.DocumentPane"/> that has <see cref="P:AvalonDock.ManagedContent.IsActiveDocument"/> property set to true.
</summary>
<param name="value">The new value for the property.</param>
</member>
<member name="M:AvalonDock.DocumentPane.OnContainsActiveDocumentChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Handles changes to the ContainsActiveDocument property.
</summary>
</member>
<member name="M:AvalonDock.DocumentPane.OnContainsActiveDocumentChanged(System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Provides derived classes an opportunity to handle changes to the ContainsActiveDocument property.
</summary>
</member>
<member name="P:AvalonDock.DocumentPane.IsMainDocumentPane">
<summary>
Returns a value indicating if this pane is the main document pane
</summary>
<remarks>The main document pane is the default pane that remains always visible.</remarks>
</member>
<member name="P:AvalonDock.DocumentPane.ContainsActiveDocument">
<summary>
Gets the ContainsActiveDocument property. This dependency property
indicates if this pane contains a <see cref="T:AvalonDock.DocumentPane"/> that has <see cref="P:AvalonDock.ManagedContent.IsActiveDocument"/> property set to true.
</summary>
</member>
<member name="M:AvalonDock.RoutedEventHelper.RaiseEvent(System.Windows.DependencyObject,System.Windows.RoutedEventArgs)">
<summary>
A static helper method to raise a routed event on a target UIElement or ContentElement.
</summary>
<param name="target">UIElement or ContentElement on which to raise the event</param>
<param name="args">RoutedEventArgs to use when raising the event</param>
</member>
<member name="M:AvalonDock.RoutedEventHelper.AddHandler(System.Windows.DependencyObject,System.Windows.RoutedEvent,System.Delegate)">
<summary>
A static helper method that adds a handler for a routed event
to a target UIElement or ContentElement.
</summary>
<param name="element">UIElement or ContentElement that listens to the event</param>
<param name="routedEvent">Event that will be handled</param>
<param name="handler">Event handler to be added</param>
</member>
<member name="M:AvalonDock.RoutedEventHelper.RemoveHandler(System.Windows.DependencyObject,System.Windows.RoutedEvent,System.Delegate)">
<summary>
A static helper method that removes a handler for a routed event
from a target UIElement or ContentElement.
</summary>
<param name="element">UIElement or ContentElement that listens to the event</param>
<param name="routedEvent">Event that will no longer be handled</param>
<param name="handler">Event handler to be removed</param>
</member>
<member name="M:AvalonDock.OverlayWindow.OnDragEnter(AvalonDock.OverlayWindowDockingButton,System.Windows.Point)">
<summary>
Shows a highlighting rectangle
</summary>
<param name="overlayWindowDockingButton"></param>
<param name="point"></param>
<returns></returns>
</member>
<member name="M:AvalonDock.OverlayWindow.OnDragLeave(AvalonDock.OverlayWindowDockingButton,System.Windows.Point)">
<summary>
Hides the highlighting rectangle
</summary>
<param name="overlayWindowDockingButton"></param>
<param name="point"></param>
<returns></returns>
</member>
<member name="F:AvalonDock.OverlayWindow.OverlayButtonHoverPropertyKey">
<summary>
OverlayButtonHover Read-Only Dependency Property
</summary>
</member>
<member name="M:AvalonDock.OverlayWindow.SetOverlayButtonHover(AvalonDock.OverlayButtonHover)">
<summary>
Provides a secure method for setting the OverlayButtonHover property.
This dependency property indicates indicates which anchor button is currently highlighted by user.
</summary>
<param name="value">The new value for the property.</param>
</member>
<member name="P:AvalonDock.OverlayWindow.OverlayButtonHover">
<summary>
Gets the OverlayButtonHover property. This dependency property
indicates ....
</summary>
</member>
<member name="F:AvalonDock.PaneTabPanel.TabItemStyleProperty">
<summary>
TabItemStyle Dependency Property
</summary>
</member>
<member name="M:AvalonDock.PaneTabPanel.OnTabItemStyleChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Handles changes to the TabItemStyle property.
</summary>
</member>
<member name="M:AvalonDock.PaneTabPanel.OnTabItemStyleChanged(System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Provides derived classes an opportunity to handle changes to the TabItemStyle property.
</summary>
</member>
<member name="P:AvalonDock.PaneTabPanel.TabItemStyle">
<summary>
Gets or sets the TabItemStyle property. This dependency property
indicates style to use for tabs.
</summary>
</member>
<member name="T:AvalonDock.DockablePaneAnchorTab">
<summary>
Represents a tab displayed in a border of the docking manager
</summary>
<remarks></remarks>
</member>
<member name="M:AvalonDock.DockablePaneAnchorTab.OnPaneAttached(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Handles the referencedContent property changes in order to update the Anchor property
</summary>
<param name="depObj"></param>
<param name="e"></param>
</member>
<member name="F:AvalonDock.DockablePaneAnchorTab.AnchorPropertyKey">
<summary>
Anchor Read-Only Dependency Property
</summary>
</member>
<member name="M:AvalonDock.DockablePaneAnchorTab.SetAnchor(AvalonDock.AnchorStyle)">
<summary>
Provides a secure method for setting the Anchor property.
This dependency property indicates the achor style of referenced content that is in autohidden state.
</summary>
<param name="value">The new value for the property.</param>
</member>
<member name="F:AvalonDock.DockablePaneAnchorTab.IconPropertyKey">
<summary>
Icon Read-Only Dependency Property
</summary>
</member>
<member name="M:AvalonDock.DockablePaneAnchorTab.SetIcon(System.Object)">
<summary>
Provides a secure method for setting the Icon property.
This dependency property indicates icon of the referenced content in autohidden state.
</summary>
<param name="value">The new value for the property.</param>
</member>
<member name="F:AvalonDock.DockablePaneAnchorTab.TitlePropertyKey">
<summary>
Title Read-Only Dependency Property
</summary>
</member>
<member name="M:AvalonDock.DockablePaneAnchorTab.SetTitle(System.Object)">
<summary>
Provides a secure method for setting the Title property.
This dependency property indicates title of the content that is hosted in autohidden pane.
</summary>
<param name="value">The new value for the property.</param>
</member>
<member name="M:AvalonDock.DockablePaneAnchorTab.OnMouseMove(System.Windows.Input.MouseEventArgs)">
<summary>
Handles the MouseMove event
</summary>
<param name="e"></param>
<remarks>Notify the docking manager that the referenced content should appears</remarks>
</member>
<member name="M:AvalonDock.DockablePaneAnchorTab.OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs)">
<summary>
Handles the MouseDown event
</summary>
<param name="e"></param>
<remarks>Notify the docking manager that the referenced content should appears and should be activated</remarks>
</member>
<member name="P:AvalonDock.DockablePaneAnchorTab.ReferencedContent">
<summary>
Gets or sets the referenced content
</summary>
</member>
<member name="P:AvalonDock.DockablePaneAnchorTab.Anchor">
<summary>
Gets the Anchor property. This dependency property
indicates the achor style of referenced content that is in autohidden state.
</summary>
</member>
<member name="P:AvalonDock.DockablePaneAnchorTab.Icon">
<summary>
Gets the Icon property. This dependency property
indicates icon of the referenced content in autohidden state.
</summary>
</member>
<member name="P:AvalonDock.DockablePaneAnchorTab.Title">
<summary>
Gets the Title property. This dependency property
indicates title of the content that is hosted in autohidden pane.
</summary>
</member>
<member name="T:AvalonDock.NavigatorWindowItem">
<summary>
Represent an navigator item within lists of contents that user can choose from the <see cref="T:AvalonDock.NavigatorWindow"/>
</summary>
</member>
<member name="T:AvalonDock.NavigatorWindowDocumentItem">
<summary>
Specialized class of <see cref="T:AvalonDock.NavigatorWindowItem"/> for <see cref="T:AvalonDock.DocumentContent"/> objects
</summary>
</member>
<member name="T:AvalonDock.NavigatorWindow">
<summary>
Window that is automatically shown when user press Ctrl+Tab combination
</summary>
<remarks>This window allow user to rapidly select a <see cref="T:AvalonDock.DockableContent"/> object or a <see cref="T:AvalonDock.DocumentContent"/> object.
When selected a content is also activate with the function <see cref="M:AvalonDock.ManagedContent.Activate"/></remarks>
</member>
<member name="M:AvalonDock.NavigatorWindow.OnSelectedContentChanged(AvalonDock.NavigatorWindowItem,AvalonDock.NavigatorWindowItem)">
<summary>
Provides derived classes an opportunity to handle changes to the SelectedContent property.
</summary>
</member>
<member name="F:AvalonDock.NavigatorWindow.DocumentsPropertyKey">