forked from skyarkhangel/HSK-Launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCaliburn.Micro.Platform.xml
executable file
·1827 lines (1827 loc) · 93.6 KB
/
Caliburn.Micro.Platform.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>Caliburn.Micro.Platform</name>
</assembly>
<members>
<member name="T:Caliburn.Micro.Action">
<summary>
A host for action related attached properties.
</summary>
</member>
<member name="F:Caliburn.Micro.Action.TargetProperty">
<summary>
A property definition representing the target of an <see cref="T:Caliburn.Micro.ActionMessage" /> . The DataContext of the element will be set to this instance.
</summary>
</member>
<member name="F:Caliburn.Micro.Action.TargetWithoutContextProperty">
<summary>
A property definition representing the target of an <see cref="T:Caliburn.Micro.ActionMessage" /> . The DataContext of the element is not set to this instance.
</summary>
</member>
<member name="M:Caliburn.Micro.Action.SetTarget(System.Windows.DependencyObject,System.Object)">
<summary>
Sets the target of the <see cref="T:Caliburn.Micro.ActionMessage" /> .
</summary>
<param name="d"> The element to attach the target to. </param>
<param name="target"> The target for instances of <see cref="T:Caliburn.Micro.ActionMessage" /> . </param>
</member>
<member name="M:Caliburn.Micro.Action.GetTarget(System.Windows.DependencyObject)">
<summary>
Gets the target for instances of <see cref="T:Caliburn.Micro.ActionMessage" /> .
</summary>
<param name="d"> The element to which the target is attached. </param>
<returns> The target for instances of <see cref="T:Caliburn.Micro.ActionMessage" /> </returns>
</member>
<member name="M:Caliburn.Micro.Action.SetTargetWithoutContext(System.Windows.DependencyObject,System.Object)">
<summary>
Sets the target of the <see cref="T:Caliburn.Micro.ActionMessage" /> .
</summary>
<param name="d"> The element to attach the target to. </param>
<param name="target"> The target for instances of <see cref="T:Caliburn.Micro.ActionMessage" /> . </param>
<remarks>
The DataContext will not be set.
</remarks>
</member>
<member name="M:Caliburn.Micro.Action.GetTargetWithoutContext(System.Windows.DependencyObject)">
<summary>
Gets the target for instances of <see cref="T:Caliburn.Micro.ActionMessage" /> .
</summary>
<param name="d"> The element to which the target is attached. </param>
<returns> The target for instances of <see cref="T:Caliburn.Micro.ActionMessage" /> </returns>
</member>
<member name="M:Caliburn.Micro.Action.HasTargetSet(System.Windows.DependencyObject)">
<summary>
Checks if the <see cref="T:Caliburn.Micro.ActionMessage" /> -Target was set.
</summary>
<param name="element"> DependencyObject to check </param>
<returns> True if Target or TargetWithoutContext was set on <paramref name="element" /> </returns>
</member>
<member name="M:Caliburn.Micro.Action.Invoke(System.Object,System.String,System.Windows.DependencyObject,System.Windows.FrameworkElement,System.Object,System.Object[])">
<summary>
Uses the action pipeline to invoke the method.
</summary>
<param name="target"> The object instance to invoke the method on. </param>
<param name="methodName"> The name of the method to invoke. </param>
<param name="view"> The view. </param>
<param name="source"> The source of the invocation. </param>
<param name="eventArgs"> The event args. </param>
<param name="parameters"> The method parameters. </param>
</member>
<member name="T:Caliburn.Micro.ActionExecutionContext">
<summary>
The context used during the execution of an Action or its guard.
</summary>
</member>
<member name="F:Caliburn.Micro.ActionExecutionContext.CanExecute">
<summary>
Determines whether the action can execute.
</summary>
<remarks>Returns true if the action can execute, false otherwise.</remarks>
</member>
<member name="F:Caliburn.Micro.ActionExecutionContext.EventArgs">
<summary>
Any event arguments associated with the action's invocation.
</summary>
</member>
<member name="F:Caliburn.Micro.ActionExecutionContext.Method">
<summary>
The actual method info to be invoked.
</summary>
</member>
<member name="P:Caliburn.Micro.ActionExecutionContext.Message">
<summary>
The message being executed.
</summary>
</member>
<member name="P:Caliburn.Micro.ActionExecutionContext.Source">
<summary>
The source from which the message originates.
</summary>
</member>
<member name="P:Caliburn.Micro.ActionExecutionContext.Target">
<summary>
The instance on which the action is invoked.
</summary>
</member>
<member name="P:Caliburn.Micro.ActionExecutionContext.View">
<summary>
The view associated with the target.
</summary>
</member>
<member name="P:Caliburn.Micro.ActionExecutionContext.Item(System.String)">
<summary>
Gets or sets additional data needed to invoke the action.
</summary>
<param name="key">The data key.</param>
<returns>Custom data associated with the context.</returns>
</member>
<member name="M:Caliburn.Micro.ActionExecutionContext.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="E:Caliburn.Micro.ActionExecutionContext.Disposing">
<summary>
Called when the execution context is disposed
</summary>
</member>
<member name="T:Caliburn.Micro.ActionMessage">
<summary>
Used to send a message from the UI to a presentation model class, indicating that a particular Action should be invoked.
</summary>
</member>
<member name="F:Caliburn.Micro.ActionMessage.EnforceGuardsDuringInvocation">
<summary>
Causes the action invocation to "double check" if the action should be invoked by executing the guard immediately before hand.
</summary>
<remarks>This is disabled by default. If multiple actions are attached to the same element, you may want to enable this so that each individaul action checks its guard regardless of how the UI state appears.</remarks>
</member>
<member name="F:Caliburn.Micro.ActionMessage.ThrowsExceptions">
<summary>
Causes the action to throw if it cannot locate the target or the method at invocation time.
</summary>
<remarks>True by default.</remarks>
</member>
<member name="F:Caliburn.Micro.ActionMessage.MethodNameProperty">
<summary>
Represents the method name of an action message.
</summary>
</member>
<member name="F:Caliburn.Micro.ActionMessage.ParametersProperty">
<summary>
Represents the parameters of an action message.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionMessage.#ctor">
<summary>
Creates an instance of <see cref="T:Caliburn.Micro.ActionMessage"/>.
</summary>
</member>
<member name="P:Caliburn.Micro.ActionMessage.MethodName">
<summary>
Gets or sets the name of the method to be invoked on the presentation model class.
</summary>
<value>The name of the method.</value>
</member>
<member name="P:Caliburn.Micro.ActionMessage.Parameters">
<summary>
Gets the parameters to pass as part of the method invocation.
</summary>
<value>The parameters.</value>
</member>
<member name="E:Caliburn.Micro.ActionMessage.Detaching">
<summary>
Occurs before the message detaches from the associated object.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionMessage.OnAttached">
<summary>
Called after the action is attached to an AssociatedObject.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionMessage.OnDetaching">
<summary>
Called when the action is being detached from its AssociatedObject, but before it has actually occurred.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionMessage.Invoke(System.Object)">
<summary>
Invokes the action.
</summary>
<param name="eventArgs">The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference.</param>
</member>
<member name="M:Caliburn.Micro.ActionMessage.UpdateAvailability">
<summary>
Forces an update of the UI's Enabled/Disabled state based on the the preconditions associated with the method.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionMessage.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="F:Caliburn.Micro.ActionMessage.InvokeAction">
<summary>
Invokes the action using the specified <see cref="T:Caliburn.Micro.ActionExecutionContext"/>
</summary>
</member>
<member name="F:Caliburn.Micro.ActionMessage.ApplyAvailabilityEffect">
<summary>
Applies an availability effect, such as IsEnabled, to an element.
</summary>
<remarks>Returns a value indicating whether or not the action is available.</remarks>
</member>
<member name="F:Caliburn.Micro.ActionMessage.GetTargetMethod">
<summary>
Finds the method on the target matching the specified message.
</summary>
<returns>The matching method, if available.</returns>
</member>
<member name="F:Caliburn.Micro.ActionMessage.SetMethodBinding">
<summary>
Sets the target, method and view on the context. Uses a bubbling strategy by default.
</summary>
</member>
<member name="F:Caliburn.Micro.ActionMessage.PrepareContext">
<summary>
Prepares the action execution context for use.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionMessage.TryFindGuardMethod(Caliburn.Micro.ActionExecutionContext,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Try to find a candidate for guard function, having:
- a name matching any of <paramref name="possibleGuardNames"/>
- no generic parameters
- a bool return type
- no parameters or a set of parameters corresponding to the action method
</summary>
<param name="context">The execution context</param>
<param name="possibleGuardNames">Method names to look for.</param>
<returns>A MethodInfo, if found; null otherwise</returns>
</member>
<member name="F:Caliburn.Micro.ActionMessage.BuildPossibleGuardNames">
<summary>
Returns the list of possible names of guard methods / properties for the given method.
</summary>
</member>
<member name="T:Caliburn.Micro.Bind">
<summary>
Hosts dependency properties for binding.
</summary>
</member>
<member name="F:Caliburn.Micro.Bind.ModelProperty">
<summary>
Allows binding on an existing view. Use this on root UserControls, Pages and Windows; not in a DataTemplate.
</summary>
</member>
<member name="F:Caliburn.Micro.Bind.ModelWithoutContextProperty">
<summary>
Allows binding on an existing view without setting the data context. Use this from within a DataTemplate.
</summary>
</member>
<member name="M:Caliburn.Micro.Bind.GetModelWithoutContext(System.Windows.DependencyObject)">
<summary>
Gets the model to bind to.
</summary>
<param name = "dependencyObject">The dependency object to bind to.</param>
<returns>The model.</returns>
</member>
<member name="M:Caliburn.Micro.Bind.SetModelWithoutContext(System.Windows.DependencyObject,System.Object)">
<summary>
Sets the model to bind to.
</summary>
<param name = "dependencyObject">The dependency object to bind to.</param>
<param name = "value">The model.</param>
</member>
<member name="M:Caliburn.Micro.Bind.GetModel(System.Windows.DependencyObject)">
<summary>
Gets the model to bind to.
</summary>
<param name = "dependencyObject">The dependency object to bind to.</param>
<returns>The model.</returns>
</member>
<member name="M:Caliburn.Micro.Bind.SetModel(System.Windows.DependencyObject,System.Object)">
<summary>
Sets the model to bind to.
</summary>
<param name = "dependencyObject">The dependency object to bind to.</param>
<param name = "value">The model.</param>
</member>
<member name="F:Caliburn.Micro.Bind.AtDesignTimeProperty">
<summary>
Allows application of conventions at design-time.
</summary>
</member>
<member name="M:Caliburn.Micro.Bind.GetAtDesignTime(System.Windows.DependencyObject)">
<summary>
Gets whether or not conventions are being applied at design-time.
</summary>
<param name="dependencyObject">The ui to apply conventions to.</param>
<returns>Whether or not conventions are applied.</returns>
</member>
<member name="M:Caliburn.Micro.Bind.SetAtDesignTime(System.Windows.DependencyObject,System.Boolean)">
<summary>
Sets whether or not do bind conventions at design-time.
</summary>
<param name="dependencyObject">The ui to apply conventions to.</param>
<param name="value">Whether or not to apply conventions.</param>
</member>
<member name="T:Caliburn.Micro.BindingScope">
<summary>
Provides methods for searching a given scope for named elements.
</summary>
</member>
<member name="M:Caliburn.Micro.BindingScope.FindName(System.Collections.Generic.IEnumerable{System.Windows.FrameworkElement},System.String)">
<summary>
Searches through the list of named elements looking for a case-insensitive match.
</summary>
<param name="elementsToSearch">The named elements to search through.</param>
<param name="name">The name to search for.</param>
<returns>The named element or null if not found.</returns>
</member>
<member name="M:Caliburn.Micro.BindingScope.AddChildResolver(System.Func{System.Type,System.Boolean},System.Func{System.Windows.DependencyObject,System.Collections.Generic.IEnumerable{System.Windows.DependencyObject}})">
<summary>
Adds a child resolver.
</summary>
<param name="filter">The type filter.</param>
<param name="resolver">The resolver.</param>
</member>
<member name="M:Caliburn.Micro.BindingScope.AddChildResolver``1(System.Func{``0,System.Collections.Generic.IEnumerable{System.Windows.DependencyObject}})">
<summary>
Adds a child resolver.
</summary>
<param name="resolver">The resolver.</param>
</member>
<member name="M:Caliburn.Micro.BindingScope.RemoveChildResolver(Caliburn.Micro.ChildResolver)">
<summary>
Removes a child resolver.
</summary>
<param name="resolver">The resolver to remove.</param>
<returns>true, when the resolver was (found and) removed.</returns>
</member>
<member name="F:Caliburn.Micro.BindingScope.GetNamedElements">
<summary>
Gets all the <see cref="T:System.Windows.FrameworkElement"/> instances with names in the scope.
</summary>
<returns>Named <see cref="T:System.Windows.FrameworkElement"/> instances in the provided scope.</returns>
<remarks>Pass in a <see cref="T:System.Windows.DependencyObject"/> and receive a list of named <see cref="T:System.Windows.FrameworkElement"/> instances in the same scope.</remarks>
</member>
<member name="F:Caliburn.Micro.BindingScope.GetVisualParent">
<summary>
Gets the parent of the given object in the Visual Tree.
</summary>
<returns>The parent of the given object in the Visual Tree</returns>
</member>
<member name="F:Caliburn.Micro.BindingScope.FindNamedDescendants">
<summary>
Finds a set of named <see cref="T:System.Windows.FrameworkElement"/> instances in each hop in a <see cref="T:Caliburn.Micro.BindingScope.ScopeNamingRoute"/>.
</summary>
<remarks>
Searches all the elements in the <see cref="T:Caliburn.Micro.BindingScope.ScopeNamingRoute"/> parameter as well as the visual children of
each of these elements, the <see cref="P:System.Windows.Controls.ContentControl.Content"/>, the <c>HeaderedContentControl.Header</c>,
the <see cref="P:System.Windows.Controls.ItemsControl.Items"/>, or the <c>HeaderedItemsControl.Header</c>, if any are found.
</remarks>
</member>
<member name="F:Caliburn.Micro.BindingScope.FindScopeNamingRoute">
<summary>
Finds a path of dependency objects which traces through visual anscestry until a root which is <see langword="null"/>,
a <see cref="T:System.Windows.Controls.UserControl"/>, a <c>Page</c> with a dependency object <c>Page.ContentProperty</c> value,
a dependency object with <see cref="F:Caliburn.Micro.View.IsScopeRootProperty"/> set to <see langword="true"/>. <see cref="T:System.Windows.Controls.ContentPresenter"/>
and <see cref="T:System.Windows.Controls.ItemsPresenter"/> are included in the resulting <see cref="T:Caliburn.Micro.BindingScope.ScopeNamingRoute"/> in order to track which item
in an items control we are scoped to.
</summary>
</member>
<member name="T:Caliburn.Micro.BindingScope.ScopeNamingRoute">
<summary>
Maintains a connection in the visual tree of dependency objects in order to record a route through it.
</summary>
</member>
<member name="P:Caliburn.Micro.BindingScope.ScopeNamingRoute.Root">
<summary>
Gets or sets the starting point of the route.
</summary>
</member>
<member name="M:Caliburn.Micro.BindingScope.ScopeNamingRoute.AddHop(System.Windows.DependencyObject,System.Windows.DependencyObject)">
<summary>
Adds a segment to the route.
</summary>
<param name="from">The source dependency object.</param>
<param name="to">The target dependency object.</param>
</member>
<member name="M:Caliburn.Micro.BindingScope.ScopeNamingRoute.TryGetHop(System.Windows.DependencyObject,System.Windows.DependencyObject@)">
<summary>
Tries to get a target dependency object given a source.
</summary>
<param name="hopSource">The possible beginning of a route segment (hop).</param>
<param name="hopTarget">The target of a route segment (hop).</param>
<returns><see langword="true"/> if <paramref name="hopSource"/> had a target recorded; <see langword="false"/> otherwise.</returns>
</member>
<member name="T:Caliburn.Micro.ChildResolver">
<summary>
Represents a resolver that takes a control and returns it's children
</summary>
</member>
<member name="M:Caliburn.Micro.ChildResolver.#ctor(System.Func{System.Type,System.Boolean},System.Func{System.Windows.DependencyObject,System.Collections.Generic.IEnumerable{System.Windows.DependencyObject}})">
<summary>
Creates the ChildResolver using the given anonymous methods.
</summary>
<param name="filter">The filter</param>
<param name="resolver">The resolver</param>
</member>
<member name="M:Caliburn.Micro.ChildResolver.CanResolve(System.Type)">
<summary>
Can this resolve appy to the given type.
</summary>
<param name="type">The visual tree type.</param>
<returns>Returns true if this resolver applies.</returns>
</member>
<member name="M:Caliburn.Micro.ChildResolver.Resolve(System.Windows.DependencyObject)">
<summary>
The element from the visual tree for the children to resolve.
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="T:Caliburn.Micro.ChildResolver`1">
<summary>
Generic strongly typed child resolver
</summary>
<typeparam name="T">The type to filter on</typeparam>
</member>
<member name="M:Caliburn.Micro.ChildResolver`1.#ctor(System.Func{`0,System.Collections.Generic.IEnumerable{System.Windows.DependencyObject}})">
<summary>
Creates a
</summary>
<param name="resolver"></param>
</member>
<member name="T:Caliburn.Micro.ConventionManager">
<summary>
Used to configure the conventions used by the framework to apply bindings and create actions.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.BooleanToVisibilityConverter">
<summary>
Converters <see cref="T:System.Boolean"/> to/from <see cref="T:System.Windows.Visibility"/>.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.IncludeStaticProperties">
<summary>
Indicates whether or not static properties should be included during convention name matching.
</summary>
<remarks>False by default.</remarks>
</member>
<member name="F:Caliburn.Micro.ConventionManager.OverwriteContent">
<summary>
Indicates whether or not the Content of ContentControls should be overwritten by conventional bindings.
</summary>
<remarks>False by default.</remarks>
</member>
<member name="F:Caliburn.Micro.ConventionManager.DefaultItemTemplate">
<summary>
The default DataTemplate used for ItemsControls when required.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.DefaultHeaderTemplate">
<summary>
The default DataTemplate used for Headered controls when required.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.Singularize">
<summary>
Changes the provided word from a plural form to a singular form.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.DerivePotentialSelectionNames">
<summary>
Derives the SelectedItem property name.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.SetBinding">
<summary>
Creates a binding and sets it on the element, applying the appropriate conventions.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ApplyBindingMode">
<summary>
Applies the appropriate binding mode to the binding.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ApplyValidation">
<summary>
Determines whether or not and what type of validation to enable on the binding.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ApplyValueConverter">
<summary>
Determines whether a value converter is is needed and applies one to the binding.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ApplyStringFormat">
<summary>
Determines whether a custom string format is needed and applies it to the binding.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ApplyUpdateSourceTrigger">
<summary>
Determines whether a custom update source trigger should be applied to the binding.
</summary>
</member>
<member name="M:Caliburn.Micro.ConventionManager.AddElementConvention``1(System.Windows.DependencyProperty,System.String,System.String)">
<summary>
Adds an element convention.
</summary>
<typeparam name="T">The type of element.</typeparam>
<param name="bindableProperty">The default property for binding conventions.</param>
<param name="parameterProperty">The default property for action parameters.</param>
<param name="eventName">The default event to trigger actions.</param>
</member>
<member name="M:Caliburn.Micro.ConventionManager.AddElementConvention(Caliburn.Micro.ElementConvention)">
<summary>
Adds an element convention.
</summary>
<param name="convention"></param>
</member>
<member name="M:Caliburn.Micro.ConventionManager.GetElementConvention(System.Type)">
<summary>
Gets an element convention for the provided element type.
</summary>
<param name="elementType">The type of element to locate the convention for.</param>
<returns>The convention if found, null otherwise.</returns>
<remarks>Searches the class hierarchy for conventions.</remarks>
</member>
<member name="M:Caliburn.Micro.ConventionManager.HasBinding(System.Windows.FrameworkElement,System.Windows.DependencyProperty)">
<summary>
Determines whether a particular dependency property already has a binding on the provided element.
</summary>
</member>
<member name="M:Caliburn.Micro.ConventionManager.SetBindingWithoutBindingOverwrite(System.Type,System.String,System.Reflection.PropertyInfo,System.Windows.FrameworkElement,Caliburn.Micro.ElementConvention,System.Windows.DependencyProperty)">
<summary>
Creates a binding and sets it on the element, guarding against pre-existing bindings.
</summary>
</member>
<member name="M:Caliburn.Micro.ConventionManager.SetBindingWithoutBindingOrValueOverwrite(System.Type,System.String,System.Reflection.PropertyInfo,System.Windows.FrameworkElement,Caliburn.Micro.ElementConvention,System.Windows.DependencyProperty)">
<summary>
Creates a binding and set it on the element, guarding against pre-existing bindings and pre-existing values.
</summary>
<param name="viewModelType"></param>
<param name="path"></param>
<param name="property"></param>
<param name="element"></param>
<param name="convention"></param>
<param name="bindableProperty"> </param>
<returns></returns>
</member>
<member name="M:Caliburn.Micro.ConventionManager.ApplyItemTemplate(System.Windows.Controls.ItemsControl,System.Reflection.PropertyInfo)">
<summary>
Attempts to apply the default item template to the items control.
</summary>
<param name="itemsControl">The items control.</param>
<param name="property">The collection property.</param>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ConfigureSelectedItem">
<summary>
Configures the selected item convention.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ConfigureSelectedItemBinding">
<summary>
Configures the SelectedItem binding for matched selection path.
</summary>
</member>
<member name="M:Caliburn.Micro.ConventionManager.ApplyHeaderTemplate(System.Windows.FrameworkElement,System.Windows.DependencyProperty,System.Windows.DependencyProperty,System.Type)">
<summary>
Applies a header template based on <see cref="T:Caliburn.Micro.IHaveDisplayName"/>
</summary>
<param name="element">The element to apply the header template to.</param>
<param name="headerTemplateProperty">The depdendency property for the hdeader.</param>
<param name="headerTemplateSelectorProperty">The selector dependency property.</param>
<param name="viewModelType">The type of the view model.</param>
</member>
<member name="M:Caliburn.Micro.ConventionManager.GetPropertyCaseInsensitive(System.Type,System.String)">
<summary>
Gets a property by name, ignoring case and searching all interfaces.
</summary>
<param name="type">The type to inspect.</param>
<param name="propertyName">The property to search for.</param>
<returns>The property or null if not found.</returns>
</member>
<member name="T:Caliburn.Micro.DependencyPropertyHelper">
<summary>
Class that abstracts the differences in creating a DepedencyProperty / BindableProperty on the different platforms.
</summary>
</member>
<member name="M:Caliburn.Micro.DependencyPropertyHelper.RegisterAttached(System.String,System.Type,System.Type,System.Object,System.Windows.PropertyChangedCallback)">
<summary>
Register an attached dependency / bindable property
</summary>
<param name="name">The property name</param>
<param name="propertyType">The property type</param>
<param name="ownerType">The owner type</param>
<param name="defaultValue">The default value</param>
<param name="propertyChangedCallback">Callback to executed on property changed</param>
<returns>The registred attached dependecy property</returns>
</member>
<member name="M:Caliburn.Micro.DependencyPropertyHelper.Register(System.String,System.Type,System.Type,System.Object,System.Windows.PropertyChangedCallback)">
<summary>
Register a dependency / bindable property
</summary>
<param name="name">The property name</param>
<param name="propertyType">The property type</param>
<param name="ownerType">The owner type</param>
<param name="defaultValue">The default value</param>
<param name="propertyChangedCallback">Callback to executed on property changed</param>
<returns>The registred dependecy property</returns>
</member>
<member name="T:Caliburn.Micro.ElementConvention">
<summary>
Represents the conventions for a particular element type.
</summary>
</member>
<member name="F:Caliburn.Micro.ElementConvention.ElementType">
<summary>
The type of element to which the conventions apply.
</summary>
</member>
<member name="F:Caliburn.Micro.ElementConvention.GetBindableProperty">
<summary>
Gets the default property to be used in binding conventions.
</summary>
</member>
<member name="F:Caliburn.Micro.ElementConvention.CreateTrigger">
<summary>
The default trigger to be used when wiring actions on this element.
</summary>
</member>
<member name="F:Caliburn.Micro.ElementConvention.ParameterProperty">
<summary>
The default property to be used for parameters of this type in actions.
</summary>
</member>
<member name="F:Caliburn.Micro.ElementConvention.ApplyBinding">
<summary>
Applies custom conventions for elements of this type.
</summary>
<remarks>Pass the view model type, property path, property instance, framework element and its convention.</remarks>
</member>
<member name="T:Caliburn.Micro.IHaveParameters">
<summary>
Indicates that a message is parameterized.
</summary>
</member>
<member name="P:Caliburn.Micro.IHaveParameters.Parameters">
<summary>
Represents the parameters of a message.
</summary>
</member>
<member name="T:Caliburn.Micro.Message">
<summary>
Host's attached properties related to routed UI messaging.
</summary>
</member>
<member name="M:Caliburn.Micro.Message.SetHandler(System.Windows.DependencyObject,System.Object)">
<summary>
Places a message handler on this element.
</summary>
<param name="d"> The element. </param>
<param name="value"> The message handler. </param>
</member>
<member name="M:Caliburn.Micro.Message.GetHandler(System.Windows.DependencyObject)">
<summary>
Gets the message handler for this element.
</summary>
<param name="d"> The element. </param>
<returns> The message handler. </returns>
</member>
<member name="F:Caliburn.Micro.Message.AttachProperty">
<summary>
A property definition representing attached triggers and messages.
</summary>
</member>
<member name="M:Caliburn.Micro.Message.SetAttach(System.Windows.DependencyObject,System.String)">
<summary>
Sets the attached triggers and messages.
</summary>
<param name="d"> The element to attach to. </param>
<param name="attachText"> The parsable attachment text. </param>
</member>
<member name="M:Caliburn.Micro.Message.GetAttach(System.Windows.DependencyObject)">
<summary>
Gets the attached triggers and messages.
</summary>
<param name="d"> The element that was attached to. </param>
<returns> The parsable attachment text. </returns>
</member>
<member name="T:Caliburn.Micro.MessageBinder">
<summary>
A service that is capable of properly binding values to a method's parameters and creating instances of <see cref="T:Caliburn.Micro.IResult"/>.
</summary>
</member>
<member name="F:Caliburn.Micro.MessageBinder.SpecialValues">
<summary>
The special parameter values recognized by the message binder along with their resolvers.
Parameter names are case insensitive so the specified names are unique and can be used with different case variations
</summary>
</member>
<member name="F:Caliburn.Micro.MessageBinder.CustomConverters">
<summary>
Custom converters used by the framework registered by destination type for which they will be selected.
The converter is passed the existing value to convert and a "context" object.
</summary>
</member>
<member name="M:Caliburn.Micro.MessageBinder.DetermineParameters(Caliburn.Micro.ActionExecutionContext,System.Reflection.ParameterInfo[])">
<summary>
Determines the parameters that a method should be invoked with.
</summary>
<param name="context">The action execution context.</param>
<param name="requiredParameters">The parameters required to complete the invocation.</param>
<returns>The actual parameter values.</returns>
</member>
<member name="F:Caliburn.Micro.MessageBinder.EvaluateParameter">
<summary>
Transforms the textual parameter into the actual parameter.
</summary>
</member>
<member name="M:Caliburn.Micro.MessageBinder.CoerceValue(System.Type,System.Object,System.Object)">
<summary>
Coerces the provided value to the destination type.
</summary>
<param name="destinationType">The destination type.</param>
<param name="providedValue">The provided value.</param>
<param name="context">An optional context value which can be used during conversion.</param>
<returns>The coerced value.</returns>
</member>
<member name="M:Caliburn.Micro.MessageBinder.GetDefaultValue(System.Type)">
<summary>
Gets the default value for a type.
</summary>
<param name="type">The type.</param>
<returns>The default value.</returns>
</member>
<member name="T:Caliburn.Micro.Parser">
<summary>
Parses text into a fully functional set of <see cref="T:Microsoft.Xaml.Behaviors.TriggerBase"/> instances with <see cref="T:Caliburn.Micro.ActionMessage"/>.
</summary>
</member>
<member name="M:Caliburn.Micro.Parser.Parse(System.Windows.DependencyObject,System.String)">
<summary>
Parses the specified message text.
</summary>
<param name="target">The target.</param>
<param name="text">The message text.</param>
<returns>The triggers parsed from the text.</returns>
</member>
<member name="F:Caliburn.Micro.Parser.CreateTrigger">
<summary>
The function used to generate a trigger.
</summary>
<remarks>The parameters passed to the method are the the target of the trigger and string representing the trigger.</remarks>
</member>
<member name="M:Caliburn.Micro.Parser.CreateMessage(System.Windows.DependencyObject,System.String)">
<summary>
Creates an instance of <see cref="T:Caliburn.Micro.ActionMessage"/> by parsing out the textual dsl.
</summary>
<param name="target">The target of the message.</param>
<param name="messageText">The textual message dsl.</param>
<returns>The created message.</returns>
</member>
<member name="F:Caliburn.Micro.Parser.InterpretMessageText">
<summary>
Function used to parse a string identified as a message.
</summary>
</member>
<member name="F:Caliburn.Micro.Parser.CreateParameter">
<summary>
Function used to parse a string identified as a message parameter.
</summary>
</member>
<member name="M:Caliburn.Micro.Parser.BindParameter(System.Windows.FrameworkElement,Caliburn.Micro.Parameter,System.String,System.String,System.Windows.Data.BindingMode)">
<summary>
Creates a binding on a <see cref="T:Caliburn.Micro.Parameter"/>.
</summary>
<param name="target">The target to which the message is applied.</param>
<param name="parameter">The parameter object.</param>
<param name="elementName">The name of the element to bind to.</param>
<param name="path">The path of the element to bind to.</param>
<param name="bindingMode">The binding mode to use.</param>
</member>
<member name="T:Caliburn.Micro.View">
<summary>
Hosts attached properties related to view models.
</summary>
</member>
<member name="F:Caliburn.Micro.View.IsLoadedProperty">
<summary>
A dependency property which allows the framework to track whether a certain element has already been loaded in certain scenarios.
</summary>
</member>
<member name="F:Caliburn.Micro.View.IsScopeRootProperty">
<summary>
A dependency property which marks an element as a name scope root.
</summary>
</member>
<member name="F:Caliburn.Micro.View.ApplyConventionsProperty">
<summary>
A dependency property which allows the override of convention application behavior.
</summary>
</member>
<member name="F:Caliburn.Micro.View.ContextProperty">
<summary>
A dependency property for assigning a context to a particular portion of the UI.
</summary>
</member>
<member name="F:Caliburn.Micro.View.ModelProperty">
<summary>
A dependency property for attaching a model to the UI.
</summary>
</member>
<member name="F:Caliburn.Micro.View.IsGeneratedProperty">
<summary>
Used by the framework to indicate that this element was generated.
</summary>
</member>
<member name="M:Caliburn.Micro.View.ExecuteOnLoad(System.Windows.FrameworkElement,System.Windows.RoutedEventHandler)">
<summary>
Executes the handler immediately if the element is loaded, otherwise wires it to the Loaded event.
</summary>
<param name="element">The element.</param>
<param name="handler">The handler.</param>
<returns>true if the handler was executed immediately; false otherwise</returns>
</member>
<member name="M:Caliburn.Micro.View.ExecuteOnUnload(System.Windows.FrameworkElement,System.Windows.RoutedEventHandler)">
<summary>
Executes the handler when the element is unloaded.
</summary>
<param name="element">The element.</param>
<param name="handler">The handler.</param>
</member>
<member name="M:Caliburn.Micro.View.ExecuteOnLayoutUpdated(System.Windows.FrameworkElement,System.EventHandler)">
<summary>
Executes the handler the next time the elements's LayoutUpdated event fires.
</summary>
<param name="element">The element.</param>
<param name="handler">The handler.</param>
</member>
<member name="F:Caliburn.Micro.View.GetFirstNonGeneratedView">
<summary>
Used to retrieve the root, non-framework-created view.
</summary>
<remarks>In certain instances the services create UI elements.
For example, if you ask the window manager to show a UserControl as a dialog, it creates a window to host the UserControl in.
The WindowManager marks that element as a framework-created element so that it can determine what it created vs. what was intended by the developer.
Calling GetFirstNonGeneratedView allows the framework to discover what the original element was.
</remarks>
</member>
<member name="M:Caliburn.Micro.View.GetApplyConventions(System.Windows.DependencyObject)">
<summary>
Gets the convention application behavior.
</summary>
<param name="d">The element the property is attached to.</param>
<returns>Whether or not to apply conventions.</returns>
</member>
<member name="M:Caliburn.Micro.View.SetApplyConventions(System.Windows.DependencyObject,System.Nullable{System.Boolean})">
<summary>
Sets the convention application behavior.
</summary>
<param name="d">The element to attach the property to.</param>
<param name="value">Whether or not to apply conventions.</param>
</member>
<member name="M:Caliburn.Micro.View.SetModel(System.Windows.DependencyObject,System.Object)">
<summary>
Sets the model.
</summary>
<param name="d">The element to attach the model to.</param>
<param name="value">The model.</param>
</member>
<member name="M:Caliburn.Micro.View.GetModel(System.Windows.DependencyObject)">
<summary>
Gets the model.
</summary>
<param name="d">The element the model is attached to.</param>
<returns>The model.</returns>
</member>
<member name="M:Caliburn.Micro.View.GetContext(System.Windows.DependencyObject)">
<summary>
Gets the context.
</summary>
<param name="d">The element the context is attached to.</param>
<returns>The context.</returns>
</member>
<member name="M:Caliburn.Micro.View.SetContext(System.Windows.DependencyObject,System.Object)">
<summary>
Sets the context.
</summary>
<param name="d">The element to attach the context to.</param>
<param name="value">The context.</param>
</member>
<member name="P:Caliburn.Micro.View.InDesignMode">
<summary>
Gets a value that indicates whether the process is running in design mode.
</summary>
</member>
<member name="T:Caliburn.Micro.ViewLocator">
<summary>
A strategy for determining which view to use for a given model.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewLocator.NameTransformer">
<summary>
Used to transform names.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewLocator.ContextSeparator">
<summary>
Separator used when resolving View names for context instances.
</summary>
</member>
<member name="M:Caliburn.Micro.ViewLocator.ConfigureTypeMappings(Caliburn.Micro.TypeMappingConfiguration)">
<summary>
Specifies how type mappings are created, including default type mappings. Calling this method will
clear all existing name transformation rules and create new default type mappings according to the
configuration.
</summary>
<param name="config">An instance of TypeMappingConfiguration that provides the settings for configuration</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddDefaultTypeMapping(System.String)">
<summary>
Adds a default type mapping using the standard namespace mapping convention
</summary>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.RegisterViewSuffix(System.String)">
<summary>
This method registers a View suffix or synonym so that View Context resolution works properly.
It is automatically called internally when calling AddNamespaceMapping(), AddDefaultTypeMapping(),
or AddTypeMapping(). It should not need to be called explicitly unless a rule that handles synonyms
is added directly through the NameTransformer.
</summary>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View".</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddTypeMapping(System.String,System.String,System.String[],System.String)">
<summary>
Adds a standard type mapping based on namespace RegEx replace and filter patterns
</summary>
<param name="nsSourceReplaceRegEx">RegEx replace pattern for source namespace</param>
<param name="nsSourceFilterRegEx">RegEx filter pattern for source namespace</param>
<param name="nsTargetsRegEx">Array of RegEx replace values for target namespaces</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddTypeMapping(System.String,System.String,System.String,System.String)">
<summary>
Adds a standard type mapping based on namespace RegEx replace and filter patterns
</summary>
<param name="nsSourceReplaceRegEx">RegEx replace pattern for source namespace</param>
<param name="nsSourceFilterRegEx">RegEx filter pattern for source namespace</param>
<param name="nsTargetRegEx">RegEx replace value for target namespace</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddNamespaceMapping(System.String,System.String[],System.String)">
<summary>
Adds a standard type mapping based on simple namespace mapping
</summary>
<param name="nsSource">Namespace of source type</param>
<param name="nsTargets">Namespaces of target type as an array</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddNamespaceMapping(System.String,System.String,System.String)">
<summary>
Adds a standard type mapping based on simple namespace mapping
</summary>
<param name="nsSource">Namespace of source type</param>
<param name="nsTarget">Namespace of target type</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddSubNamespaceMapping(System.String,System.String[],System.String)">
<summary>
Adds a standard type mapping by substituting one subnamespace for another
</summary>
<param name="nsSource">Subnamespace of source type</param>
<param name="nsTargets">Subnamespaces of target type as an array</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddSubNamespaceMapping(System.String,System.String,System.String)">
<summary>
Adds a standard type mapping by substituting one subnamespace for another
</summary>
<param name="nsSource">Subnamespace of source type</param>
<param name="nsTarget">Subnamespace of target type</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="F:Caliburn.Micro.ViewLocator.GetOrCreateViewType">
<summary>
Retrieves the view from the IoC container or tries to create it if not found.
</summary>
<remarks>
Pass the type of view as a parameter and recieve an instance of the view.
</remarks>
</member>