diff --git a/Silverlight/Caliburn.Micro.Telerik/Caliburn.Micro.Telerik.csproj b/Silverlight/Caliburn.Micro.Telerik/Caliburn.Micro.Telerik.csproj index 5298238..9826046 100644 --- a/Silverlight/Caliburn.Micro.Telerik/Caliburn.Micro.Telerik.csproj +++ b/Silverlight/Caliburn.Micro.Telerik/Caliburn.Micro.Telerik.csproj @@ -47,9 +47,12 @@ 4 - + False - ..\..\packages\Caliburn.Micro.1.5.2\lib\sl5\Caliburn.Micro.dll + ..\..\packages\Caliburn.Micro.Core.2.0.0\lib\sl5\Caliburn.Micro.dll + + + ..\..\packages\Caliburn.Micro.2.0.0\lib\sl5\Caliburn.Micro.Platform.dll False @@ -69,7 +72,7 @@ - ..\..\packages\Caliburn.Micro.1.5.2\lib\sl5\System.Windows.Interactivity.dll + ..\..\packages\Caliburn.Micro.2.0.0\lib\sl5\System.Windows.Interactivity.dll diff --git a/Silverlight/Caliburn.Micro.Telerik/TelerikConventions.cs b/Silverlight/Caliburn.Micro.Telerik/TelerikConventions.cs index 8c06f76..0f09ffa 100644 --- a/Silverlight/Caliburn.Micro.Telerik/TelerikConventions.cs +++ b/Silverlight/Caliburn.Micro.Telerik/TelerikConventions.cs @@ -46,7 +46,7 @@ public static void Install() ConventionManager.AddElementConvention(RadMenuItem.ItemsSourceProperty, "DataContext", "Click"); ConventionManager.AddElementConvention(RadBusyIndicator.IsBusyProperty, "IsBusy", "Loaded"); - ConventionManager.AddElementConvention(RadMaskedTextBox.MaskedTextProperty, "MaskedText", + ConventionManager.AddElementConvention(RadMaskedTextInput.ValueProperty, "Value", "ValueChanged"); ConventionManager.AddElementConvention(RadMaskedTextInput.ValueProperty, "Value", "ValueChanged"); ConventionManager.AddElementConvention(RadMaskedCurrencyInput.ValueProperty, "Value", "ValueChanged"); diff --git a/Silverlight/Caliburn.Micro.Telerik/packages.config b/Silverlight/Caliburn.Micro.Telerik/packages.config index 94dbd32..167b57c 100644 --- a/Silverlight/Caliburn.Micro.Telerik/packages.config +++ b/Silverlight/Caliburn.Micro.Telerik/packages.config @@ -1,4 +1,5 @@  - + + \ No newline at end of file diff --git a/packages/Caliburn.Micro.2.0.0/Caliburn.Micro.2.0.0.nupkg b/packages/Caliburn.Micro.2.0.0/Caliburn.Micro.2.0.0.nupkg new file mode 100644 index 0000000..1207af1 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/Caliburn.Micro.2.0.0.nupkg differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/net40/Caliburn.Micro.Platform.dll b/packages/Caliburn.Micro.2.0.0/lib/net40/Caliburn.Micro.Platform.dll new file mode 100644 index 0000000..e579b0b Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/net40/Caliburn.Micro.Platform.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/net40/Caliburn.Micro.Platform.xml b/packages/Caliburn.Micro.2.0.0/lib/net40/Caliburn.Micro.Platform.xml new file mode 100644 index 0000000..470d4c5 --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/net40/Caliburn.Micro.Platform.xml @@ -0,0 +1,1750 @@ + + + + Caliburn.Micro.Platform + + + + + A host for action related attached properties. + + + + + A property definition representing the target of an . The DataContext of the element will be set to this instance. + + + + + A property definition representing the target of an . The DataContext of the element is not set to this instance. + + + + + Sets the target of the . + + The element to attach the target to. + The target for instances of . + + + + Gets the target for instances of . + + The element to which the target is attached. + The target for instances of + + + + Sets the target of the . + + The element to attach the target to. + The target for instances of . + + The DataContext will not be set. + + + + + Gets the target for instances of . + + The element to which the target is attached. + The target for instances of + + + + Checks if the -Target was set. + + DependencyObject to check + True if Target or TargetWithoutContext was set on + + + + Uses the action pipeline to invoke the method. + + The object instance to invoke the method on. + The name of the method to invoke. + The view. + The source of the invocation. + The event args. + The method parameters. + + + + The context used during the execution of an Action or its guard. + + + + + Determines whether the action can execute. + + Returns true if the action can execute, false otherwise. + + + + Any event arguments associated with the action's invocation. + + + + + The actual method info to be invoked. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + The message being executed. + + + + + The source from which the message originates. + + + + + The instance on which the action is invoked. + + + + + The view associated with the target. + + + + + Gets or sets additional data needed to invoke the action. + + The data key. + Custom data associated with the context. + + + + Called when the execution context is disposed + + + + + Used to send a message from the UI to a presentation model class, indicating that a particular Action should be invoked. + + + + + Indicates that a message is parameterized. + + + + + Represents the parameters of a message. + + + + + Causes the action invocation to "double check" if the action should be invoked by executing the guard immediately before hand. + + 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. + + + + Causes the action to throw if it cannot locate the target or the method at invocation time. + + True by default. + + + + Represents the method name of an action message. + + + + + Represents the parameters of an action message. + + + + + Creates an instance of . + + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Forces an update of the UI's Enabled/Disabled state based on the the preconditions associated with the method. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Invokes the action using the specified + + + + + Applies an availability effect, such as IsEnabled, to an element. + + Returns a value indicating whether or not the action is available. + + + + Finds the method on the target matching the specified message. + + The target. + The message. + The matching method, if available. + + + + Sets the target, method and view on the context. Uses a bubbling strategy by default. + + + + + Prepares the action execution context for use. + + + + + Try to find a candidate for guard function, having: + - a name in the form "CanXXX" + - no generic parameters + - a bool return type + - no parameters or a set of parameters corresponding to the action method + + The execution context + A MethodInfo, if found; null otherwise + + + + Gets or sets the name of the method to be invoked on the presentation model class. + + The name of the method. + + + + Gets the parameters to pass as part of the method invocation. + + The parameters. + + + + Occurs before the message detaches from the associated object. + + + + + A source of assemblies that are inspectable by the framework. + + + + + The singleton instance of the AssemblySource used by the framework. + + + + + Finds a type which matches one of the elements in the sequence of names. + + + + + A caching subsystem for . + + + + + Extracts the types from the spezified assembly for storing in the cache. + + + + + Installs the caching subsystem. + + + + + Hosts dependency properties for binding. + + + + + Allows binding on an existing view. Use this on root UserControls, Pages and Windows; not in a DataTemplate. + + + + + Allows binding on an existing view without setting the data context. Use this from within a DataTemplate. + + + + + Gets the model to bind to. + + The dependency object to bind to. + The model. + + + + Sets the model to bind to. + + The dependency object to bind to. + The model. + + + + Gets the model to bind to. + + The dependency object to bind to. + The model. + + + + Sets the model to bind to. + + The dependency object to bind to. + The model. + + + + Allows application of conventions at design-time. + + + + + Gets whether or not conventions are being applied at design-time. + + The ui to apply conventions to. + Whether or not conventions are applied. + + + + Sets whether or not do bind conventions at design-time. + + The ui to apply conventions to. + Whether or not to apply conventions. + + + + Provides methods for searching a given scope for named elements. + + + + + Searches through the list of named elements looking for a case-insensitive match. + + The named elements to search through. + The name to search for. + The named element or null if not found. + + + + Adds a child resolver. + + The type filter. + The resolver. + + + + Removes a child resolver. + + The resolver to remove. + true, when the resolver was (found and) removed. + + + + Gets all the instances with names in the scope. + + Named instances in the provided scope. + Pass in a and receive a list of named instances in the same scope. + + + + Finds a set of named instances in each hop in a . + + + Searches all the elements in the parameter as well as the visual children of + each of these elements, the , the HeaderedContentControl.Header, + the , or the HeaderedItemsControl.Header, if any are found. + + + + + Finds a path of dependency objects which traces through visual anscestry until a root which is , + a , a Page with a dependency object Page.ContentProperty value, + a dependency object with set to . + and are included in the resulting in order to track which item + in an items control we are scoped to. + + + + + Maintains a connection in the visual tree of dependency objects in order to record a route through it. + + + + + Adds a segment to the route. + + The source dependency object. + The target dependency object. + + + + Tries to get a target dependency object given a source. + + The possible beginning of a route segment (hop). + The target of a route segment (hop). + if had a target recorded; otherwise. + + + + Gets or sets the starting point of the route. + + + + + Inherit from this class in order to customize the configuration of the framework. + + + + + Creates an instance of the bootstrapper. + + Set this to false when hosting Caliburn.Micro inside and Office or WinForms application. The default is true. + + + + Initialize the framework. + + + + + Called by the bootstrapper's constructor at design time to start the framework. + + + + + Called by the bootstrapper's constructor at runtime to start the framework. + + + + + Provides an opportunity to hook into the application object. + + + + + Override to configure the framework and setup your IoC container. + + + + + Override to tell the framework where to find assemblies to inspect for views, etc. + + A list of assemblies to inspect. + + + + Override this to provide an IoC specific implementation. + + The service to locate. + The key to locate. + The located service. + + + + Override this to provide an IoC specific implementation + + The service to locate. + The located services. + + + + Override this to provide an IoC specific implementation. + + The instance to perform injection on. + + + + Override this to add custom behavior to execute after the application starts. + + The sender. + The args. + + + + Override this to add custom behavior on exit. + + The sender. + The event args. + + + + Override this to add custom behavior for unhandled exceptions. + + The sender. + The event args. + + + + Locates the view model, locates the associate view, binds them and shows it as the root view. + + The view model type. + The optional window settings. + + + + Locates the view model, locates the associate view, binds them and shows it as the root view. + + The view model type. + The optional window settings. + + + + The application. + + + + + Used to configure the conventions used by the framework to apply bindings and create actions. + + + + + Converters to/from . + + + + + Indicates whether or not static properties should be included during convention name matching. + + False by default. + + + + Indicates whether or not the Content of ContentControls should be overwritten by conventional bindings. + + False by default. + + + + The default DataTemplate used for ItemsControls when required. + + + + + The default DataTemplate used for Headered controls when required. + + + + + Changes the provided word from a plural form to a singular form. + + + + + Derives the SelectedItem property name. + + + + + Creates a binding and sets it on the element, applying the appropriate conventions. + + + + + + + + + + + Applies the appropriate binding mode to the binding. + + + + + Determines whether or not and what type of validation to enable on the binding. + + + + + Determines whether a value converter is is needed and applies one to the binding. + + + + + Determines whether a custom string format is needed and applies it to the binding. + + + + + Determines whether a custom update source trigger should be applied to the binding. + + + + + Adds an element convention. + + The type of element. + The default property for binding conventions. + The default property for action parameters. + The default event to trigger actions. + + + + Adds an element convention. + + + + + + Gets an element convention for the provided element type. + + The type of element to locate the convention for. + The convention if found, null otherwise. + Searches the class hierarchy for conventions. + + + + Determines whether a particular dependency property already has a binding on the provided element. + + + + + Creates a binding and sets it on the element, guarding against pre-existing bindings. + + + + + Creates a binding and set it on the element, guarding against pre-existing bindings and pre-existing values. + + + + + + + + + + + + Attempts to apply the default item template to the items control. + + The items control. + The collection property. + + + + Configures the selected item convention. + + The element that has a SelectedItem property. + The SelectedItem property. + The view model type. + The property path. + + + + Configures the SelectedItem binding for matched selection path. + + The element that has a SelectedItem property. + The SelectedItem property. + The view model type. + The property path. + The binding to configure. + A bool indicating whether to apply binding + + + + Applies a header template based on + + + + + + + + + Gets a property by name, ignoring case and searching all interfaces. + + The type to inspect. + The property to search for. + The property or null if not found. + + + + Represents the conventions for a particular element type. + + + + + The type of element to which the conventions apply. + + + + + Gets the default property to be used in binding conventions. + + + + + The default trigger to be used when wiring actions on this element. + + + + + The default property to be used for parameters of this type in actions. + + + + + Applies custom conventions for elements of this type. + + Pass the view model type, property path, property instance, framework element and its convention. + + + + Generic extension methods used by the framework. + + + + + Get's the name of the assembly. + + The assembly. + The assembly's name. + + + + Gets all the attributes of a particular type. + + The type of attributes to get. + The member to inspect for attributes. + Whether or not to search for inherited attributes. + The list of attributes found. + + + + Gets the value for a key. If the key does not exist, return default(TValue); + + The type of the keys in the dictionary. + The type of the values in the dictionary. + The dictionary to call this method on. + The key to look up. + The key value. default(TValue) if this key is not in the dictionary. + + + + Host's attached properties related to routed UI messaging. + + + + + Places a message handler on this element. + + The element. + The message handler. + + + + Gets the message handler for this element. + + The element. + The message handler. + + + + A property definition representing attached triggers and messages. + + + + + Sets the attached triggers and messages. + + The element to attach to. + The parsable attachment text. + + + + Gets the attached triggers and messages. + + The element that was attached to. + The parsable attachment text. + + + + A service that is capable of properly binding values to a method's parameters and creating instances of . + + + + + The special parameter values recognized by the message binder along with their resolvers. + + + + + 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. + + + + + Determines the parameters that a method should be invoked with. + + The action execution context. + The parameters required to complete the invocation. + The actual parameter values. + + + + Transforms the textual parameter into the actual parameter. + + + + + Coerces the provided value to the destination type. + + The destination type. + The provided value. + An optional context value which can be used during conversion. + The coerced value. + + + + Gets the default value for a type. + + The type. + The default value. + + + + Class for managing the list of rules for doing name transformation. + + + + + Adds a transform using a single replacement value and a global filter pattern. + + Regular expression pattern for replacing text + The replacement value. + Regular expression pattern for global filtering + + + + Adds a transform using a list of replacement values and a global filter pattern. + + Regular expression pattern for replacing text + The list of replacement values + Regular expression pattern for global filtering + + + + Gets the list of transformations for a given name. + + The name to transform into the resolved name list + The transformed names. + + + + Gets the list of transformations for a given name. + + The name to transform into the resolved name list + A function to do a transform on each item in the ReplaceValueList prior to applying the regular expression transform + The transformed names. + + + + Flag to indicate if transformations from all matched rules are returned. Otherwise, transformations from only the first matched rule are returned. + + + + + A rule that describes a name transform. + + + + + Regular expression pattern for global filtering + + + + + Regular expression pattern for replacing text + + + + + The list of replacement values + + + + + A collection that can exist as part of a behavior. + + The type of item in the attached collection. + + + + Creates an instance of + + + + + Attached the collection. + + The dependency object to attach the collection to. + + + + Detaches the collection. + + + + + Called when an item is added from the collection. + + The item that was added. + + + + Called when an item is removed from the collection. + + The item that was removed. + + + + Represents a parameter of an . + + + + + A dependency property representing the parameter's value. + + + + + When implemented in a derived class, creates a new instance of the derived class. + + The new instance. + + + + Makes the parameter aware of the that it's attached to. + + The action message. + + + + Gets or sets the value of the parameter. + + The value. + + + + Gets or sets the owner. + + + + + A service that manages windows. + + + + + Shows a modal dialog for the specified model. + + The root model. + The context. + The optional dialog settings. + The dialog result. + + + + Shows a non-modal window for the specified model. + + The root model. + The context. + The optional window settings. + + + + Shows a popup at the current mouse position. + + The root model. + The view context. + The optional popup settings. + + + + A service that manages windows. + + + + + Shows a modal dialog for the specified model. + + The root model. + The context. + The dialog popup settings. + The dialog result. + + + + Shows a window for the specified model. + + The root model. + The context. + The optional window settings. + + + + Shows a popup at the current mouse position. + + The root model. + The view context. + The optional popup settings. + + + + Creates a popup for hosting a popup window. + + The model. + The optional popup settings. + The popup. + + + + Creates a window. + + The view model. + Whethor or not the window is being shown as a dialog. + The view context. + The optional popup settings. + The window. + + + + Makes sure the view is a window is is wrapped by one. + + The view model. + The view. + Whethor or not the window is being shown as a dialog. + The window. + + + + Infers the owner of the window. + + The window to whose owner needs to be determined. + The owner. + + + + Creates the page. + + The root model. + The context. + The optional popup settings. + The page. + + + + Ensures the view is a page or provides one. + + The model. + The view. + The page. + + + + Parses text into a fully functional set of instances with . + + + + + Parses the specified message text. + + The target. + The message text. + The triggers parsed from the text. + + + + The function used to generate a trigger. + + The parameters passed to the method are the the target of the trigger and string representing the trigger. + + + + Creates an instance of by parsing out the textual dsl. + + The target of the message. + The textual message dsl. + The created message. + + + + Function used to parse a string identified as a message. + + + + + Function used to parse a string identified as a message parameter. + + + + + Creates a binding on a . + + The target to which the message is applied. + The parameter object. + The name of the element to bind to. + The path of the element to bind to. + The binding mode to use. + + + + Helper class for encoding strings to regular expression patterns + + + + + Regular expression pattern for valid name + + + + + Regular expression pattern for subnamespace (including dot) + + + + + Regular expression pattern for namespace or namespace fragment + + + + + Creates a named capture group with the specified regular expression + + Name of capture group to create + Regular expression pattern to capture + Regular expression capture group with the specified group name + + + + Converts a namespace (including wildcards) to a regular expression string + + Source namespace to convert to regular expression + Namespace converted to a regular expression + + + + Creates a capture group for a valid name regular expression pattern + + Name of capture group to create + Regular expression capture group with the specified group name + + + + Creates a capture group for a namespace regular expression pattern + + Name of capture group to create + Regular expression capture group with the specified group name + + + + Helper class when splitting strings + + + + + Splits a string with a chosen separator. + If a substring is contained in [...] it will not be splitted. + + The message to split + The separator to use when splitting + + + + + Splits a string with , as separator. + Does not split within {},[],() + + The string to split + + + + + Class to specify settings for configuring type mappings by the ViewLocator or ViewModelLocator + + + + + The default subnamespace for Views. Used for creating default subnamespace mappings. Defaults to "Views". + + + + + The default subnamespace for ViewModels. Used for creating default subnamespace mappings. Defaults to "ViewModels". + + + + + Flag to indicate whether or not the name of the Type should be transformed when adding a type mapping. Defaults to true. + + + + + The format string used to compose the name of a type from base name and name suffix + + + + + Flag to indicate if ViewModel names should include View suffixes (i.e. CustomerPageViewModel vs. CustomerViewModel) + + + + + List of View suffixes for which default type mappings should be created. Applies only when UseNameSuffixesInMappings = true. + Default values are "View", "Page" + + + + + The name suffix for ViewModels. Applies only when UseNameSuffixesInMappings = true. The default is "ViewModel". + + + + + Hosts attached properties related to view models. + + + + + A dependency property which allows the framework to track whether a certain element has already been loaded in certain scenarios. + + + + + A dependency property which marks an element as a name scope root. + + + + + A dependency property which allows the override of convention application behavior. + + + + + A dependency property for assigning a context to a particular portion of the UI. + + + + + A dependency property for attaching a model to the UI. + + + + + Used by the framework to indicate that this element was generated. + + + + + Executes the handler immediately if the element is loaded, otherwise wires it to the Loaded event. + + The element. + The handler. + true if the handler was executed immediately; false otherwise + + + + Executes the handler when the element is unloaded. + + The element. + The handler. + + + + Executes the handler the next time the elements's LayoutUpdated event fires. + + The element. + The handler. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + The root element that was not created by the framework. + 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. + + + + + Gets the convention application behavior. + + The element the property is attached to. + Whether or not to apply conventions. + + + + Sets the convention application behavior. + + The element to attach the property to. + Whether or not to apply conventions. + + + + Sets the model. + + The element to attach the model to. + The model. + + + + Gets the model. + + The element the model is attached to. + The model. + + + + Gets the context. + + The element the context is attached to. + The context. + + + + Sets the context. + + The element to attach the context to. + The context. + + + + A strategy for determining which view to use for a given model. + + + + + Used to transform names. + + + + + Separator used when resolving View names for context instances. + + + + + 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. + + An instance of TypeMappingConfiguration that provides the settings for configuration + + + + Adds a default type mapping using the standard namespace mapping convention + + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + 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. + + Suffix for type name. Should be "View" or synonym of "View". + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + Array of RegEx replace values for target namespaces + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + RegEx replace value for target namespace + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Retrieves the view from the IoC container or tries to create it if not found. + + + Pass the type of view as a parameter and recieve an instance of the view. + + + + + Modifies the name of the type to be used at design time. + + + + + Transforms a ViewModel type name into all of its possible View type names. Optionally accepts an instance + of context object + + Enumeration of transformed names + Arguments: + typeName = The name of the ViewModel type being resolved to its companion View. + context = An instance of the context or null. + + + + + Locates the view type based on the specified model type. + + The view. + + Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view type. + + + + + Locates the view for the specified model type. + + The view. + + Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view instance. + + + + + Locates the view for the specified model instance. + + The view. + + Pass the model instance, display location (or null) and the context (or null) as parameters and receive a view instance. + + + + + Transforms a view type into a pack uri. + + + + + When a view does not contain a code-behind file, we need to automatically call InitializeCompoent. + + The element to initialize + + + + Binds a view to a view model. + + + + + Gets or sets a value indicating whether to apply conventions by default. + + + true if conventions should be applied by default; otherwise, false. + + + + + Indicates whether or not the conventions have already been applied to the view. + + + + + Determines whether a view should have conventions applied to it. + + The view to check. + Whether or not conventions should be applied to the view. + + + + Creates data bindings on the view's controls based on the provided properties. + + Parameters include named Elements to search through and the type of view model to determine conventions for. Returns unmatched elements. + + + + Attaches instances of to the view's controls based on the provided methods. + + Parameters include the named elements to search through and the type of view model to determine conventions for. Returns unmatched elements. + + + + Allows the developer to add custom handling of named elements which were not matched by any default conventions. + + + + + Binds the specified viewModel to the view. + + Passes the the view model, view and creation context (or null for default) to use in applying binding. + + + + A strategy for determining which view model to use for a given view. + + + + + Used to transform names. + + + + + The name of the capture group used as a marker for rules that return interface types + + + + + 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. + + An instance of TypeMappingConfiguration that provides the settings for configuration + + + + Adds a default type mapping using the standard namespace mapping convention + + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + Array of RegEx replace values for target namespaces + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + RegEx replace value for target namespace + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Makes a type name into an interface name. + + The part. + + + + + Transforms a View type name into all of its possible ViewModel type names. Accepts a flag + to include or exclude interface types. + + Enumeration of transformed names + Arguments: + typeName = The name of the View type being resolved to its companion ViewModel. + includeInterfaces = Flag to indicate if interface types are included + + + + + Determines the view model type based on the specified view type. + + The view model type. + + Pass the view type and receive a view model type. Pass true for the second parameter to search for interfaces. + + + + + Locates the view model for the specified view type. + + The view model. + + Pass the view type as a parameter and receive a view model instance. + + + + + Locates the view model for the specified view instance. + + The view model. + + Pass the view instance as a parameters and receive a view model instance. + + + + + A implementation for the XAML platfrom. + + + + + Initializes a new instance of the class. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + + Executes the action on the UI thread. + + The action to execute. + + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + + The root element that was not created by the framework. + + + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + + An to close the view model. + + + + + + Indicates whether or not the framework is in design-time mode. + + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/net40/System.Windows.Interactivity.dll b/packages/Caliburn.Micro.2.0.0/lib/net40/System.Windows.Interactivity.dll new file mode 100644 index 0000000..0419e95 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/net40/System.Windows.Interactivity.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/net40/System.Windows.Interactivity.xml b/packages/Caliburn.Micro.2.0.0/lib/net40/System.Windows.Interactivity.xml new file mode 100644 index 0000000..10cdad6 --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/net40/System.Windows.Interactivity.xml @@ -0,0 +1,1072 @@ + + + + System.Windows.Interactivity + + + + + Represents a collection of IAttachedObject with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + An interface for an object that can be attached to another object. + + + + + Attaches to the specified object. + + The object to attach to. + + + + Detaches this instance from its associated object. + + + + + Gets the associated object. + + The associated object. + Represents the object the instance is attached to. + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + Cannot add the instance to a collection more than once. + + + + Attaches to the specified object. + + The object to attach to. + The IAttachedObject is already attached to a different object. + + + + Detaches this instance from its associated object. + + + + + The object on which the collection is hosted. + + + + + Gets the associated object. + + The associated object. + + + + Encapsulates state information and zero or more ICommands into an attachable object. + + The type the can be attached to. + + Behavior is the base class for providing attachable state and commands to an object. + The types the Behavior can be attached to can be controlled by the generic parameter. + Override OnAttached() and OnDetaching() methods to hook and unhook any necessary handlers + from the AssociatedObject. + + + + + Encapsulates state information and zero or more ICommands into an attachable object. + + This is an infrastructure class. Behavior authors should derive from Behavior<T> instead of from this class. + + + + Called after the behavior is attached to an AssociatedObject. + + Override this to hook up functionality to the AssociatedObject. + + + + Called when the behavior is being detached from its AssociatedObject, but before it has actually occurred. + + Override this to unhook functionality from the AssociatedObject. + + + + Attaches to the specified object. + + The object to attach to. + The Behavior is already hosted on a different element. + dependencyObject does not satisfy the Behavior type constraint. + + + + Detaches this instance from its associated object. + + + + + The type to which this behavior can be attached. + + + + + Gets the object to which this behavior is attached. + + + + + Gets the associated object. + + The associated object. + + + + Initializes a new instance of the class. + + + + + Gets the object to which this is attached. + + + + + Represents a collection of behaviors with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + + Creates a new instance of the BehaviorCollection. + + The new instance. + + + + Enumerates possible values for reusable property value editors. + + + + + Uses the element picker, if supported, to edit this property at design time. + + + + + Uses the storyboard picker, if supported, to edit this property at design time. + + + + + Uses the state picker, if supported, to edit this property at design time. + + + + + Uses the element-binding picker, if supported, to edit this property at design time. + + + + + Uses the property-binding picker, if supported, to edit this property at design time. + + + + + Associates the given editor type with the property on which the CustomPropertyValueEditor is applied. + + Use this attribute to get improved design-time editing for properties that denote element (by name), storyboards, or states (by name). + + + + Initializes a new instance of the class. + + The custom property value editor. + + + + Gets or sets the custom property value editor. + + The custom property value editor. + + + + Provides design tools information about what to instantiate for a given action or command. + + + + + Initializes a new instance of the class. + + The type this attribute applies to. + The type of to instantiate. + A single argument for the specified . + is not derived from TriggerBase. + This constructor is useful if the specifed has a single argument. The + resulting code will be CLS compliant. + + + + Initializes a new instance of the class. + + The type this attribute applies to. + The type of to instantiate. + The constructor arguments for the specified . + is not derived from TriggerBase. + + + + Instantiates this instance. + + The specified by the DefaultTriggerAttribute. + + + + Gets the type that this DefaultTriggerAttribute applies to. + + The type this DefaultTriggerAttribute applies to. + + + + Gets the type of the to instantiate. + + The type of the to instantiate. + + + + Gets the parameters to pass to the constructor. + + The parameters to pass to the constructor. + + + + This method will use the VisualTreeHelper.GetParent method to do a depth first walk up + the visual tree and return all ancestors of the specified object, including the object itself. + + The object in the visual tree to find ancestors of. + Returns itself an all ancestors in the visual tree. + + + + EventObserver is designed to help manage event handlers by detatching when disposed. Creating this object will also attach in the constructor. + + + + + Creates an instance of EventObserver and attaches to the supplied event on the supplied target. Call dispose to detach. + + The event to attach and detach from. + The target object the event is defined on. Null if the method is static. + The delegate to attach to the event. + + + + Detaches the handler from the event. + + + + + A trigger that listens for a specified event on its source and fires when that event is fired. + + + + + Represents a trigger that can listen to an element other than its AssociatedObject. + + The type that this trigger can be associated with. + + EventTriggerBase extends TriggerBase to add knowledge of another object than the one it is attached to. + This allows a user to attach a Trigger/Action pair to one element and invoke the Action in response to a + change in another object somewhere else. Override OnSourceChanged to hook or unhook handlers on the source + element, and OnAttached/OnDetaching for the associated element. The type of the Source element can be + constrained by the generic type parameter. If you need control over the type of the + AssociatedObject, set a TypeConstraintAttribute on your derived type. + + + + + Represents a trigger that can listen to an object other than its AssociatedObject. + + This is an infrastructure class. Trigger authors should derive from EventTriggerBase<T> instead of this class. + + + + Represents an object that can invoke Actions conditionally. + + This is an infrastructure class. Trigger authors should derive from Trigger<T> instead of this class. + + + + Invoke all actions associated with this trigger. + + Derived classes should call this to fire the trigger. + + + + Called after the trigger is attached to an AssociatedObject. + + + + + Called when the trigger is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Creates a new instance of the TriggerBase derived class. + + The new instance. + + + + Attaches to the specified object. + + The object to attach to. + Cannot host the same trigger on more than one object at a time. + dependencyObject does not satisfy the trigger type constraint. + + + + Detaches this instance from its associated object. + + + + + Gets the object to which the trigger is attached. + + The associated object. + + + + Gets the type constraint of the associated object. + + The associated object type constraint. + + + + Gets the actions associated with this trigger. + + The actions associated with this trigger. + + + + Event handler for registering to PreviewInvoke. + + + + + Gets the associated object. + + The associated object. + + + + Specifies the name of the Event this EventTriggerBase is listening for. + + + + + + Called when the event associated with this EventTriggerBase is fired. By default, this will invoke all actions on the trigger. + + The instance containing the event data. + Override this to provide more granular control over when actions associated with this trigger will be invoked. + + + + Called when the source changes. + + The old source. + The new source. + This function should be overridden in derived classes to hook functionality to and unhook functionality from the changing source objects. + + + + Called after the trigger is attached to an AssociatedObject. + + + + + Called when the trigger is being detached from its AssociatedObject, but before it has actually occurred. + + + + Could not find eventName on the Target. + + + + Gets the type constraint of the associated object. + + The associated object type constraint. + Define a TypeConstraintAttribute on a derived type to constrain the types it may be attached to. + + + + Gets the source type constraint. + + The source type constraint. + + + + Gets or sets the target object. If TargetObject is not set, the target will look for the object specified by TargetName. If an element referred to by TargetName cannot be found, the target will default to the AssociatedObject. This is a dependency property. + + The target object. + + + + Gets or sets the name of the element this EventTriggerBase listens for as a source. If the name is not set or cannot be resolved, the AssociatedObject will be used. This is a dependency property. + + The name of the source element. + + + + Gets the resolved source. If is not set or cannot be resolved, defaults to AssociatedObject. + + The resolved source object. + In general, this property should be used in place of AssociatedObject in derived classes. + The element pointed to by does not satisify the type constraint. + + + + Initializes a new instance of the class. + + + + + Called when the source property changes. + + Override this to hook functionality to and unhook functionality from the specified source, rather than the AssociatedObject. + The old source. + The new source. + + + + Gets the resolved source. If is not set or cannot be resolved, defaults to AssociatedObject. + + The resolved source object. + In general, this property should be used in place of AssociatedObject in derived classes. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Name of the event. + + + + Gets or sets the name of the event to listen for. This is a dependency property. + + The name of the event. + + + + Static class that owns the Triggers and Behaviors attached properties. Handles propagation of AssociatedObject change notifications. + + + + + This property is used as the internal backing store for the public Triggers attached property. + + + This property is not exposed publicly. This forces clients to use the GetTriggers and SetTriggers methods to access the + collection, ensuring the collection exists and is set before it is used. + + + + + This property is used as the internal backing store for the public Behaviors attached property. + + + This property is not exposed publicly. This forces clients to use the GetBehaviors and SetBehaviors methods to access the + collection, ensuring the collection exists and is set before it is used. + + + + + Gets the TriggerCollection containing the triggers associated with the specified object. + + The object from which to retrieve the triggers. + A TriggerCollection containing the triggers associated with the specified object. + + + + Gets the associated with a specified object. + + The object from which to retrieve the . + A containing the behaviors associated with the specified object. + + + Cannot host the same BehaviorCollection on more than one object at a time. + + + Cannot host the same TriggerCollection on more than one object at a time. + + + + A helper function to take the place of FrameworkElement.IsLoaded, as this property is not available in Silverlight. + + The element of interest. + True if the element has been loaded; otherwise, False. + + + + Gets or sets a value indicating whether to run as if in design mode. + + + True if [should run in design mode]; otherwise, False. + + Not to be used outside unit tests. + + + + Executes a specified ICommand when invoked. + + + + + Represents an attachable object that encapsulates a unit of functionality. + + The type to which this action can be attached. + + + + Represents an attachable object that encapsulates a unit of functionality. + + This is an infrastructure class. Action authors should derive from TriggerAction<T> instead of this class. + + + + Attempts to invoke the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + When implemented in a derived class, creates a new instance of the derived class. + + The new instance. + + + + Attaches to the specified object. + + The object to attach to. + Cannot host the same TriggerAction on more than one object at a time. + dependencyObject does not satisfy the TriggerAction type constraint. + + + + Detaches this instance from its associated object. + + + + + Gets or sets a value indicating whether this action will run when invoked. This is a dependency property. + + + True if this action will be run when invoked; otherwise, False. + + + + + Gets the object to which this action is attached. + + The associated object. + + + + Gets the associated object type constraint. + + The associated object type constraint. + + + + Gets or sets a value indicating whether this instance is attached. + + True if this instance is attached; otherwise, False. + + + + Gets the associated object. + + The associated object. + + + + Initializes a new instance of the class. + + + + + Gets the object to which this is attached. + + The associated object. + + + + Gets the associated object type constraint. + + The associated object type constraint. + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Gets or sets the name of the command this action should invoke. + + The name of the command this action should invoke. + This property will be superseded by the Command property if both are set. + + + + Gets or sets the command this action should invoke. This is a dependency property. + + The command to execute. + This property will take precedence over the CommandName property if both are set. + + + + Gets or sets the command parameter. This is a dependency property. + + The command parameter. + This is the value passed to ICommand.CanExecute and ICommand.Execute. + + + + Provides data about which objects were affected when resolving a name change. + + + + + Helper class to handle the logic of resolving a TargetName into a Target element + based on the context provided by a host element. + + + + + Attempts to update the resolved object from the name within the context of the namescope reference element. + + The old resolved object. + + Resets the existing target and attempts to resolve the current TargetName from the + context of the current Host. If it cannot resolve from the context of the Host, it will + continue up the visual tree until it resolves. If it has not resolved it when it reaches + the root, it will set the Target to null and write a warning message to Debug output. + + + + + Occurs when the resolved element has changed. + + + + + Gets or sets the name of the element to attempt to resolve. + + The name to attempt to resolve. + + + + The resolved object. Will return the reference element if TargetName is null or empty, or if a resolve has not been attempted. + + + + + Gets or sets the reference element from which to perform the name resolution. + + The reference element. + + + + Gets or sets a value indicating whether the reference element load is pending. + + + True if [pending reference element load]; otherwise, False. + + + If the Host has not been loaded, the name will not be resolved. + In that case, delay the resolution and track that fact with this property. + + + + + Represents an action that can be targeted to affect an object other than its AssociatedObject. + + The type constraint on the target. + + TargetedTriggerAction extends TriggerAction to add knowledge of another element than the one it is attached to. + This allows a user to invoke the action on an element other than the one it is attached to in response to a + trigger firing. Override OnTargetChanged to hook or unhook handlers on the target element, and OnAttached/OnDetaching + for the associated element. The type of the Target element can be constrained by the generic type parameter. If + you need control over the type of the AssociatedObject, set a TypeConstraintAttribute on your derived type. + + + + + Represents an action that can be targeted to affect an object other than its AssociatedObject. + + This is an infrastructure class. Action authors should derive from TargetedTriggerAction<T> instead of this class. + + + + Called when the target changes. + + The old target. + The new target. + This function should be overriden in derived classes to hook and unhook functionality from the changing source objects. + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Gets or sets the target object. If TargetObject is not set, the target will look for the object specified by TargetName. If an element referred to by TargetName cannot be found, the target will default to the AssociatedObject. This is a dependency property. + + The target object. + + + + Gets or sets the name of the object this action targets. If Target is set, this property is ignored. If Target is not set and TargetName is not set or cannot be resolved, the target will default to the AssociatedObject. This is a dependency property. + + The name of the target object. + + + + Gets the target object. If TargetObject is set, returns TargetObject. Else, if TargetName is not set or cannot be resolved, defaults to the AssociatedObject. + + The target object. + In general, this property should be used in place of AssociatedObject in derived classes. + The Target element does not satisfy the type constraint. + + + + Gets the associated object type constraint. + + The associated object type constraint. + Define a TypeConstraintAttribute on a derived type to constrain the types it may be attached to. + + + + Gets the target type constraint. + + The target type constraint. + + + + Initializes a new instance of the class. + + + + + Called when the target property changes. + + Override this to hook and unhook functionality on the specified Target, rather than the AssociatedObject. + The old target. + The new target. + + + + Gets the target object. If TargetName is not set or cannot be resolved, defaults to the AssociatedObject. + + The target. + In general, this property should be used in place of AssociatedObject in derived classes. + + + + Represents a collection of actions with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + + Creates a new instance of the TriggerActionCollection. + + The new instance. + + + + Represents an object that can invoke actions conditionally. + + The type to which this trigger can be attached. + + TriggerBase is the base class for controlling actions. Override OnAttached() and + OnDetaching() to hook and unhook handlers on the AssociatedObject. You may + constrain the types that a derived TriggerBase may be attached to by specifying + the generic parameter. Call InvokeActions() to fire all Actions associated with + this TriggerBase. + + + + + Initializes a new instance of the class. + + + + + Gets the object to which the trigger is attached. + + The associated object. + + + + Gets the type constraint of the associated object. + + The associated object type constraint. + + + + Argument passed to PreviewInvoke event. Assigning Cancelling to True will cancel the invoking of the trigger. + + This is an infrastructure class. Behavior attached to a trigger base object can add its behavior as a listener to TriggerBase.PreviewInvoke. + + + + Represents a collection of triggers with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + + Creates a new instance of the . + + The new instance. + + + + Specifies type constraints on the AssociatedObject of TargetedTriggerAction and EventTriggerBase. + + + + + Initializes a new instance of the class. + + The constraint type. + + + + Gets the constraint type. + + The constraint type. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Cannot set the same BehaviorCollection on multiple objects.. + + + + + Looks up a localized string similar to An instance of a Behavior cannot be attached to more than one object at a time.. + + + + + Looks up a localized string similar to Cannot host an instance of a TriggerAction in multiple TriggerCollections simultaneously. Remove it from one TriggerCollection before adding it to another.. + + + + + Looks up a localized string similar to Cannot set the same TriggerCollection on multiple objects.. + + + + + Looks up a localized string similar to An instance of a trigger cannot be attached to more than one object at a time.. + + + + + Looks up a localized string similar to The command "{0}" does not exist or is not publicly exposed on {1}.. + + + + + Looks up a localized string similar to "{0}" is not a valid type for the TriggerType parameter. Make sure "{0}" derives from TriggerBase.. + + + + + Looks up a localized string similar to Cannot add the same instance of "{0}" to a "{1}" more than once.. + + + + + Looks up a localized string similar to The event "{0}" on type "{1}" has an incompatible signature. Make sure the event is public and satisfies the EventHandler delegate.. + + + + + Looks up a localized string similar to Cannot find an event named "{0}" on type "{1}".. + + + + + Looks up a localized string similar to An object of type "{0}" cannot have a {3} property of type "{1}". Instances of type "{0}" can have only a {3} property of type "{2}".. + + + + + Looks up a localized string similar to Cannot attach type "{0}" to type "{1}". Instances of type "{0}" can only be attached to objects of type "{2}".. + + + + + Looks up a localized string similar to Unable to resolve TargetName "{0}".. + + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/net45/Caliburn.Micro.Platform.dll b/packages/Caliburn.Micro.2.0.0/lib/net45/Caliburn.Micro.Platform.dll new file mode 100644 index 0000000..82b38cf Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/net45/Caliburn.Micro.Platform.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/net45/Caliburn.Micro.Platform.xml b/packages/Caliburn.Micro.2.0.0/lib/net45/Caliburn.Micro.Platform.xml new file mode 100644 index 0000000..470d4c5 --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/net45/Caliburn.Micro.Platform.xml @@ -0,0 +1,1750 @@ + + + + Caliburn.Micro.Platform + + + + + A host for action related attached properties. + + + + + A property definition representing the target of an . The DataContext of the element will be set to this instance. + + + + + A property definition representing the target of an . The DataContext of the element is not set to this instance. + + + + + Sets the target of the . + + The element to attach the target to. + The target for instances of . + + + + Gets the target for instances of . + + The element to which the target is attached. + The target for instances of + + + + Sets the target of the . + + The element to attach the target to. + The target for instances of . + + The DataContext will not be set. + + + + + Gets the target for instances of . + + The element to which the target is attached. + The target for instances of + + + + Checks if the -Target was set. + + DependencyObject to check + True if Target or TargetWithoutContext was set on + + + + Uses the action pipeline to invoke the method. + + The object instance to invoke the method on. + The name of the method to invoke. + The view. + The source of the invocation. + The event args. + The method parameters. + + + + The context used during the execution of an Action or its guard. + + + + + Determines whether the action can execute. + + Returns true if the action can execute, false otherwise. + + + + Any event arguments associated with the action's invocation. + + + + + The actual method info to be invoked. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + The message being executed. + + + + + The source from which the message originates. + + + + + The instance on which the action is invoked. + + + + + The view associated with the target. + + + + + Gets or sets additional data needed to invoke the action. + + The data key. + Custom data associated with the context. + + + + Called when the execution context is disposed + + + + + Used to send a message from the UI to a presentation model class, indicating that a particular Action should be invoked. + + + + + Indicates that a message is parameterized. + + + + + Represents the parameters of a message. + + + + + Causes the action invocation to "double check" if the action should be invoked by executing the guard immediately before hand. + + 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. + + + + Causes the action to throw if it cannot locate the target or the method at invocation time. + + True by default. + + + + Represents the method name of an action message. + + + + + Represents the parameters of an action message. + + + + + Creates an instance of . + + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Forces an update of the UI's Enabled/Disabled state based on the the preconditions associated with the method. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Invokes the action using the specified + + + + + Applies an availability effect, such as IsEnabled, to an element. + + Returns a value indicating whether or not the action is available. + + + + Finds the method on the target matching the specified message. + + The target. + The message. + The matching method, if available. + + + + Sets the target, method and view on the context. Uses a bubbling strategy by default. + + + + + Prepares the action execution context for use. + + + + + Try to find a candidate for guard function, having: + - a name in the form "CanXXX" + - no generic parameters + - a bool return type + - no parameters or a set of parameters corresponding to the action method + + The execution context + A MethodInfo, if found; null otherwise + + + + Gets or sets the name of the method to be invoked on the presentation model class. + + The name of the method. + + + + Gets the parameters to pass as part of the method invocation. + + The parameters. + + + + Occurs before the message detaches from the associated object. + + + + + A source of assemblies that are inspectable by the framework. + + + + + The singleton instance of the AssemblySource used by the framework. + + + + + Finds a type which matches one of the elements in the sequence of names. + + + + + A caching subsystem for . + + + + + Extracts the types from the spezified assembly for storing in the cache. + + + + + Installs the caching subsystem. + + + + + Hosts dependency properties for binding. + + + + + Allows binding on an existing view. Use this on root UserControls, Pages and Windows; not in a DataTemplate. + + + + + Allows binding on an existing view without setting the data context. Use this from within a DataTemplate. + + + + + Gets the model to bind to. + + The dependency object to bind to. + The model. + + + + Sets the model to bind to. + + The dependency object to bind to. + The model. + + + + Gets the model to bind to. + + The dependency object to bind to. + The model. + + + + Sets the model to bind to. + + The dependency object to bind to. + The model. + + + + Allows application of conventions at design-time. + + + + + Gets whether or not conventions are being applied at design-time. + + The ui to apply conventions to. + Whether or not conventions are applied. + + + + Sets whether or not do bind conventions at design-time. + + The ui to apply conventions to. + Whether or not to apply conventions. + + + + Provides methods for searching a given scope for named elements. + + + + + Searches through the list of named elements looking for a case-insensitive match. + + The named elements to search through. + The name to search for. + The named element or null if not found. + + + + Adds a child resolver. + + The type filter. + The resolver. + + + + Removes a child resolver. + + The resolver to remove. + true, when the resolver was (found and) removed. + + + + Gets all the instances with names in the scope. + + Named instances in the provided scope. + Pass in a and receive a list of named instances in the same scope. + + + + Finds a set of named instances in each hop in a . + + + Searches all the elements in the parameter as well as the visual children of + each of these elements, the , the HeaderedContentControl.Header, + the , or the HeaderedItemsControl.Header, if any are found. + + + + + Finds a path of dependency objects which traces through visual anscestry until a root which is , + a , a Page with a dependency object Page.ContentProperty value, + a dependency object with set to . + and are included in the resulting in order to track which item + in an items control we are scoped to. + + + + + Maintains a connection in the visual tree of dependency objects in order to record a route through it. + + + + + Adds a segment to the route. + + The source dependency object. + The target dependency object. + + + + Tries to get a target dependency object given a source. + + The possible beginning of a route segment (hop). + The target of a route segment (hop). + if had a target recorded; otherwise. + + + + Gets or sets the starting point of the route. + + + + + Inherit from this class in order to customize the configuration of the framework. + + + + + Creates an instance of the bootstrapper. + + Set this to false when hosting Caliburn.Micro inside and Office or WinForms application. The default is true. + + + + Initialize the framework. + + + + + Called by the bootstrapper's constructor at design time to start the framework. + + + + + Called by the bootstrapper's constructor at runtime to start the framework. + + + + + Provides an opportunity to hook into the application object. + + + + + Override to configure the framework and setup your IoC container. + + + + + Override to tell the framework where to find assemblies to inspect for views, etc. + + A list of assemblies to inspect. + + + + Override this to provide an IoC specific implementation. + + The service to locate. + The key to locate. + The located service. + + + + Override this to provide an IoC specific implementation + + The service to locate. + The located services. + + + + Override this to provide an IoC specific implementation. + + The instance to perform injection on. + + + + Override this to add custom behavior to execute after the application starts. + + The sender. + The args. + + + + Override this to add custom behavior on exit. + + The sender. + The event args. + + + + Override this to add custom behavior for unhandled exceptions. + + The sender. + The event args. + + + + Locates the view model, locates the associate view, binds them and shows it as the root view. + + The view model type. + The optional window settings. + + + + Locates the view model, locates the associate view, binds them and shows it as the root view. + + The view model type. + The optional window settings. + + + + The application. + + + + + Used to configure the conventions used by the framework to apply bindings and create actions. + + + + + Converters to/from . + + + + + Indicates whether or not static properties should be included during convention name matching. + + False by default. + + + + Indicates whether or not the Content of ContentControls should be overwritten by conventional bindings. + + False by default. + + + + The default DataTemplate used for ItemsControls when required. + + + + + The default DataTemplate used for Headered controls when required. + + + + + Changes the provided word from a plural form to a singular form. + + + + + Derives the SelectedItem property name. + + + + + Creates a binding and sets it on the element, applying the appropriate conventions. + + + + + + + + + + + Applies the appropriate binding mode to the binding. + + + + + Determines whether or not and what type of validation to enable on the binding. + + + + + Determines whether a value converter is is needed and applies one to the binding. + + + + + Determines whether a custom string format is needed and applies it to the binding. + + + + + Determines whether a custom update source trigger should be applied to the binding. + + + + + Adds an element convention. + + The type of element. + The default property for binding conventions. + The default property for action parameters. + The default event to trigger actions. + + + + Adds an element convention. + + + + + + Gets an element convention for the provided element type. + + The type of element to locate the convention for. + The convention if found, null otherwise. + Searches the class hierarchy for conventions. + + + + Determines whether a particular dependency property already has a binding on the provided element. + + + + + Creates a binding and sets it on the element, guarding against pre-existing bindings. + + + + + Creates a binding and set it on the element, guarding against pre-existing bindings and pre-existing values. + + + + + + + + + + + + Attempts to apply the default item template to the items control. + + The items control. + The collection property. + + + + Configures the selected item convention. + + The element that has a SelectedItem property. + The SelectedItem property. + The view model type. + The property path. + + + + Configures the SelectedItem binding for matched selection path. + + The element that has a SelectedItem property. + The SelectedItem property. + The view model type. + The property path. + The binding to configure. + A bool indicating whether to apply binding + + + + Applies a header template based on + + + + + + + + + Gets a property by name, ignoring case and searching all interfaces. + + The type to inspect. + The property to search for. + The property or null if not found. + + + + Represents the conventions for a particular element type. + + + + + The type of element to which the conventions apply. + + + + + Gets the default property to be used in binding conventions. + + + + + The default trigger to be used when wiring actions on this element. + + + + + The default property to be used for parameters of this type in actions. + + + + + Applies custom conventions for elements of this type. + + Pass the view model type, property path, property instance, framework element and its convention. + + + + Generic extension methods used by the framework. + + + + + Get's the name of the assembly. + + The assembly. + The assembly's name. + + + + Gets all the attributes of a particular type. + + The type of attributes to get. + The member to inspect for attributes. + Whether or not to search for inherited attributes. + The list of attributes found. + + + + Gets the value for a key. If the key does not exist, return default(TValue); + + The type of the keys in the dictionary. + The type of the values in the dictionary. + The dictionary to call this method on. + The key to look up. + The key value. default(TValue) if this key is not in the dictionary. + + + + Host's attached properties related to routed UI messaging. + + + + + Places a message handler on this element. + + The element. + The message handler. + + + + Gets the message handler for this element. + + The element. + The message handler. + + + + A property definition representing attached triggers and messages. + + + + + Sets the attached triggers and messages. + + The element to attach to. + The parsable attachment text. + + + + Gets the attached triggers and messages. + + The element that was attached to. + The parsable attachment text. + + + + A service that is capable of properly binding values to a method's parameters and creating instances of . + + + + + The special parameter values recognized by the message binder along with their resolvers. + + + + + 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. + + + + + Determines the parameters that a method should be invoked with. + + The action execution context. + The parameters required to complete the invocation. + The actual parameter values. + + + + Transforms the textual parameter into the actual parameter. + + + + + Coerces the provided value to the destination type. + + The destination type. + The provided value. + An optional context value which can be used during conversion. + The coerced value. + + + + Gets the default value for a type. + + The type. + The default value. + + + + Class for managing the list of rules for doing name transformation. + + + + + Adds a transform using a single replacement value and a global filter pattern. + + Regular expression pattern for replacing text + The replacement value. + Regular expression pattern for global filtering + + + + Adds a transform using a list of replacement values and a global filter pattern. + + Regular expression pattern for replacing text + The list of replacement values + Regular expression pattern for global filtering + + + + Gets the list of transformations for a given name. + + The name to transform into the resolved name list + The transformed names. + + + + Gets the list of transformations for a given name. + + The name to transform into the resolved name list + A function to do a transform on each item in the ReplaceValueList prior to applying the regular expression transform + The transformed names. + + + + Flag to indicate if transformations from all matched rules are returned. Otherwise, transformations from only the first matched rule are returned. + + + + + A rule that describes a name transform. + + + + + Regular expression pattern for global filtering + + + + + Regular expression pattern for replacing text + + + + + The list of replacement values + + + + + A collection that can exist as part of a behavior. + + The type of item in the attached collection. + + + + Creates an instance of + + + + + Attached the collection. + + The dependency object to attach the collection to. + + + + Detaches the collection. + + + + + Called when an item is added from the collection. + + The item that was added. + + + + Called when an item is removed from the collection. + + The item that was removed. + + + + Represents a parameter of an . + + + + + A dependency property representing the parameter's value. + + + + + When implemented in a derived class, creates a new instance of the derived class. + + The new instance. + + + + Makes the parameter aware of the that it's attached to. + + The action message. + + + + Gets or sets the value of the parameter. + + The value. + + + + Gets or sets the owner. + + + + + A service that manages windows. + + + + + Shows a modal dialog for the specified model. + + The root model. + The context. + The optional dialog settings. + The dialog result. + + + + Shows a non-modal window for the specified model. + + The root model. + The context. + The optional window settings. + + + + Shows a popup at the current mouse position. + + The root model. + The view context. + The optional popup settings. + + + + A service that manages windows. + + + + + Shows a modal dialog for the specified model. + + The root model. + The context. + The dialog popup settings. + The dialog result. + + + + Shows a window for the specified model. + + The root model. + The context. + The optional window settings. + + + + Shows a popup at the current mouse position. + + The root model. + The view context. + The optional popup settings. + + + + Creates a popup for hosting a popup window. + + The model. + The optional popup settings. + The popup. + + + + Creates a window. + + The view model. + Whethor or not the window is being shown as a dialog. + The view context. + The optional popup settings. + The window. + + + + Makes sure the view is a window is is wrapped by one. + + The view model. + The view. + Whethor or not the window is being shown as a dialog. + The window. + + + + Infers the owner of the window. + + The window to whose owner needs to be determined. + The owner. + + + + Creates the page. + + The root model. + The context. + The optional popup settings. + The page. + + + + Ensures the view is a page or provides one. + + The model. + The view. + The page. + + + + Parses text into a fully functional set of instances with . + + + + + Parses the specified message text. + + The target. + The message text. + The triggers parsed from the text. + + + + The function used to generate a trigger. + + The parameters passed to the method are the the target of the trigger and string representing the trigger. + + + + Creates an instance of by parsing out the textual dsl. + + The target of the message. + The textual message dsl. + The created message. + + + + Function used to parse a string identified as a message. + + + + + Function used to parse a string identified as a message parameter. + + + + + Creates a binding on a . + + The target to which the message is applied. + The parameter object. + The name of the element to bind to. + The path of the element to bind to. + The binding mode to use. + + + + Helper class for encoding strings to regular expression patterns + + + + + Regular expression pattern for valid name + + + + + Regular expression pattern for subnamespace (including dot) + + + + + Regular expression pattern for namespace or namespace fragment + + + + + Creates a named capture group with the specified regular expression + + Name of capture group to create + Regular expression pattern to capture + Regular expression capture group with the specified group name + + + + Converts a namespace (including wildcards) to a regular expression string + + Source namespace to convert to regular expression + Namespace converted to a regular expression + + + + Creates a capture group for a valid name regular expression pattern + + Name of capture group to create + Regular expression capture group with the specified group name + + + + Creates a capture group for a namespace regular expression pattern + + Name of capture group to create + Regular expression capture group with the specified group name + + + + Helper class when splitting strings + + + + + Splits a string with a chosen separator. + If a substring is contained in [...] it will not be splitted. + + The message to split + The separator to use when splitting + + + + + Splits a string with , as separator. + Does not split within {},[],() + + The string to split + + + + + Class to specify settings for configuring type mappings by the ViewLocator or ViewModelLocator + + + + + The default subnamespace for Views. Used for creating default subnamespace mappings. Defaults to "Views". + + + + + The default subnamespace for ViewModels. Used for creating default subnamespace mappings. Defaults to "ViewModels". + + + + + Flag to indicate whether or not the name of the Type should be transformed when adding a type mapping. Defaults to true. + + + + + The format string used to compose the name of a type from base name and name suffix + + + + + Flag to indicate if ViewModel names should include View suffixes (i.e. CustomerPageViewModel vs. CustomerViewModel) + + + + + List of View suffixes for which default type mappings should be created. Applies only when UseNameSuffixesInMappings = true. + Default values are "View", "Page" + + + + + The name suffix for ViewModels. Applies only when UseNameSuffixesInMappings = true. The default is "ViewModel". + + + + + Hosts attached properties related to view models. + + + + + A dependency property which allows the framework to track whether a certain element has already been loaded in certain scenarios. + + + + + A dependency property which marks an element as a name scope root. + + + + + A dependency property which allows the override of convention application behavior. + + + + + A dependency property for assigning a context to a particular portion of the UI. + + + + + A dependency property for attaching a model to the UI. + + + + + Used by the framework to indicate that this element was generated. + + + + + Executes the handler immediately if the element is loaded, otherwise wires it to the Loaded event. + + The element. + The handler. + true if the handler was executed immediately; false otherwise + + + + Executes the handler when the element is unloaded. + + The element. + The handler. + + + + Executes the handler the next time the elements's LayoutUpdated event fires. + + The element. + The handler. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + The root element that was not created by the framework. + 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. + + + + + Gets the convention application behavior. + + The element the property is attached to. + Whether or not to apply conventions. + + + + Sets the convention application behavior. + + The element to attach the property to. + Whether or not to apply conventions. + + + + Sets the model. + + The element to attach the model to. + The model. + + + + Gets the model. + + The element the model is attached to. + The model. + + + + Gets the context. + + The element the context is attached to. + The context. + + + + Sets the context. + + The element to attach the context to. + The context. + + + + A strategy for determining which view to use for a given model. + + + + + Used to transform names. + + + + + Separator used when resolving View names for context instances. + + + + + 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. + + An instance of TypeMappingConfiguration that provides the settings for configuration + + + + Adds a default type mapping using the standard namespace mapping convention + + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + 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. + + Suffix for type name. Should be "View" or synonym of "View". + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + Array of RegEx replace values for target namespaces + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + RegEx replace value for target namespace + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Retrieves the view from the IoC container or tries to create it if not found. + + + Pass the type of view as a parameter and recieve an instance of the view. + + + + + Modifies the name of the type to be used at design time. + + + + + Transforms a ViewModel type name into all of its possible View type names. Optionally accepts an instance + of context object + + Enumeration of transformed names + Arguments: + typeName = The name of the ViewModel type being resolved to its companion View. + context = An instance of the context or null. + + + + + Locates the view type based on the specified model type. + + The view. + + Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view type. + + + + + Locates the view for the specified model type. + + The view. + + Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view instance. + + + + + Locates the view for the specified model instance. + + The view. + + Pass the model instance, display location (or null) and the context (or null) as parameters and receive a view instance. + + + + + Transforms a view type into a pack uri. + + + + + When a view does not contain a code-behind file, we need to automatically call InitializeCompoent. + + The element to initialize + + + + Binds a view to a view model. + + + + + Gets or sets a value indicating whether to apply conventions by default. + + + true if conventions should be applied by default; otherwise, false. + + + + + Indicates whether or not the conventions have already been applied to the view. + + + + + Determines whether a view should have conventions applied to it. + + The view to check. + Whether or not conventions should be applied to the view. + + + + Creates data bindings on the view's controls based on the provided properties. + + Parameters include named Elements to search through and the type of view model to determine conventions for. Returns unmatched elements. + + + + Attaches instances of to the view's controls based on the provided methods. + + Parameters include the named elements to search through and the type of view model to determine conventions for. Returns unmatched elements. + + + + Allows the developer to add custom handling of named elements which were not matched by any default conventions. + + + + + Binds the specified viewModel to the view. + + Passes the the view model, view and creation context (or null for default) to use in applying binding. + + + + A strategy for determining which view model to use for a given view. + + + + + Used to transform names. + + + + + The name of the capture group used as a marker for rules that return interface types + + + + + 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. + + An instance of TypeMappingConfiguration that provides the settings for configuration + + + + Adds a default type mapping using the standard namespace mapping convention + + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + Array of RegEx replace values for target namespaces + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + RegEx replace value for target namespace + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Makes a type name into an interface name. + + The part. + + + + + Transforms a View type name into all of its possible ViewModel type names. Accepts a flag + to include or exclude interface types. + + Enumeration of transformed names + Arguments: + typeName = The name of the View type being resolved to its companion ViewModel. + includeInterfaces = Flag to indicate if interface types are included + + + + + Determines the view model type based on the specified view type. + + The view model type. + + Pass the view type and receive a view model type. Pass true for the second parameter to search for interfaces. + + + + + Locates the view model for the specified view type. + + The view model. + + Pass the view type as a parameter and receive a view model instance. + + + + + Locates the view model for the specified view instance. + + The view model. + + Pass the view instance as a parameters and receive a view model instance. + + + + + A implementation for the XAML platfrom. + + + + + Initializes a new instance of the class. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + + Executes the action on the UI thread. + + The action to execute. + + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + + The root element that was not created by the framework. + + + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + + An to close the view model. + + + + + + Indicates whether or not the framework is in design-time mode. + + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/net45/System.Windows.Interactivity.dll b/packages/Caliburn.Micro.2.0.0/lib/net45/System.Windows.Interactivity.dll new file mode 100644 index 0000000..931c744 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/net45/System.Windows.Interactivity.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/net45/System.Windows.Interactivity.xml b/packages/Caliburn.Micro.2.0.0/lib/net45/System.Windows.Interactivity.xml new file mode 100644 index 0000000..10cdad6 --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/net45/System.Windows.Interactivity.xml @@ -0,0 +1,1072 @@ + + + + System.Windows.Interactivity + + + + + Represents a collection of IAttachedObject with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + An interface for an object that can be attached to another object. + + + + + Attaches to the specified object. + + The object to attach to. + + + + Detaches this instance from its associated object. + + + + + Gets the associated object. + + The associated object. + Represents the object the instance is attached to. + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + Cannot add the instance to a collection more than once. + + + + Attaches to the specified object. + + The object to attach to. + The IAttachedObject is already attached to a different object. + + + + Detaches this instance from its associated object. + + + + + The object on which the collection is hosted. + + + + + Gets the associated object. + + The associated object. + + + + Encapsulates state information and zero or more ICommands into an attachable object. + + The type the can be attached to. + + Behavior is the base class for providing attachable state and commands to an object. + The types the Behavior can be attached to can be controlled by the generic parameter. + Override OnAttached() and OnDetaching() methods to hook and unhook any necessary handlers + from the AssociatedObject. + + + + + Encapsulates state information and zero or more ICommands into an attachable object. + + This is an infrastructure class. Behavior authors should derive from Behavior<T> instead of from this class. + + + + Called after the behavior is attached to an AssociatedObject. + + Override this to hook up functionality to the AssociatedObject. + + + + Called when the behavior is being detached from its AssociatedObject, but before it has actually occurred. + + Override this to unhook functionality from the AssociatedObject. + + + + Attaches to the specified object. + + The object to attach to. + The Behavior is already hosted on a different element. + dependencyObject does not satisfy the Behavior type constraint. + + + + Detaches this instance from its associated object. + + + + + The type to which this behavior can be attached. + + + + + Gets the object to which this behavior is attached. + + + + + Gets the associated object. + + The associated object. + + + + Initializes a new instance of the class. + + + + + Gets the object to which this is attached. + + + + + Represents a collection of behaviors with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + + Creates a new instance of the BehaviorCollection. + + The new instance. + + + + Enumerates possible values for reusable property value editors. + + + + + Uses the element picker, if supported, to edit this property at design time. + + + + + Uses the storyboard picker, if supported, to edit this property at design time. + + + + + Uses the state picker, if supported, to edit this property at design time. + + + + + Uses the element-binding picker, if supported, to edit this property at design time. + + + + + Uses the property-binding picker, if supported, to edit this property at design time. + + + + + Associates the given editor type with the property on which the CustomPropertyValueEditor is applied. + + Use this attribute to get improved design-time editing for properties that denote element (by name), storyboards, or states (by name). + + + + Initializes a new instance of the class. + + The custom property value editor. + + + + Gets or sets the custom property value editor. + + The custom property value editor. + + + + Provides design tools information about what to instantiate for a given action or command. + + + + + Initializes a new instance of the class. + + The type this attribute applies to. + The type of to instantiate. + A single argument for the specified . + is not derived from TriggerBase. + This constructor is useful if the specifed has a single argument. The + resulting code will be CLS compliant. + + + + Initializes a new instance of the class. + + The type this attribute applies to. + The type of to instantiate. + The constructor arguments for the specified . + is not derived from TriggerBase. + + + + Instantiates this instance. + + The specified by the DefaultTriggerAttribute. + + + + Gets the type that this DefaultTriggerAttribute applies to. + + The type this DefaultTriggerAttribute applies to. + + + + Gets the type of the to instantiate. + + The type of the to instantiate. + + + + Gets the parameters to pass to the constructor. + + The parameters to pass to the constructor. + + + + This method will use the VisualTreeHelper.GetParent method to do a depth first walk up + the visual tree and return all ancestors of the specified object, including the object itself. + + The object in the visual tree to find ancestors of. + Returns itself an all ancestors in the visual tree. + + + + EventObserver is designed to help manage event handlers by detatching when disposed. Creating this object will also attach in the constructor. + + + + + Creates an instance of EventObserver and attaches to the supplied event on the supplied target. Call dispose to detach. + + The event to attach and detach from. + The target object the event is defined on. Null if the method is static. + The delegate to attach to the event. + + + + Detaches the handler from the event. + + + + + A trigger that listens for a specified event on its source and fires when that event is fired. + + + + + Represents a trigger that can listen to an element other than its AssociatedObject. + + The type that this trigger can be associated with. + + EventTriggerBase extends TriggerBase to add knowledge of another object than the one it is attached to. + This allows a user to attach a Trigger/Action pair to one element and invoke the Action in response to a + change in another object somewhere else. Override OnSourceChanged to hook or unhook handlers on the source + element, and OnAttached/OnDetaching for the associated element. The type of the Source element can be + constrained by the generic type parameter. If you need control over the type of the + AssociatedObject, set a TypeConstraintAttribute on your derived type. + + + + + Represents a trigger that can listen to an object other than its AssociatedObject. + + This is an infrastructure class. Trigger authors should derive from EventTriggerBase<T> instead of this class. + + + + Represents an object that can invoke Actions conditionally. + + This is an infrastructure class. Trigger authors should derive from Trigger<T> instead of this class. + + + + Invoke all actions associated with this trigger. + + Derived classes should call this to fire the trigger. + + + + Called after the trigger is attached to an AssociatedObject. + + + + + Called when the trigger is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Creates a new instance of the TriggerBase derived class. + + The new instance. + + + + Attaches to the specified object. + + The object to attach to. + Cannot host the same trigger on more than one object at a time. + dependencyObject does not satisfy the trigger type constraint. + + + + Detaches this instance from its associated object. + + + + + Gets the object to which the trigger is attached. + + The associated object. + + + + Gets the type constraint of the associated object. + + The associated object type constraint. + + + + Gets the actions associated with this trigger. + + The actions associated with this trigger. + + + + Event handler for registering to PreviewInvoke. + + + + + Gets the associated object. + + The associated object. + + + + Specifies the name of the Event this EventTriggerBase is listening for. + + + + + + Called when the event associated with this EventTriggerBase is fired. By default, this will invoke all actions on the trigger. + + The instance containing the event data. + Override this to provide more granular control over when actions associated with this trigger will be invoked. + + + + Called when the source changes. + + The old source. + The new source. + This function should be overridden in derived classes to hook functionality to and unhook functionality from the changing source objects. + + + + Called after the trigger is attached to an AssociatedObject. + + + + + Called when the trigger is being detached from its AssociatedObject, but before it has actually occurred. + + + + Could not find eventName on the Target. + + + + Gets the type constraint of the associated object. + + The associated object type constraint. + Define a TypeConstraintAttribute on a derived type to constrain the types it may be attached to. + + + + Gets the source type constraint. + + The source type constraint. + + + + Gets or sets the target object. If TargetObject is not set, the target will look for the object specified by TargetName. If an element referred to by TargetName cannot be found, the target will default to the AssociatedObject. This is a dependency property. + + The target object. + + + + Gets or sets the name of the element this EventTriggerBase listens for as a source. If the name is not set or cannot be resolved, the AssociatedObject will be used. This is a dependency property. + + The name of the source element. + + + + Gets the resolved source. If is not set or cannot be resolved, defaults to AssociatedObject. + + The resolved source object. + In general, this property should be used in place of AssociatedObject in derived classes. + The element pointed to by does not satisify the type constraint. + + + + Initializes a new instance of the class. + + + + + Called when the source property changes. + + Override this to hook functionality to and unhook functionality from the specified source, rather than the AssociatedObject. + The old source. + The new source. + + + + Gets the resolved source. If is not set or cannot be resolved, defaults to AssociatedObject. + + The resolved source object. + In general, this property should be used in place of AssociatedObject in derived classes. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Name of the event. + + + + Gets or sets the name of the event to listen for. This is a dependency property. + + The name of the event. + + + + Static class that owns the Triggers and Behaviors attached properties. Handles propagation of AssociatedObject change notifications. + + + + + This property is used as the internal backing store for the public Triggers attached property. + + + This property is not exposed publicly. This forces clients to use the GetTriggers and SetTriggers methods to access the + collection, ensuring the collection exists and is set before it is used. + + + + + This property is used as the internal backing store for the public Behaviors attached property. + + + This property is not exposed publicly. This forces clients to use the GetBehaviors and SetBehaviors methods to access the + collection, ensuring the collection exists and is set before it is used. + + + + + Gets the TriggerCollection containing the triggers associated with the specified object. + + The object from which to retrieve the triggers. + A TriggerCollection containing the triggers associated with the specified object. + + + + Gets the associated with a specified object. + + The object from which to retrieve the . + A containing the behaviors associated with the specified object. + + + Cannot host the same BehaviorCollection on more than one object at a time. + + + Cannot host the same TriggerCollection on more than one object at a time. + + + + A helper function to take the place of FrameworkElement.IsLoaded, as this property is not available in Silverlight. + + The element of interest. + True if the element has been loaded; otherwise, False. + + + + Gets or sets a value indicating whether to run as if in design mode. + + + True if [should run in design mode]; otherwise, False. + + Not to be used outside unit tests. + + + + Executes a specified ICommand when invoked. + + + + + Represents an attachable object that encapsulates a unit of functionality. + + The type to which this action can be attached. + + + + Represents an attachable object that encapsulates a unit of functionality. + + This is an infrastructure class. Action authors should derive from TriggerAction<T> instead of this class. + + + + Attempts to invoke the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + When implemented in a derived class, creates a new instance of the derived class. + + The new instance. + + + + Attaches to the specified object. + + The object to attach to. + Cannot host the same TriggerAction on more than one object at a time. + dependencyObject does not satisfy the TriggerAction type constraint. + + + + Detaches this instance from its associated object. + + + + + Gets or sets a value indicating whether this action will run when invoked. This is a dependency property. + + + True if this action will be run when invoked; otherwise, False. + + + + + Gets the object to which this action is attached. + + The associated object. + + + + Gets the associated object type constraint. + + The associated object type constraint. + + + + Gets or sets a value indicating whether this instance is attached. + + True if this instance is attached; otherwise, False. + + + + Gets the associated object. + + The associated object. + + + + Initializes a new instance of the class. + + + + + Gets the object to which this is attached. + + The associated object. + + + + Gets the associated object type constraint. + + The associated object type constraint. + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Gets or sets the name of the command this action should invoke. + + The name of the command this action should invoke. + This property will be superseded by the Command property if both are set. + + + + Gets or sets the command this action should invoke. This is a dependency property. + + The command to execute. + This property will take precedence over the CommandName property if both are set. + + + + Gets or sets the command parameter. This is a dependency property. + + The command parameter. + This is the value passed to ICommand.CanExecute and ICommand.Execute. + + + + Provides data about which objects were affected when resolving a name change. + + + + + Helper class to handle the logic of resolving a TargetName into a Target element + based on the context provided by a host element. + + + + + Attempts to update the resolved object from the name within the context of the namescope reference element. + + The old resolved object. + + Resets the existing target and attempts to resolve the current TargetName from the + context of the current Host. If it cannot resolve from the context of the Host, it will + continue up the visual tree until it resolves. If it has not resolved it when it reaches + the root, it will set the Target to null and write a warning message to Debug output. + + + + + Occurs when the resolved element has changed. + + + + + Gets or sets the name of the element to attempt to resolve. + + The name to attempt to resolve. + + + + The resolved object. Will return the reference element if TargetName is null or empty, or if a resolve has not been attempted. + + + + + Gets or sets the reference element from which to perform the name resolution. + + The reference element. + + + + Gets or sets a value indicating whether the reference element load is pending. + + + True if [pending reference element load]; otherwise, False. + + + If the Host has not been loaded, the name will not be resolved. + In that case, delay the resolution and track that fact with this property. + + + + + Represents an action that can be targeted to affect an object other than its AssociatedObject. + + The type constraint on the target. + + TargetedTriggerAction extends TriggerAction to add knowledge of another element than the one it is attached to. + This allows a user to invoke the action on an element other than the one it is attached to in response to a + trigger firing. Override OnTargetChanged to hook or unhook handlers on the target element, and OnAttached/OnDetaching + for the associated element. The type of the Target element can be constrained by the generic type parameter. If + you need control over the type of the AssociatedObject, set a TypeConstraintAttribute on your derived type. + + + + + Represents an action that can be targeted to affect an object other than its AssociatedObject. + + This is an infrastructure class. Action authors should derive from TargetedTriggerAction<T> instead of this class. + + + + Called when the target changes. + + The old target. + The new target. + This function should be overriden in derived classes to hook and unhook functionality from the changing source objects. + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Gets or sets the target object. If TargetObject is not set, the target will look for the object specified by TargetName. If an element referred to by TargetName cannot be found, the target will default to the AssociatedObject. This is a dependency property. + + The target object. + + + + Gets or sets the name of the object this action targets. If Target is set, this property is ignored. If Target is not set and TargetName is not set or cannot be resolved, the target will default to the AssociatedObject. This is a dependency property. + + The name of the target object. + + + + Gets the target object. If TargetObject is set, returns TargetObject. Else, if TargetName is not set or cannot be resolved, defaults to the AssociatedObject. + + The target object. + In general, this property should be used in place of AssociatedObject in derived classes. + The Target element does not satisfy the type constraint. + + + + Gets the associated object type constraint. + + The associated object type constraint. + Define a TypeConstraintAttribute on a derived type to constrain the types it may be attached to. + + + + Gets the target type constraint. + + The target type constraint. + + + + Initializes a new instance of the class. + + + + + Called when the target property changes. + + Override this to hook and unhook functionality on the specified Target, rather than the AssociatedObject. + The old target. + The new target. + + + + Gets the target object. If TargetName is not set or cannot be resolved, defaults to the AssociatedObject. + + The target. + In general, this property should be used in place of AssociatedObject in derived classes. + + + + Represents a collection of actions with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + + Creates a new instance of the TriggerActionCollection. + + The new instance. + + + + Represents an object that can invoke actions conditionally. + + The type to which this trigger can be attached. + + TriggerBase is the base class for controlling actions. Override OnAttached() and + OnDetaching() to hook and unhook handlers on the AssociatedObject. You may + constrain the types that a derived TriggerBase may be attached to by specifying + the generic parameter. Call InvokeActions() to fire all Actions associated with + this TriggerBase. + + + + + Initializes a new instance of the class. + + + + + Gets the object to which the trigger is attached. + + The associated object. + + + + Gets the type constraint of the associated object. + + The associated object type constraint. + + + + Argument passed to PreviewInvoke event. Assigning Cancelling to True will cancel the invoking of the trigger. + + This is an infrastructure class. Behavior attached to a trigger base object can add its behavior as a listener to TriggerBase.PreviewInvoke. + + + + Represents a collection of triggers with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + + Creates a new instance of the . + + The new instance. + + + + Specifies type constraints on the AssociatedObject of TargetedTriggerAction and EventTriggerBase. + + + + + Initializes a new instance of the class. + + The constraint type. + + + + Gets the constraint type. + + The constraint type. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Cannot set the same BehaviorCollection on multiple objects.. + + + + + Looks up a localized string similar to An instance of a Behavior cannot be attached to more than one object at a time.. + + + + + Looks up a localized string similar to Cannot host an instance of a TriggerAction in multiple TriggerCollections simultaneously. Remove it from one TriggerCollection before adding it to another.. + + + + + Looks up a localized string similar to Cannot set the same TriggerCollection on multiple objects.. + + + + + Looks up a localized string similar to An instance of a trigger cannot be attached to more than one object at a time.. + + + + + Looks up a localized string similar to The command "{0}" does not exist or is not publicly exposed on {1}.. + + + + + Looks up a localized string similar to "{0}" is not a valid type for the TriggerType parameter. Make sure "{0}" derives from TriggerBase.. + + + + + Looks up a localized string similar to Cannot add the same instance of "{0}" to a "{1}" more than once.. + + + + + Looks up a localized string similar to The event "{0}" on type "{1}" has an incompatible signature. Make sure the event is public and satisfies the EventHandler delegate.. + + + + + Looks up a localized string similar to Cannot find an event named "{0}" on type "{1}".. + + + + + Looks up a localized string similar to An object of type "{0}" cannot have a {3} property of type "{1}". Instances of type "{0}" can have only a {3} property of type "{2}".. + + + + + Looks up a localized string similar to Cannot attach type "{0}" to type "{1}". Instances of type "{0}" can only be attached to objects of type "{2}".. + + + + + Looks up a localized string similar to Unable to resolve TargetName "{0}".. + + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/sl5/Caliburn.Micro.Platform.dll b/packages/Caliburn.Micro.2.0.0/lib/sl5/Caliburn.Micro.Platform.dll new file mode 100644 index 0000000..e8437d0 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/sl5/Caliburn.Micro.Platform.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/sl5/Caliburn.Micro.Platform.xml b/packages/Caliburn.Micro.2.0.0/lib/sl5/Caliburn.Micro.Platform.xml new file mode 100644 index 0000000..f4ced78 --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/sl5/Caliburn.Micro.Platform.xml @@ -0,0 +1,1764 @@ + + + + Caliburn.Micro.Platform + + + + + A host for action related attached properties. + + + + + A property definition representing the target of an . The DataContext of the element will be set to this instance. + + + + + A property definition representing the target of an . The DataContext of the element is not set to this instance. + + + + + Sets the target of the . + + The element to attach the target to. + The target for instances of . + + + + Gets the target for instances of . + + The element to which the target is attached. + The target for instances of + + + + Sets the target of the . + + The element to attach the target to. + The target for instances of . + + The DataContext will not be set. + + + + + Gets the target for instances of . + + The element to which the target is attached. + The target for instances of + + + + Checks if the -Target was set. + + DependencyObject to check + True if Target or TargetWithoutContext was set on + + + + Uses the action pipeline to invoke the method. + + The object instance to invoke the method on. + The name of the method to invoke. + The view. + The source of the invocation. + The event args. + The method parameters. + + + + The context used during the execution of an Action or its guard. + + + + + Determines whether the action can execute. + + Returns true if the action can execute, false otherwise. + + + + Any event arguments associated with the action's invocation. + + + + + The actual method info to be invoked. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + The message being executed. + + + + + The source from which the message originates. + + + + + The instance on which the action is invoked. + + + + + The view associated with the target. + + + + + Gets or sets additional data needed to invoke the action. + + The data key. + Custom data associated with the context. + + + + Called when the execution context is disposed + + + + + Used to send a message from the UI to a presentation model class, indicating that a particular Action should be invoked. + + + + + Indicates that a message is parameterized. + + + + + Represents the parameters of a message. + + + + + Causes the action invocation to "double check" if the action should be invoked by executing the guard immediately before hand. + + 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. + + + + Causes the action to throw if it cannot locate the target or the method at invocation time. + + True by default. + + + + Represents the method name of an action message. + + + + + Represents the parameters of an action message. + + + + + Creates an instance of . + + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Forces an update of the UI's Enabled/Disabled state based on the the preconditions associated with the method. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Invokes the action using the specified + + + + + Applies an availability effect, such as IsEnabled, to an element. + + Returns a value indicating whether or not the action is available. + + + + Finds the method on the target matching the specified message. + + The target. + The message. + The matching method, if available. + + + + Sets the target, method and view on the context. Uses a bubbling strategy by default. + + + + + Prepares the action execution context for use. + + + + + Try to find a candidate for guard function, having: + - a name in the form "CanXXX" + - no generic parameters + - a bool return type + - no parameters or a set of parameters corresponding to the action method + + The execution context + A MethodInfo, if found; null otherwise + + + + Gets or sets the name of the method to be invoked on the presentation model class. + + The name of the method. + + + + Gets the parameters to pass as part of the method invocation. + + The parameters. + + + + Occurs before the message detaches from the associated object. + + + + + A source of assemblies that are inspectable by the framework. + + + + + The singleton instance of the AssemblySource used by the framework. + + + + + Finds a type which matches one of the elements in the sequence of names. + + + + + A caching subsystem for . + + + + + Extracts the types from the spezified assembly for storing in the cache. + + + + + Installs the caching subsystem. + + + + + Hosts dependency properties for binding. + + + + + Allows binding on an existing view. Use this on root UserControls, Pages and Windows; not in a DataTemplate. + + + + + Allows binding on an existing view without setting the data context. Use this from within a DataTemplate. + + + + + Gets the model to bind to. + + The dependency object to bind to. + The model. + + + + Sets the model to bind to. + + The dependency object to bind to. + The model. + + + + Gets the model to bind to. + + The dependency object to bind to. + The model. + + + + Sets the model to bind to. + + The dependency object to bind to. + The model. + + + + Allows application of conventions at design-time. + + + + + Gets whether or not conventions are being applied at design-time. + + The ui to apply conventions to. + Whether or not conventions are applied. + + + + Sets whether or not do bind conventions at design-time. + + The ui to apply conventions to. + Whether or not to apply conventions. + + + + Provides methods for searching a given scope for named elements. + + + + + Searches through the list of named elements looking for a case-insensitive match. + + The named elements to search through. + The name to search for. + The named element or null if not found. + + + + Adds a child resolver. + + The type filter. + The resolver. + + + + Removes a child resolver. + + The resolver to remove. + true, when the resolver was (found and) removed. + + + + Gets all the instances with names in the scope. + + Named instances in the provided scope. + Pass in a and receive a list of named instances in the same scope. + + + + Finds a set of named instances in each hop in a . + + + Searches all the elements in the parameter as well as the visual children of + each of these elements, the , the HeaderedContentControl.Header, + the , or the HeaderedItemsControl.Header, if any are found. + + + + + Finds a path of dependency objects which traces through visual anscestry until a root which is , + a , a Page with a dependency object Page.ContentProperty value, + a dependency object with set to . + and are included in the resulting in order to track which item + in an items control we are scoped to. + + + + + Maintains a connection in the visual tree of dependency objects in order to record a route through it. + + + + + Adds a segment to the route. + + The source dependency object. + The target dependency object. + + + + Tries to get a target dependency object given a source. + + The possible beginning of a route segment (hop). + The target of a route segment (hop). + if had a target recorded; otherwise. + + + + Gets or sets the starting point of the route. + + + + + An which converts to . + + + + + Converts a boolean value to a value. + + The value produced by the binding source. + The type of the binding target property. + The converter parameter to use. + The culture to use in the converter. + + A converted value. If the method returns null, the valid null value is used. + + + + + Converts a value value to a boolean value. + + The value that is produced by the binding target. + The type to convert to. + The converter parameter to use. + The culture to use in the converter. + + A converted value. If the method returns null, the valid null value is used. + + + + + Inherit from this class in order to customize the configuration of the framework. + + + + + Creates an instance of the bootstrapper. + + Set this to false when hosting Caliburn.Micro inside and Office or WinForms application. The default is true. + + + + Initialize the framework. + + + + + Called by the bootstrapper's constructor at design time to start the framework. + + + + + Called by the bootstrapper's constructor at runtime to start the framework. + + + + + Provides an opportunity to hook into the application object. + + + + + Override to configure the framework and setup your IoC container. + + + + + Override to tell the framework where to find assemblies to inspect for views, etc. + + A list of assemblies to inspect. + + + + Override this to provide an IoC specific implementation. + + The service to locate. + The key to locate. + The located service. + + + + Override this to provide an IoC specific implementation + + The service to locate. + The located services. + + + + Override this to provide an IoC specific implementation. + + The instance to perform injection on. + + + + Override this to add custom behavior to execute after the application starts. + + The sender. + The args. + + + + Override this to add custom behavior on exit. + + The sender. + The event args. + + + + Override this to add custom behavior for unhandled exceptions. + + The sender. + The event args. + + + + Locates the view model, locates the associate view, binds them and shows it as the root view. + + The view model type. + + + + Locates the view model, locates the associate view, binds them and shows it as the root view. + + The view model type. + + + + The application. + + + + + Used to configure the conventions used by the framework to apply bindings and create actions. + + + + + Converters to/from . + + + + + Indicates whether or not static properties should be included during convention name matching. + + False by default. + + + + Indicates whether or not the Content of ContentControls should be overwritten by conventional bindings. + + False by default. + + + + The default DataTemplate used for ItemsControls when required. + + + + + The default DataTemplate used for Headered controls when required. + + + + + Changes the provided word from a plural form to a singular form. + + + + + Derives the SelectedItem property name. + + + + + Creates a binding and sets it on the element, applying the appropriate conventions. + + + + + + + + + + + Applies the appropriate binding mode to the binding. + + + + + Determines whether or not and what type of validation to enable on the binding. + + + + + Determines whether a value converter is is needed and applies one to the binding. + + + + + Determines whether a custom string format is needed and applies it to the binding. + + + + + Determines whether a custom update source trigger should be applied to the binding. + + + + + Adds an element convention. + + The type of element. + The default property for binding conventions. + The default property for action parameters. + The default event to trigger actions. + + + + Adds an element convention. + + + + + + Gets an element convention for the provided element type. + + The type of element to locate the convention for. + The convention if found, null otherwise. + Searches the class hierarchy for conventions. + + + + Determines whether a particular dependency property already has a binding on the provided element. + + + + + Creates a binding and sets it on the element, guarding against pre-existing bindings. + + + + + Creates a binding and set it on the element, guarding against pre-existing bindings and pre-existing values. + + + + + + + + + + + + Attempts to apply the default item template to the items control. + + The items control. + The collection property. + + + + Configures the selected item convention. + + The element that has a SelectedItem property. + The SelectedItem property. + The view model type. + The property path. + + + + Configures the SelectedItem binding for matched selection path. + + The element that has a SelectedItem property. + The SelectedItem property. + The view model type. + The property path. + The binding to configure. + A bool indicating whether to apply binding + + + + Applies a header template based on + + + + + + + + + Gets a property by name, ignoring case and searching all interfaces. + + The type to inspect. + The property to search for. + The property or null if not found. + + + + Represents the conventions for a particular element type. + + + + + The type of element to which the conventions apply. + + + + + Gets the default property to be used in binding conventions. + + + + + The default trigger to be used when wiring actions on this element. + + + + + The default property to be used for parameters of this type in actions. + + + + + Applies custom conventions for elements of this type. + + Pass the view model type, property path, property instance, framework element and its convention. + + + + Generic extension methods used by the framework. + + + + + Get's the name of the assembly. + + The assembly. + The assembly's name. + + + + Gets all the attributes of a particular type. + + The type of attributes to get. + The member to inspect for attributes. + Whether or not to search for inherited attributes. + The list of attributes found. + + + + Gets the value for a key. If the key does not exist, return default(TValue); + + The type of the keys in the dictionary. + The type of the values in the dictionary. + The dictionary to call this method on. + The key to look up. + The key value. default(TValue) if this key is not in the dictionary. + + + + Host's attached properties related to routed UI messaging. + + + + + Places a message handler on this element. + + The element. + The message handler. + + + + Gets the message handler for this element. + + The element. + The message handler. + + + + A property definition representing attached triggers and messages. + + + + + Sets the attached triggers and messages. + + The element to attach to. + The parsable attachment text. + + + + Gets the attached triggers and messages. + + The element that was attached to. + The parsable attachment text. + + + + A service that is capable of properly binding values to a method's parameters and creating instances of . + + + + + The special parameter values recognized by the message binder along with their resolvers. + + + + + 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. + + + + + Determines the parameters that a method should be invoked with. + + The action execution context. + The parameters required to complete the invocation. + The actual parameter values. + + + + Transforms the textual parameter into the actual parameter. + + + + + Coerces the provided value to the destination type. + + The destination type. + The provided value. + An optional context value which can be used during conversion. + The coerced value. + + + + Gets the default value for a type. + + The type. + The default value. + + + + Class for managing the list of rules for doing name transformation. + + + + + Adds a transform using a single replacement value and a global filter pattern. + + Regular expression pattern for replacing text + The replacement value. + Regular expression pattern for global filtering + + + + Adds a transform using a list of replacement values and a global filter pattern. + + Regular expression pattern for replacing text + The list of replacement values + Regular expression pattern for global filtering + + + + Gets the list of transformations for a given name. + + The name to transform into the resolved name list + The transformed names. + + + + Gets the list of transformations for a given name. + + The name to transform into the resolved name list + A function to do a transform on each item in the ReplaceValueList prior to applying the regular expression transform + The transformed names. + + + + Flag to indicate if transformations from all matched rules are returned. Otherwise, transformations from only the first matched rule are returned. + + + + + A rule that describes a name transform. + + + + + Regular expression pattern for global filtering + + + + + Regular expression pattern for replacing text + + + + + The list of replacement values + + + + + Parses text into a fully functional set of instances with . + + + + + Parses the specified message text. + + The target. + The message text. + The triggers parsed from the text. + + + + The function used to generate a trigger. + + The parameters passed to the method are the the target of the trigger and string representing the trigger. + + + + Creates an instance of by parsing out the textual dsl. + + The target of the message. + The textual message dsl. + The created message. + + + + Function used to parse a string identified as a message. + + + + + Function used to parse a string identified as a message parameter. + + + + + Creates a binding on a . + + The target to which the message is applied. + The parameter object. + The name of the element to bind to. + The path of the element to bind to. + The binding mode to use. + + + + Helper class for encoding strings to regular expression patterns + + + + + Regular expression pattern for valid name + + + + + Regular expression pattern for subnamespace (including dot) + + + + + Regular expression pattern for namespace or namespace fragment + + + + + Creates a named capture group with the specified regular expression + + Name of capture group to create + Regular expression pattern to capture + Regular expression capture group with the specified group name + + + + Converts a namespace (including wildcards) to a regular expression string + + Source namespace to convert to regular expression + Namespace converted to a regular expression + + + + Creates a capture group for a valid name regular expression pattern + + Name of capture group to create + Regular expression capture group with the specified group name + + + + Creates a capture group for a namespace regular expression pattern + + Name of capture group to create + Regular expression capture group with the specified group name + + + + A collection that can exist as part of a behavior. + + The type of item in the attached collection. + + + + Creates an instance of + + + + + Attached the collection. + + The dependency object to attach the collection to. + + + + Detaches the collection. + + + + + Called when an item is added from the collection. + + The item that was added. + + + + Called when an item is removed from the collection. + + The item that was removed. + + + + A mouse helper utility. + + + + + Initializes the mouse helper with the UIElement to use in mouse tracking. + + The UIElement to use for mouse tracking. + + + + The current position of the mouse. + + + + + Represents a parameter of an . + + + + + A dependency property representing the parameter's value. + + + + + Makes the parameter aware of the that it's attached to. + + The action message. + + + + Gets or sets the value of the parameter. + + The value. + + + + Gets or sets the owner. + + + + + A service that manages windows. + + + + + Shows a modal dialog for the specified model. + + The root model. + The optional dialog settings. + The context. + + + + Shows a toast notification for the specified model. + + The root model. + How long the notification should appear for. + The optional notification settings. + The context. + + + + Shows a popup at the current mouse position. + + The root model. + The view context. + The optional popup settings. + + + + A service that manages windows. + + + + + Shows a modal dialog for the specified model. + + The root model. + The context. + The optional dialog settings. + + + + Shows a toast notification for the specified model. + + The root model. + How long the notification should appear for. + The context. + The optional notification settings. + + + + Shows a popup at the current mouse position. + + The root model. + The view context. + The optional popup settings. + + + + Creates a popup for hosting a popup window. + + The model. + The optional popup settings. + The popup. + + + + Ensures that the view is a or is wrapped by one. + + The view model. + The view. + The window. + + + + Helper class when splitting strings + + + + + Splits a string with a chosen separator. + If a substring is contained in [...] it will not be splitted. + + The message to split + The separator to use when splitting + + + + + Splits a string with , as separator. + Does not split within {},[],() + + The string to split + + + + + Provides information about the characteristics for a component, such as its attributes, properties, and events. This class cannot be inherited. + + + + + Returns a type converter for the specified type. + + The System.Type of the target component. + A System.ComponentModel.TypeConverter for the specified type. + + + + Class to specify settings for configuring type mappings by the ViewLocator or ViewModelLocator + + + + + The default subnamespace for Views. Used for creating default subnamespace mappings. Defaults to "Views". + + + + + The default subnamespace for ViewModels. Used for creating default subnamespace mappings. Defaults to "ViewModels". + + + + + Flag to indicate whether or not the name of the Type should be transformed when adding a type mapping. Defaults to true. + + + + + The format string used to compose the name of a type from base name and name suffix + + + + + Flag to indicate if ViewModel names should include View suffixes (i.e. CustomerPageViewModel vs. CustomerViewModel) + + + + + List of View suffixes for which default type mappings should be created. Applies only when UseNameSuffixesInMappings = true. + Default values are "View", "Page" + + + + + The name suffix for ViewModels. Applies only when UseNameSuffixesInMappings = true. The default is "ViewModel". + + + + + Hosts attached properties related to view models. + + + + + A dependency property which allows the framework to track whether a certain element has already been loaded in certain scenarios. + + + + + A dependency property which marks an element as a name scope root. + + + + + A dependency property which allows the override of convention application behavior. + + + + + A dependency property for assigning a context to a particular portion of the UI. + + + + + A dependency property for attaching a model to the UI. + + + + + Used by the framework to indicate that this element was generated. + + + + + Executes the handler immediately if the element is loaded, otherwise wires it to the Loaded event. + + The element. + The handler. + true if the handler was executed immediately; false otherwise + + + + Executes the handler when the element is unloaded. + + The element. + The handler. + + + + Executes the handler the next time the elements's LayoutUpdated event fires. + + The element. + The handler. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + The root element that was not created by the framework. + 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. + + + + + Gets the convention application behavior. + + The element the property is attached to. + Whether or not to apply conventions. + + + + Sets the convention application behavior. + + The element to attach the property to. + Whether or not to apply conventions. + + + + Sets the model. + + The element to attach the model to. + The model. + + + + Gets the model. + + The element the model is attached to. + The model. + + + + Gets the context. + + The element the context is attached to. + The context. + + + + Sets the context. + + The element to attach the context to. + The context. + + + + A strategy for determining which view to use for a given model. + + + + + Used to transform names. + + + + + Separator used when resolving View names for context instances. + + + + + 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. + + An instance of TypeMappingConfiguration that provides the settings for configuration + + + + Adds a default type mapping using the standard namespace mapping convention + + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + 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. + + Suffix for type name. Should be "View" or synonym of "View". + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + Array of RegEx replace values for target namespaces + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + RegEx replace value for target namespace + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Retrieves the view from the IoC container or tries to create it if not found. + + + Pass the type of view as a parameter and recieve an instance of the view. + + + + + Modifies the name of the type to be used at design time. + + + + + Transforms a ViewModel type name into all of its possible View type names. Optionally accepts an instance + of context object + + Enumeration of transformed names + Arguments: + typeName = The name of the ViewModel type being resolved to its companion View. + context = An instance of the context or null. + + + + + Locates the view type based on the specified model type. + + The view. + + Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view type. + + + + + Locates the view for the specified model type. + + The view. + + Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view instance. + + + + + Locates the view for the specified model instance. + + The view. + + Pass the model instance, display location (or null) and the context (or null) as parameters and receive a view instance. + + + + + Transforms a view type into a pack uri. + + + + + When a view does not contain a code-behind file, we need to automatically call InitializeCompoent. + + The element to initialize + + + + Binds a view to a view model. + + + + + Gets or sets a value indicating whether to apply conventions by default. + + + true if conventions should be applied by default; otherwise, false. + + + + + Indicates whether or not the conventions have already been applied to the view. + + + + + Determines whether a view should have conventions applied to it. + + The view to check. + Whether or not conventions should be applied to the view. + + + + Creates data bindings on the view's controls based on the provided properties. + + Parameters include named Elements to search through and the type of view model to determine conventions for. Returns unmatched elements. + + + + Attaches instances of to the view's controls based on the provided methods. + + Parameters include the named elements to search through and the type of view model to determine conventions for. Returns unmatched elements. + + + + Allows the developer to add custom handling of named elements which were not matched by any default conventions. + + + + + Binds the specified viewModel to the view. + + Passes the the view model, view and creation context (or null for default) to use in applying binding. + + + + A strategy for determining which view model to use for a given view. + + + + + Used to transform names. + + + + + The name of the capture group used as a marker for rules that return interface types + + + + + 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. + + An instance of TypeMappingConfiguration that provides the settings for configuration + + + + Adds a default type mapping using the standard namespace mapping convention + + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + Array of RegEx replace values for target namespaces + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + RegEx replace value for target namespace + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Makes a type name into an interface name. + + The part. + + + + + Transforms a View type name into all of its possible ViewModel type names. Accepts a flag + to include or exclude interface types. + + Enumeration of transformed names + Arguments: + typeName = The name of the View type being resolved to its companion ViewModel. + includeInterfaces = Flag to indicate if interface types are included + + + + + Determines the view model type based on the specified view type. + + The view model type. + + Pass the view type and receive a view model type. Pass true for the second parameter to search for interfaces. + + + + + Locates the view model for the specified view type. + + The view model. + + Pass the view type as a parameter and receive a view model instance. + + + + + Locates the view model for the specified view instance. + + The view model. + + Pass the view instance as a parameters and receive a view model instance. + + + + + A implementation for the XAML platfrom. + + + + + Initializes a new instance of the class. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + + Executes the action on the UI thread. + + The action to execute. + + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + + The root element that was not created by the framework. + + + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + + An to close the view model. + + + + + + Indicates whether or not the framework is in design-time mode. + + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/sl5/System.Windows.Interactivity.dll b/packages/Caliburn.Micro.2.0.0/lib/sl5/System.Windows.Interactivity.dll new file mode 100644 index 0000000..8faaff7 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/sl5/System.Windows.Interactivity.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/sl5/System.Windows.Interactivity.xml b/packages/Caliburn.Micro.2.0.0/lib/sl5/System.Windows.Interactivity.xml new file mode 100644 index 0000000..9feeaaf --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/sl5/System.Windows.Interactivity.xml @@ -0,0 +1,1025 @@ + + + + System.Windows.Interactivity + + + + + Represents a collection of IAttachedObject with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + An interface for an object that can be attached to another object. + + + + + Attaches to the specified object. + + The object to attach to. + + + + Detaches this instance from its associated object. + + + + + Gets the associated object. + + The associated object. + Represents the object the instance is attached to. + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + Cannot add the instance to a collection more than once. + + + + Attaches to the specified object. + + The object to attach to. + The IAttachedObject is already attached to a different object. + + + + Detaches this instance from its associated object. + + + + + The object on which the collection is hosted. + + + + + Gets the associated object. + + The associated object. + + + + Encapsulates state information and zero or more ICommands into an attachable object. + + The type the can be attached to. + + Behavior is the base class for providing attachable state and commands to an object. + The types the Behavior can be attached to can be controlled by the generic parameter. + Override OnAttached() and OnDetaching() methods to hook and unhook any necessary handlers + from the AssociatedObject. + + + + + Encapsulates state information and zero or more ICommands into an attachable object. + + This is an infrastructure class. Behavior authors should derive from Behavior<T> instead of from this class. + + + + Called after the behavior is attached to an AssociatedObject. + + Override this to hook up functionality to the AssociatedObject. + + + + Called when the behavior is being detached from its AssociatedObject, but before it has actually occurred. + + Override this to unhook functionality from the AssociatedObject. + + + + Attaches to the specified object. + + The object to attach to. + The Behavior is already hosted on a different element. + dependencyObject does not satisfy the Behavior type constraint. + + + + Detaches this instance from its associated object. + + + + + The type to which this behavior can be attached. + + + + + Gets the object to which this behavior is attached. + + + + + Gets the associated object. + + The associated object. + + + + Initializes a new instance of the class. + + + + + Gets the object to which this is attached. + + + + + Represents a collection of behaviors with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + + Enumerates possible values for reusable property value editors. + + + + + Uses the element picker, if supported, to edit this property at design time. + + + + + Uses the storyboard picker, if supported, to edit this property at design time. + + + + + Uses the state picker, if supported, to edit this property at design time. + + + + + Uses the element-binding picker, if supported, to edit this property at design time. + + + + + Uses the property-binding picker, if supported, to edit this property at design time. + + + + + Associates the given editor type with the property on which the CustomPropertyValueEditor is applied. + + Use this attribute to get improved design-time editing for properties that denote element (by name), storyboards, or states (by name). + + + + Initializes a new instance of the class. + + The custom property value editor. + + + + Gets or sets the custom property value editor. + + The custom property value editor. + + + + Provides design tools information about what to instantiate for a given action or command. + + + + + Initializes a new instance of the class. + + The type this attribute applies to. + The type of to instantiate. + A single argument for the specified . + is not derived from TriggerBase. + This constructor is useful if the specifed has a single argument. The + resulting code will be CLS compliant. + + + + Initializes a new instance of the class. + + The type this attribute applies to. + The type of to instantiate. + The constructor arguments for the specified . + is not derived from TriggerBase. + + + + Instantiates this instance. + + The specified by the DefaultTriggerAttribute. + + + + Gets the type that this DefaultTriggerAttribute applies to. + + The type this DefaultTriggerAttribute applies to. + + + + Gets the type of the to instantiate. + + The type of the to instantiate. + + + + Gets the parameters to pass to the constructor. + + The parameters to pass to the constructor. + + + + This method will use the VisualTreeHelper.GetParent method to do a depth first walk up + the visual tree and return all ancestors of the specified object, including the object itself. + + The object in the visual tree to find ancestors of. + Returns itself an all ancestors in the visual tree. + + + + EventObserver is designed to help manage event handlers by detatching when disposed. Creating this object will also attach in the constructor. + + + + + Creates an instance of EventObserver and attaches to the supplied event on the supplied target. Call dispose to detach. + + The event to attach and detach from. + The target object the event is defined on. Null if the method is static. + The delegate to attach to the event. + + + + Detaches the handler from the event. + + + + + A trigger that listens for a specified event on its source and fires when that event is fired. + + + + + Represents a trigger that can listen to an element other than its AssociatedObject. + + The type that this trigger can be associated with. + + EventTriggerBase extends TriggerBase to add knowledge of another object than the one it is attached to. + This allows a user to attach a Trigger/Action pair to one element and invoke the Action in response to a + change in another object somewhere else. Override OnSourceChanged to hook or unhook handlers on the source + element, and OnAttached/OnDetaching for the associated element. The type of the Source element can be + constrained by the generic type parameter. If you need control over the type of the + AssociatedObject, set a TypeConstraintAttribute on your derived type. + + + + + Represents a trigger that can listen to an object other than its AssociatedObject. + + This is an infrastructure class. Trigger authors should derive from EventTriggerBase<T> instead of this class. + + + + Represents an object that can invoke Actions conditionally. + + This is an infrastructure class. Trigger authors should derive from Trigger<T> instead of this class. + + + + Invoke all actions associated with this trigger. + + Derived classes should call this to fire the trigger. + + + + Called after the trigger is attached to an AssociatedObject. + + + + + Called when the trigger is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Attaches to the specified object. + + The object to attach to. + Cannot host the same trigger on more than one object at a time. + dependencyObject does not satisfy the trigger type constraint. + + + + Detaches this instance from its associated object. + + + + + Gets the object to which the trigger is attached. + + The associated object. + + + + Gets the type constraint of the associated object. + + The associated object type constraint. + + + + Gets the actions associated with this trigger. + + The actions associated with this trigger. + + + + Event handler for registering to PreviewInvoke. + + + + + Gets the associated object. + + The associated object. + + + + Specifies the name of the Event this EventTriggerBase is listening for. + + + + + + Called when the event associated with this EventTriggerBase is fired. By default, this will invoke all actions on the trigger. + + The instance containing the event data. + Override this to provide more granular control over when actions associated with this trigger will be invoked. + + + + Called when the source changes. + + The old source. + The new source. + This function should be overridden in derived classes to hook functionality to and unhook functionality from the changing source objects. + + + + Called after the trigger is attached to an AssociatedObject. + + + + + Called when the trigger is being detached from its AssociatedObject, but before it has actually occurred. + + + + Could not find eventName on the Target. + + + + Gets the type constraint of the associated object. + + The associated object type constraint. + Define a TypeConstraintAttribute on a derived type to constrain the types it may be attached to. + + + + Gets the source type constraint. + + The source type constraint. + + + + Gets or sets the target object. If TargetObject is not set, the target will look for the object specified by TargetName. If an element referred to by TargetName cannot be found, the target will default to the AssociatedObject. This is a dependency property. + + The target object. + + + + Gets or sets the name of the element this EventTriggerBase listens for as a source. If the name is not set or cannot be resolved, the AssociatedObject will be used. This is a dependency property. + + The name of the source element. + + + + Gets the resolved source. If is not set or cannot be resolved, defaults to AssociatedObject. + + The resolved source object. + In general, this property should be used in place of AssociatedObject in derived classes. + The element pointed to by does not satisify the type constraint. + + + + Initializes a new instance of the class. + + + + + Called when the source property changes. + + Override this to hook functionality to and unhook functionality from the specified source, rather than the AssociatedObject. + The old source. + The new source. + + + + Gets the resolved source. If is not set or cannot be resolved, defaults to AssociatedObject. + + The resolved source object. + In general, this property should be used in place of AssociatedObject in derived classes. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Name of the event. + + + + Gets or sets the name of the event to listen for. This is a dependency property. + + The name of the event. + + + + Static class that owns the Triggers and Behaviors attached properties. Handles propagation of AssociatedObject change notifications. + + + + + This property is used as the internal backing store for the public Triggers attached property. + + + + + This property is used as the internal backing store for the public Behaviors attached property. + + + + + Gets the TriggerCollection containing the triggers associated with the specified object. + + The object from which to retrieve the triggers. + A TriggerCollection containing the triggers associated with the specified object. + + + + Gets the associated with a specified object. + + The object from which to retrieve the . + A containing the behaviors associated with the specified object. + + + Cannot host the same BehaviorCollection on more than one object at a time. + + + Cannot host the same TriggerCollection on more than one object at a time. + + + + A helper function to take the place of FrameworkElement.IsLoaded, as this property is not available in Silverlight. + + The element of interest. + True if the element has been loaded; otherwise, False. + + + + Executes a specified ICommand when invoked. + + + + + Represents an attachable object that encapsulates a unit of functionality. + + The type to which this action can be attached. + + + + Represents an attachable object that encapsulates a unit of functionality. + + This is an infrastructure class. Action authors should derive from TriggerAction<T> instead of this class. + + + + Attempts to invoke the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Attaches to the specified object. + + The object to attach to. + Cannot host the same TriggerAction on more than one object at a time. + dependencyObject does not satisfy the TriggerAction type constraint. + + + + Detaches this instance from its associated object. + + + + + Gets or sets a value indicating whether this action will run when invoked. This is a dependency property. + + + True if this action will be run when invoked; otherwise, False. + + + + + Gets the object to which this action is attached. + + The associated object. + + + + Gets the associated object type constraint. + + The associated object type constraint. + + + + Gets or sets a value indicating whether this instance is attached. + + True if this instance is attached; otherwise, False. + + + + Gets the associated object. + + The associated object. + + + + Initializes a new instance of the class. + + + + + Gets the object to which this is attached. + + The associated object. + + + + Gets the associated object type constraint. + + The associated object type constraint. + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Gets or sets the name of the command this action should invoke. + + The name of the command this action should invoke. + This property will be superseded by the Command property if both are set. + + + + Gets or sets the command this action should invoke. This is a dependency property. + + The command to execute. + This property will take precedence over the CommandName property if both are set. + + + + Gets or sets the command parameter. This is a dependency property. + + The command parameter. + This is the value passed to ICommand.CanExecute and ICommand.Execute. + + + + Provides data about which objects were affected when resolving a name change. + + + + + Helper class to handle the logic of resolving a TargetName into a Target element + based on the context provided by a host element. + + + + + Attempts to update the resolved object from the name within the context of the namescope reference element. + + The old resolved object. + + Resets the existing target and attempts to resolve the current TargetName from the + context of the current Host. If it cannot resolve from the context of the Host, it will + continue up the visual tree until it resolves. If it has not resolved it when it reaches + the root, it will set the Target to null and write a warning message to Debug output. + + + + + Occurs when the resolved element has changed. + + + + + Gets or sets the name of the element to attempt to resolve. + + The name to attempt to resolve. + + + + The resolved object. Will return the reference element if TargetName is null or empty, or if a resolve has not been attempted. + + + + + Gets or sets the reference element from which to perform the name resolution. + + The reference element. + + + + Gets or sets a value indicating whether the reference element load is pending. + + + True if [pending reference element load]; otherwise, False. + + + If the Host has not been loaded, the name will not be resolved. + In that case, delay the resolution and track that fact with this property. + + + + + Represents an action that can be targeted to affect an object other than its AssociatedObject. + + The type constraint on the target. + + TargetedTriggerAction extends TriggerAction to add knowledge of another element than the one it is attached to. + This allows a user to invoke the action on an element other than the one it is attached to in response to a + trigger firing. Override OnTargetChanged to hook or unhook handlers on the target element, and OnAttached/OnDetaching + for the associated element. The type of the Target element can be constrained by the generic type parameter. If + you need control over the type of the AssociatedObject, set a TypeConstraintAttribute on your derived type. + + + + + Represents an action that can be targeted to affect an object other than its AssociatedObject. + + This is an infrastructure class. Action authors should derive from TargetedTriggerAction<T> instead of this class. + + + + Called when the target changes. + + The old target. + The new target. + This function should be overriden in derived classes to hook and unhook functionality from the changing source objects. + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Gets or sets the target object. If TargetObject is not set, the target will look for the object specified by TargetName. If an element referred to by TargetName cannot be found, the target will default to the AssociatedObject. This is a dependency property. + + The target object. + + + + Gets or sets the name of the object this action targets. If Target is set, this property is ignored. If Target is not set and TargetName is not set or cannot be resolved, the target will default to the AssociatedObject. This is a dependency property. + + The name of the target object. + + + + Gets the target object. If TargetObject is set, returns TargetObject. Else, if TargetName is not set or cannot be resolved, defaults to the AssociatedObject. + + The target object. + In general, this property should be used in place of AssociatedObject in derived classes. + The Target element does not satisfy the type constraint. + + + + Gets the associated object type constraint. + + The associated object type constraint. + Define a TypeConstraintAttribute on a derived type to constrain the types it may be attached to. + + + + Gets the target type constraint. + + The target type constraint. + + + + Initializes a new instance of the class. + + + + + Called when the target property changes. + + Override this to hook and unhook functionality on the specified Target, rather than the AssociatedObject. + The old target. + The new target. + + + + Gets the target object. If TargetName is not set or cannot be resolved, defaults to the AssociatedObject. + + The target. + In general, this property should be used in place of AssociatedObject in derived classes. + + + + Represents a collection of actions with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + + Represents an object that can invoke actions conditionally. + + The type to which this trigger can be attached. + + TriggerBase is the base class for controlling actions. Override OnAttached() and + OnDetaching() to hook and unhook handlers on the AssociatedObject. You may + constrain the types that a derived TriggerBase may be attached to by specifying + the generic parameter. Call InvokeActions() to fire all Actions associated with + this TriggerBase. + + + + + Initializes a new instance of the class. + + + + + Gets the object to which the trigger is attached. + + The associated object. + + + + Gets the type constraint of the associated object. + + The associated object type constraint. + + + + Argument passed to PreviewInvoke event. Assigning Cancelling to True will cancel the invoking of the trigger. + + This is an infrastructure class. Behavior attached to a trigger base object can add its behavior as a listener to TriggerBase.PreviewInvoke. + + + + Represents a collection of triggers with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + + Specifies type constraints on the AssociatedObject of TargetedTriggerAction and EventTriggerBase. + + + + + Initializes a new instance of the class. + + The constraint type. + + + + Gets the constraint type. + + The constraint type. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Cannot set the same BehaviorCollection on multiple objects.. + + + + + Looks up a localized string similar to An instance of a Behavior cannot be attached to more than one object at a time.. + + + + + Looks up a localized string similar to Cannot host an instance of a TriggerAction in multiple TriggerCollections simultaneously. Remove it from one TriggerCollection before adding it to another.. + + + + + Looks up a localized string similar to Cannot set the same TriggerCollection on multiple objects.. + + + + + Looks up a localized string similar to An instance of a trigger cannot be attached to more than one object at a time.. + + + + + Looks up a localized string similar to The command "{0}" does not exist or is not publicly exposed on {1}.. + + + + + Looks up a localized string similar to "{0}" is not a valid type for the TriggerType parameter. Make sure "{0}" derives from TriggerBase.. + + + + + Looks up a localized string similar to Cannot add the same instance of "{0}" to a "{1}" more than once.. + + + + + Looks up a localized string similar to The event "{0}" on type "{1}" has an incompatible signature. Make sure the event is public and satisfies the EventHandler delegate.. + + + + + Looks up a localized string similar to Cannot find an event named "{0}" on type "{1}".. + + + + + Looks up a localized string similar to An object of type "{0}" cannot have a {3} property of type "{1}". Instances of type "{0}" can have only a {3} property of type "{2}".. + + + + + Looks up a localized string similar to Cannot attach type "{0}" to type "{1}". Instances of type "{0}" can only be attached to objects of type "{2}".. + + + + + Looks up a localized string similar to Unable to resolve TargetName "{0}".. + + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Extensions.dll b/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Extensions.dll new file mode 100644 index 0000000..147d477 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Extensions.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Extensions.pri b/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Extensions.pri new file mode 100644 index 0000000..b882b24 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Extensions.pri differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Extensions.xml b/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Extensions.xml new file mode 100644 index 0000000..f9b12a5 --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Extensions.xml @@ -0,0 +1,336 @@ + + + + Caliburn.Micro.Extensions + + + + + An implementation of the using Callisto + + + + + The settings window manager. + + + + + Shows a settings flyout panel for the specified model. + + The settings view model. + The settings command label. + The optional dialog settings. + + + + Shows a settings flyout panel for the specified model. + + The settings view model. + The settings command label. + The optional dialog settings. + + + + Represents a flyout command registered with the . + + + + + Represents a command registered with the + + + + + Initializes a new instance of the class. + + The label. + + + + Called when the command was selected in the Settings Charm. + + + + + Gets the label. + + + + + Initializes a new instance of the class. + + + The label to use in the settings charm. + The view model to display. + Additional settings to pass to the . + + + + Called when the command was selected in the Settings Charm. + + + + + The view model to display. + + + + + Additional settings to pass to the . + + + + + Service that handles the Settings Charm. + + + + + Displays the Settings Charm pane to the user. + + + + + Registers a flyout command with the service. + + The commands view model. + The command label. + The optional flyout view settings. + + + + Registers a URI command with the service. + + The label. + The URI. + + + + Registers a settings command with the service. + + The command to register. + + + + Service that handles sharing data with the Share Charm. + + + + + Programmatically initiates the user interface for sharing content with another app. + + + + + Denotes a class which is aware of sharing data with the Share charm. + + + + + Called when a share operation starts. + + The data request. + + + + Extension methods for + + + + + Navigates to the specified content. + + The navigation service. + The object parameter to pass to the target. + The to navigate to. + Whether or not navigation succeeded. + + + + Navigate to the specified model type. + + The navigation service. + The model type to navigate to. + The object parameter to pass to the target. + Whether or not navigation succeeded. + + + + Navigate to the specified model type. + + The navigation service. + The object parameter to pass to the target. + The model type to navigate to. + Whether or not navigation succeeded. + + + + Creates a Uri builder based on a view model type. + + The type of the view model. + The navigation service. + The builder. + + + + Serivce tha handles the settings charm + + + + + Initializes a new instance of the class. + + The window manager used to open the settings views. + + + + Displays the Settings Charm pane to the user. + + + + + Registers a flyout command with the service. + + The commands view model. + The command label. + The optional flyout view settings. + + + + Registers a URI command with the service. + + The label. + The URI. + + + + Registers a settings command with the service. + + The command to register. + + + + Occurs when the user opens the settings pane. + + The sender. + The instance containing the event data. + + + + Called when a settings command was selected in the Settings Charm. + + The settings command. + + + + Service that handles the event. + + + + + Initializes a new instance of the class. + + + + + Programmatically initiates the user interface for sharing content with another app. + + + + + Accepts the share request and forwards it to the view model. + + The sender. + The instance containing the event data. + + + + Determines the current view, checks for view first with frame and then view mode first with a shell view. + + The current view + + + + Builds a Uri in a strongly typed fashion, based on a ViewModel. + + + + + + Adds a query string parameter to the Uri. + + The type of the value. + The property. + The property value. + Itself + + + + Attaches a navigation servies to this builder. + + The navigation service. + Itself + + + + Navigates to the Uri represented by this builder. + + + + + Builds the URI. + + A uri constructed with the current configuration information. + + + + Represents a URI command registered with the . + + + + + Initializes a new instance of the class. + + The label. + The URI. + + + + Called when the command was selected in the Settings Charm. + + + + + Gets the URI. + + + + + A custom IoC container which integrates with WinRT and properly registers all Caliburn.Micro services. + + + + + Registers the Caliburn.Micro WinRT services with the container. + + + + + Registers the Caliburn.Micro navigation service with the container. + + The application root frame. + if set to true [treat view as loaded]. + + + + Registers the Caliburn.Micro sharing service with the container. + + + + + Registers the Caliburn.Micro settings service with the container. + + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Platform.dll b/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Platform.dll new file mode 100644 index 0000000..c5cdc39 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Platform.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Platform.pri b/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Platform.pri new file mode 100644 index 0000000..fcabfaa Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Platform.pri differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Platform.xml b/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Platform.xml new file mode 100644 index 0000000..6ccc215 --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/win8/Caliburn.Micro.Platform.xml @@ -0,0 +1,1948 @@ + + + + Caliburn.Micro.Platform + + + + + A host for action related attached properties. + + + + + A property definition representing the target of an . The DataContext of the element will be set to this instance. + + + + + A property definition representing the target of an . The DataContext of the element is not set to this instance. + + + + + Sets the target of the . + + The element to attach the target to. + The target for instances of . + + + + Gets the target for instances of . + + The element to which the target is attached. + The target for instances of + + + + Sets the target of the . + + The element to attach the target to. + The target for instances of . + + The DataContext will not be set. + + + + + Gets the target for instances of . + + The element to which the target is attached. + The target for instances of + + + + Checks if the -Target was set. + + DependencyObject to check + True if Target or TargetWithoutContext was set on + + + + Uses the action pipeline to invoke the method. + + The object instance to invoke the method on. + The name of the method to invoke. + The view. + The source of the invocation. + The event args. + The method parameters. + + + + The context used during the execution of an Action or its guard. + + + + + Determines whether the action can execute. + + Returns true if the action can execute, false otherwise. + + + + Any event arguments associated with the action's invocation. + + + + + The actual method info to be invoked. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + The message being executed. + + + + + The source from which the message originates. + + + + + The instance on which the action is invoked. + + + + + The view associated with the target. + + + + + Gets or sets additional data needed to invoke the action. + + The data key. + Custom data associated with the context. + + + + Called when the execution context is disposed + + + + + Used to send a message from the UI to a presentation model class, indicating that a particular Action should be invoked. + + + + + Indicates that a message is parameterized. + + + + + Represents the parameters of a message. + + + + + Causes the action invocation to "double check" if the action should be invoked by executing the guard immediately before hand. + + 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. + + + + Causes the action to throw if it cannot locate the target or the method at invocation time. + + True by default. + + + + Represents the method name of an action message. + + + + + Represents the parameters of an action message. + + + + + Creates an instance of . + + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Forces an update of the UI's Enabled/Disabled state based on the the preconditions associated with the method. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Invokes the action using the specified + + + + + Applies an availability effect, such as IsEnabled, to an element. + + Returns a value indicating whether or not the action is available. + + + + Finds the method on the target matching the specified message. + + The target. + The message. + The matching method, if available. + + + + Sets the target, method and view on the context. Uses a bubbling strategy by default. + + + + + Prepares the action execution context for use. + + + + + Try to find a candidate for guard function, having: + - a name in the form "CanXXX" + - no generic parameters + - a bool return type + - no parameters or a set of parameters corresponding to the action method + + The execution context + A MethodInfo, if found; null otherwise + + + + Gets or sets the name of the method to be invoked on the presentation model class. + + The name of the method. + + + + Gets the parameters to pass as part of the method invocation. + + The parameters. + + + + Occurs before the message detaches from the associated object. + + + + + A source of assemblies that are inspectable by the framework. + + + + + The singleton instance of the AssemblySource used by the framework. + + + + + Finds a type which matches one of the elements in the sequence of names. + + + + + A caching subsystem for . + + + + + Extracts the types from the spezified assembly for storing in the cache. + + + + + Installs the caching subsystem. + + + + + Hosts dependency properties for binding. + + + + + Allows binding on an existing view. Use this on root UserControls, Pages and Windows; not in a DataTemplate. + + + + + Allows binding on an existing view without setting the data context. Use this from within a DataTemplate. + + + + + Gets the model to bind to. + + The dependency object to bind to. + The model. + + + + Sets the model to bind to. + + The dependency object to bind to. + The model. + + + + Gets the model to bind to. + + The dependency object to bind to. + The model. + + + + Sets the model to bind to. + + The dependency object to bind to. + The model. + + + + Allows application of conventions at design-time. + + + + + Gets whether or not conventions are being applied at design-time. + + The ui to apply conventions to. + Whether or not conventions are applied. + + + + Sets whether or not do bind conventions at design-time. + + The ui to apply conventions to. + Whether or not to apply conventions. + + + + Provides methods for searching a given scope for named elements. + + + + + Searches through the list of named elements looking for a case-insensitive match. + + The named elements to search through. + The name to search for. + The named element or null if not found. + + + + Adds a child resolver. + + The type filter. + The resolver. + + + + Removes a child resolver. + + The resolver to remove. + true, when the resolver was (found and) removed. + + + + Gets all the instances with names in the scope. + + Named instances in the provided scope. + Pass in a and receive a list of named instances in the same scope. + + + + Finds a set of named instances in each hop in a . + + + Searches all the elements in the parameter as well as the visual children of + each of these elements, the , the HeaderedContentControl.Header, + the , or the HeaderedItemsControl.Header, if any are found. + + + + + Finds a path of dependency objects which traces through visual anscestry until a root which is , + a , a Page with a dependency object Page.ContentProperty value, + a dependency object with set to . + and are included in the resulting in order to track which item + in an items control we are scoped to. + + + + + Maintains a connection in the visual tree of dependency objects in order to record a route through it. + + + + + Adds a segment to the route. + + The source dependency object. + The target dependency object. + + + + Tries to get a target dependency object given a source. + + The possible beginning of a route segment (hop). + The target of a route segment (hop). + if had a target recorded; otherwise. + + + + Gets or sets the starting point of the route. + + + + + An which converts to . + + + + + Converts a boolean value to a value. + + The value produced by the binding source. + The type of the binding target property. + The converter parameter to use. + The language to use in the converter. + + A converted value. If the method returns null, the valid null value is used. + + + + + Converts a value value to a boolean value. + + The value that is produced by the binding target. + The type to convert to. + The converter parameter to use. + The language to use in the converter. + + A converted value. If the method returns null, the valid null value is used. + + + + + Helper class when splitting strings + + + + + Splits a string with a chosen separator. + If a substring is contained in [...] it will not be splitted. + + The message to split + The separator to use when splitting + + + + + Splits a string with , as separator. + Does not split within {},[],() + + The string to split + + + + + A implementation for the XAML platfrom. + + + + + Initializes a new instance of the class. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + + Executes the action on the UI thread. + + The action to execute. + + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + + The root element that was not created by the framework. + + + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + + An to close the view model. + + + + + + Indicates whether or not the framework is in design-time mode. + + + + + Used to configure the conventions used by the framework to apply bindings and create actions. + + + + + Converters to/from . + + + + + Indicates whether or not static properties should be included during convention name matching. + + False by default. + + + + Indicates whether or not the Content of ContentControls should be overwritten by conventional bindings. + + False by default. + + + + The default DataTemplate used for ItemsControls when required. + + + + + The default DataTemplate used for Headered controls when required. + + + + + Changes the provided word from a plural form to a singular form. + + + + + Derives the SelectedItem property name. + + + + + Creates a binding and sets it on the element, applying the appropriate conventions. + + + + + + + + + + + Applies the appropriate binding mode to the binding. + + + + + Determines whether or not and what type of validation to enable on the binding. + + + + + Determines whether a value converter is is needed and applies one to the binding. + + + + + Determines whether a custom string format is needed and applies it to the binding. + + + + + Determines whether a custom update source trigger should be applied to the binding. + + + + + Adds an element convention. + + The type of element. + The default property for binding conventions. + The default property for action parameters. + The default event to trigger actions. + + + + Adds an element convention. + + + + + + Gets an element convention for the provided element type. + + The type of element to locate the convention for. + The convention if found, null otherwise. + Searches the class hierarchy for conventions. + + + + Determines whether a particular dependency property already has a binding on the provided element. + + + + + Creates a binding and sets it on the element, guarding against pre-existing bindings. + + + + + Creates a binding and set it on the element, guarding against pre-existing bindings and pre-existing values. + + + + + + + + + + + + Attempts to apply the default item template to the items control. + + The items control. + The collection property. + + + + Configures the selected item convention. + + The element that has a SelectedItem property. + The SelectedItem property. + The view model type. + The property path. + + + + Configures the SelectedItem binding for matched selection path. + + The element that has a SelectedItem property. + The SelectedItem property. + The view model type. + The property path. + The binding to configure. + A bool indicating whether to apply binding + + + + Applies a header template based on + + + + + + + + + Gets a property by name, ignoring case and searching all interfaces. + + The type to inspect. + The property to search for. + The property or null if not found. + + + + Represents the conventions for a particular element type. + + + + + The type of element to which the conventions apply. + + + + + Gets the default property to be used in binding conventions. + + + + + The default trigger to be used when wiring actions on this element. + + + + + The default property to be used for parameters of this type in actions. + + + + + Applies custom conventions for elements of this type. + + Pass the view model type, property path, property instance, framework element and its convention. + + + + Generic extension methods used by the framework. + + + + + Get's the name of the assembly. + + The assembly. + The assembly's name. + + + + Gets all the attributes of a particular type. + + The type of attributes to get. + The member to inspect for attributes. + Whether or not to search for inherited attributes. + The list of attributes found. + + + + Gets a collection of the public types defined in this assembly that are visible outside the assembly. + + The assembly. + A collection of the public types defined in this assembly that are visible outside the assembly. + + + + + Returns a value that indicates whether the specified type can be assigned to the current type. + + The target type + The type to check. + true if the specified type can be assigned to this type; otherwise, false. + + + + Gets the value for a key. If the key does not exist, return default(TValue); + + The type of the keys in the dictionary. + The type of the values in the dictionary. + The dictionary to call this method on. + The key to look up. + The key value. default(TValue) if this key is not in the dictionary. + + + + Host's attached properties related to routed UI messaging. + + + + + Places a message handler on this element. + + The element. + The message handler. + + + + Gets the message handler for this element. + + The element. + The message handler. + + + + A property definition representing attached triggers and messages. + + + + + Sets the attached triggers and messages. + + The element to attach to. + The parsable attachment text. + + + + Gets the attached triggers and messages. + + The element that was attached to. + The parsable attachment text. + + + + A service that is capable of properly binding values to a method's parameters and creating instances of . + + + + + The special parameter values recognized by the message binder along with their resolvers. + + + + + 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. + + + + + Determines the parameters that a method should be invoked with. + + The action execution context. + The parameters required to complete the invocation. + The actual parameter values. + + + + Transforms the textual parameter into the actual parameter. + + + + + Coerces the provided value to the destination type. + + The destination type. + The provided value. + An optional context value which can be used during conversion. + The coerced value. + + + + Gets the default value for a type. + + The type. + The default value. + + + + Class for managing the list of rules for doing name transformation. + + + + + Adds a transform using a single replacement value and a global filter pattern. + + Regular expression pattern for replacing text + The replacement value. + Regular expression pattern for global filtering + + + + Adds a transform using a list of replacement values and a global filter pattern. + + Regular expression pattern for replacing text + The list of replacement values + Regular expression pattern for global filtering + + + + Gets the list of transformations for a given name. + + The name to transform into the resolved name list + The transformed names. + + + + Gets the list of transformations for a given name. + + The name to transform into the resolved name list + A function to do a transform on each item in the ReplaceValueList prior to applying the regular expression transform + The transformed names. + + + + Flag to indicate if transformations from all matched rules are returned. Otherwise, transformations from only the first matched rule are returned. + + + + + A rule that describes a name transform. + + + + + Regular expression pattern for global filtering + + + + + Regular expression pattern for replacing text + + + + + The list of replacement values + + + + + Parses text into a fully functional set of instances with . + + + + + Parses the specified message text. + + The target. + The message text. + The triggers parsed from the text. + + + + The function used to generate a trigger. + + The parameters passed to the method are the the target of the trigger and string representing the trigger. + + + + Creates an instance of by parsing out the textual dsl. + + The target of the message. + The textual message dsl. + The created message. + + + + Function used to parse a string identified as a message. + + + + + Function used to parse a string identified as a message parameter. + + + + + Creates a binding on a . + + The target to which the message is applied. + The parameter object. + The name of the element to bind to. + The path of the element to bind to. + The binding mode to use. + + + + Helper class for encoding strings to regular expression patterns + + + + + Regular expression pattern for valid name + + + + + Regular expression pattern for subnamespace (including dot) + + + + + Regular expression pattern for namespace or namespace fragment + + + + + Creates a named capture group with the specified regular expression + + Name of capture group to create + Regular expression pattern to capture + Regular expression capture group with the specified group name + + + + Converts a namespace (including wildcards) to a regular expression string + + Source namespace to convert to regular expression + Namespace converted to a regular expression + + + + Creates a capture group for a valid name regular expression pattern + + Name of capture group to create + Regular expression capture group with the specified group name + + + + Creates a capture group for a namespace regular expression pattern + + Name of capture group to create + Regular expression capture group with the specified group name + + + + Class to specify settings for configuring type mappings by the ViewLocator or ViewModelLocator + + + + + The default subnamespace for Views. Used for creating default subnamespace mappings. Defaults to "Views". + + + + + The default subnamespace for ViewModels. Used for creating default subnamespace mappings. Defaults to "ViewModels". + + + + + Flag to indicate whether or not the name of the Type should be transformed when adding a type mapping. Defaults to true. + + + + + The format string used to compose the name of a type from base name and name suffix + + + + + Flag to indicate if ViewModel names should include View suffixes (i.e. CustomerPageViewModel vs. CustomerViewModel) + + + + + List of View suffixes for which default type mappings should be created. Applies only when UseNameSuffixesInMappings = true. + Default values are "View", "Page" + + + + + The name suffix for ViewModels. Applies only when UseNameSuffixesInMappings = true. The default is "ViewModel". + + + + + Hosts attached properties related to view models. + + + + + A dependency property which allows the framework to track whether a certain element has already been loaded in certain scenarios. + + + + + A dependency property which marks an element as a name scope root. + + + + + A dependency property which allows the override of convention application behavior. + + + + + A dependency property for assigning a context to a particular portion of the UI. + + + + + A dependency property for attaching a model to the UI. + + + + + Used by the framework to indicate that this element was generated. + + + + + Executes the handler immediately if the element is loaded, otherwise wires it to the Loaded event. + + The element. + The handler. + true if the handler was executed immediately; false otherwise + + + + Executes the handler when the element is unloaded. + + The element. + The handler. + + + + Determines whether the specified is loaded. + + The element. + true if the element is loaded; otherwise, false. + + + + + Executes the handler the next time the elements's LayoutUpdated event fires. + + The element. + The handler. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + The root element that was not created by the framework. + 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. + + + + + Gets the convention application behavior. + + The element the property is attached to. + Whether or not to apply conventions. + + + + Sets the convention application behavior. + + The element to attach the property to. + Whether or not to apply conventions. + + + + Sets the model. + + The element to attach the model to. + The model. + + + + Gets the model. + + The element the model is attached to. + The model. + + + + Gets the context. + + The element the context is attached to. + The context. + + + + Sets the context. + + The element to attach the context to. + The context. + + + + A strategy for determining which view to use for a given model. + + + + + Used to transform names. + + + + + Separator used when resolving View names for context instances. + + + + + 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. + + An instance of TypeMappingConfiguration that provides the settings for configuration + + + + Adds a default type mapping using the standard namespace mapping convention + + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + 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. + + Suffix for type name. Should be "View" or synonym of "View". + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + Array of RegEx replace values for target namespaces + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + RegEx replace value for target namespace + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Retrieves the view from the IoC container or tries to create it if not found. + + + Pass the type of view as a parameter and recieve an instance of the view. + + + + + Modifies the name of the type to be used at design time. + + + + + Transforms a ViewModel type name into all of its possible View type names. Optionally accepts an instance + of context object + + Enumeration of transformed names + Arguments: + typeName = The name of the ViewModel type being resolved to its companion View. + context = An instance of the context or null. + + + + + Locates the view type based on the specified model type. + + The view. + + Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view type. + + + + + Locates the view for the specified model type. + + The view. + + Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view instance. + + + + + Locates the view for the specified model instance. + + The view. + + Pass the model instance, display location (or null) and the context (or null) as parameters and receive a view instance. + + + + + Transforms a view type into a pack uri. + + + + + When a view does not contain a code-behind file, we need to automatically call InitializeCompoent. + + The element to initialize + + + + Binds a view to a view model. + + + + + Gets or sets a value indicating whether to apply conventions by default. + + + true if conventions should be applied by default; otherwise, false. + + + + + Indicates whether or not the conventions have already been applied to the view. + + + + + Determines whether a view should have conventions applied to it. + + The view to check. + Whether or not conventions should be applied to the view. + + + + Creates data bindings on the view's controls based on the provided properties. + + Parameters include named Elements to search through and the type of view model to determine conventions for. Returns unmatched elements. + + + + Attaches instances of to the view's controls based on the provided methods. + + Parameters include the named elements to search through and the type of view model to determine conventions for. Returns unmatched elements. + + + + Allows the developer to add custom handling of named elements which were not matched by any default conventions. + + + + + Binds the specified viewModel to the view. + + Passes the the view model, view and creation context (or null for default) to use in applying binding. + + + + A strategy for determining which view model to use for a given view. + + + + + Used to transform names. + + + + + The name of the capture group used as a marker for rules that return interface types + + + + + 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. + + An instance of TypeMappingConfiguration that provides the settings for configuration + + + + Adds a default type mapping using the standard namespace mapping convention + + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + Array of RegEx replace values for target namespaces + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + RegEx replace value for target namespace + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Makes a type name into an interface name. + + The part. + + + + + Transforms a View type name into all of its possible ViewModel type names. Accepts a flag + to include or exclude interface types. + + Enumeration of transformed names + Arguments: + typeName = The name of the View type being resolved to its companion ViewModel. + includeInterfaces = Flag to indicate if interface types are included + + + + + Determines the view model type based on the specified view type. + + The view model type. + + Pass the view type and receive a view model type. Pass true for the second parameter to search for interfaces. + + + + + Locates the view model for the specified view type. + + The view model. + + Pass the view type as a parameter and receive a view model instance. + + + + + Locates the view model for the specified view instance. + + The view model. + + Pass the view instance as a parameters and receive a view model instance. + + + + + A collection that can exist as part of a behavior. + + The type of item in the attached collection. + + + + Creates an instance of + + + + + Attached the collection. + + The dependency object to attach the collection to. + + + + Detaches the collection. + + + + + Called when an item is added from the collection. + + The item that was added. + + + + Called when an item is removed from the collection. + + The item that was removed. + + + + Encapsulates the app and its available services. + + + + + Called by the bootstrapper's constructor at design time to start the framework. + + + + + Called by the bootstrapper's constructor at runtime to start the framework. + + + + + Start the framework. + + + + + Invoked when the application creates a window. + + Event data for the event. + + + + Provides an opportunity to hook into the application object. + + + + + Override to configure the framework and setup your IoC container. + + + + + Override to tell the framework where to find assemblies to inspect for views, etc. + + A list of assemblies to inspect. + + + + Override this to provide an IoC specific implementation. + + The service to locate. + The key to locate. + The located service. + + + + Override this to provide an IoC specific implementation + + The service to locate. + The located services. + + + + Override this to provide an IoC specific implementation. + + The instance to perform injection on. + + + + Override this to add custom behavior when the application transitions from Suspended state to Running state. + + The sender. + The event args. + + + + Override this to add custom behavior when the application transitions to Suspended state from some other state. + + The sender. + The event args. + + + + Override this to add custom behavior for unhandled exceptions. + + The sender. + The event args. + + + + Creates the root frame used by the application. + + The frame. + + + + Allows you to trigger the creation of the RootFrame from Configure if necessary. + + + + + Override this to register a navigation service. + + The root frame of the application. + + + + Creates the root frame and navigates to the specified view. + + The view type to navigate to. + The object parameter to pass to the target. + + + + Creates the root frame and navigates to the specified view. + + The view type to navigate to. + The object parameter to pass to the target. + + + + Locates the view model, locates the associate view, binds them and shows it as the root view. + + The view model type. + + + + Locates the view model, locates the associate view, binds them and shows it as the root view. + + The view model type. + + + + The root frame of the application. + + + + + Implemented by services that provide ( based) navigation. + + + + + Navigates to the specified content. + + The to navigate to. + Whether or not navigation succeeded. + + + + Navigates to the specified content. + + The to navigate to. + The object parameter to pass to the target. + Whether or not navigation succeeded. + + + + Navigates forward. + + + + + Navigates back. + + + + + Stores the frame navigation state in local settings if it can. + + Whether the suspension was sucessful + + + + Tries to restore the frame navigation state from local settings. + + Whether the restoration of successful. + + + + Raised after navigation. + + + + + Raised prior to navigation. + + + + + Raised when navigation fails. + + + + + Raised when navigation is stopped. + + + + + Gets or sets the data type of the current content, or the content that should be navigated to. + + + + + Gets the data type of the content that is currently displayed. + + + + + Indicates whether the navigator can navigate forward. + + + + + Indicates whether the navigator can navigate back. + + + + + A basic implementation of designed to adapt the control. + + + + + Creates an instance of . + + The frame to represent as a . + + Tells the frame adapter to assume that the view has already been loaded by the time OnNavigated is called. + This is necessary when using the TransitionFrame. + + + + + Occurs before navigation + + The event sender. + The event args. + + + + Occurs after navigation + + The event sender. + The event args. + + + + Binds the view model. + + The view. + + + + Attempts to inject query string parameters from the view into the view model. + + The view model. + The parameter. + + + + Called to check whether or not to close current instance on navigating. + + The event sender from OnNavigating event. + The event args from OnNavigating event. + + + + Navigates to the specified content. + + The to navigate to. + Whether or not navigation succeeded. + + + + Navigates to the specified content. + + The to navigate to. + The object parameter to pass to the target. + Whether or not navigation succeeded. + + + + Navigates forward. + + + + + Navigates back. + + + + + Stores the frame navigation state in local settings if it can. + + Whether the suspension was sucessful + + + + Tries to restore the frame navigation state from local settings. + + Whether the restoration of successful. + + + + Raised after navigation. + + + + + Raised prior to navigation. + + + + + Raised when navigation fails. + + + + + Raised when navigation is stopped. + + + + + Gets or sets the data type of the current content, or the content that should be navigated to. + + + + + Gets the data type of the content that is currently displayed. + + + + + Indicates whether the navigator can navigate forward. + + + + + Indicates whether the navigator can navigate back. + + + + + Represents a parameter of an . + + + + + A dependency property representing the parameter's value. + + + + + Makes the parameter aware of the that it's attached to. + + The action message. + + + + Gets or sets the value of the parameter. + + The value. + + + + Gets or sets the owner. + + + + + Implements XAML schema context concepts that support XAML parsing. + + + + + Implements XAML schema context access to underlying type mapping, based on providing a helper value that describes a type. + + The type as represented by the relevant type system or interop support type. + The schema context's implementation of the concept. + + + + Implements XAML schema context access to underlying type mapping, based on specifying a full type name. + + The name of the class for which to return a XAML type mapping. + The schema context's implementation of the IXamlType concept. + + + + Gets the set of XMLNS (XAML namespace) definitions that apply to the context. + + The set of XMLNS (XAML namespace) definitions. + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Extensions.XML b/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Extensions.XML new file mode 100644 index 0000000..435bc65 --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Extensions.XML @@ -0,0 +1,336 @@ + + + + Caliburn.Micro.Extensions + + + + + Represents a flyout command registered with the . + + + + + Represents a command registered with the + + + + + Initializes a new instance of the class. + + The label. + + + + Called when the command was selected in the Settings Charm. + + + + + Gets the label. + + + + + Initializes a new instance of the class. + + + The label to use in the settings charm. + The view model to display. + Additional settings to pass to the . + + + + Called when the command was selected in the Settings Charm. + + + + + The view model to display. + + + + + Additional settings to pass to the . + + + + + Service that handles the Settings Charm. + + + + + Displays the Settings Charm pane to the user. + + + + + Registers a flyout command with the service. + + The commands view model. + The command label. + The optional flyout view settings. + + + + Registers a URI command with the service. + + The label. + The URI. + + + + Registers a settings command with the service. + + The command to register. + + + + The settings window manager. + + + + + Shows a settings flyout panel for the specified model. + + The settings view model. + The settings command label. + The optional dialog settings. + + + + Service that handles sharing data with the Share Charm. + + + + + Programmatically initiates the user interface for sharing content with another app. + + + + + Denotes a class which is aware of sharing data with the Share charm. + + + + + Called when a share operation starts. + + The data request. + + + + Extension methods for + + + + + Navigates to the specified content. + + The navigation service. + The object parameter to pass to the target. + The to navigate to. + Whether or not navigation succeeded. + + + + Navigate to the specified model type. + + The navigation service. + The model type to navigate to. + The object parameter to pass to the target. + Whether or not navigation succeeded. + + + + Navigate to the specified model type. + + The navigation service. + The object parameter to pass to the target. + The model type to navigate to. + Whether or not navigation succeeded. + + + + Creates a Uri builder based on a view model type. + + The type of the view model. + The navigation service. + The builder. + + + + Serivce tha handles the settings charm + + + + + Initializes a new instance of the class. + + The window manager used to open the settings views. + + + + Displays the Settings Charm pane to the user. + + + + + Registers a flyout command with the service. + + The commands view model. + The command label. + The optional flyout view settings. + + + + Registers a URI command with the service. + + The label. + The URI. + + + + Registers a settings command with the service. + + The command to register. + + + + Occurs when the user opens the settings pane. + + The sender. + The instance containing the event data. + + + + Called when a settings command was selected in the Settings Charm. + + The settings command. + + + + An implementation of the using the default Windows 8.1 controls + + + + + Shows a settings flyout panel for the specified model. + + The settings view model. + The settings command label. + The optional dialog settings. + + + + Service that handles the event. + + + + + Initializes a new instance of the class. + + + + + Programmatically initiates the user interface for sharing content with another app. + + + + + Accepts the share request and forwards it to the view model. + + The sender. + The instance containing the event data. + + + + Determines the current view, checks for view first with frame and then view mode first with a shell view. + + The current view + + + + Builds a Uri in a strongly typed fashion, based on a ViewModel. + + + + + + Adds a query string parameter to the Uri. + + The type of the value. + The property. + The property value. + Itself + + + + Attaches a navigation servies to this builder. + + The navigation service. + Itself + + + + Navigates to the Uri represented by this builder. + + + + + Builds the URI. + + A uri constructed with the current configuration information. + + + + Represents a URI command registered with the . + + + + + Initializes a new instance of the class. + + The label. + The URI. + + + + Called when the command was selected in the Settings Charm. + + + + + Gets the URI. + + + + + A custom IoC container which integrates with WinRT and properly registers all Caliburn.Micro services. + + + + + Registers the Caliburn.Micro WinRT services with the container. + + + + + Registers the Caliburn.Micro navigation service with the container. + + The application root frame. + if set to true [treat view as loaded]. + + + + Registers the Caliburn.Micro sharing service with the container. + + + + + Registers the Caliburn.Micro settings service with the container. + + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Extensions.dll b/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Extensions.dll new file mode 100644 index 0000000..b46101a Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Extensions.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Extensions.pri b/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Extensions.pri new file mode 100644 index 0000000..249e7b7 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Extensions.pri differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Platform.XML b/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Platform.XML new file mode 100644 index 0000000..4b82fd4 --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Platform.XML @@ -0,0 +1,2036 @@ + + + + Caliburn.Micro.Platform + + + + + A host for action related attached properties. + + + + + A property definition representing the target of an . The DataContext of the element will be set to this instance. + + + + + A property definition representing the target of an . The DataContext of the element is not set to this instance. + + + + + Sets the target of the . + + The element to attach the target to. + The target for instances of . + + + + Gets the target for instances of . + + The element to which the target is attached. + The target for instances of + + + + Sets the target of the . + + The element to attach the target to. + The target for instances of . + + The DataContext will not be set. + + + + + Gets the target for instances of . + + The element to which the target is attached. + The target for instances of + + + + Checks if the -Target was set. + + DependencyObject to check + True if Target or TargetWithoutContext was set on + + + + Uses the action pipeline to invoke the method. + + The object instance to invoke the method on. + The name of the method to invoke. + The view. + The source of the invocation. + The event args. + The method parameters. + + + + The context used during the execution of an Action or its guard. + + + + + Determines whether the action can execute. + + Returns true if the action can execute, false otherwise. + + + + Any event arguments associated with the action's invocation. + + + + + The actual method info to be invoked. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + The message being executed. + + + + + The source from which the message originates. + + + + + The instance on which the action is invoked. + + + + + The view associated with the target. + + + + + Gets or sets additional data needed to invoke the action. + + The data key. + Custom data associated with the context. + + + + Called when the execution context is disposed + + + + + Used to send a message from the UI to a presentation model class, indicating that a particular Action should be invoked. + + + + + Represents an attachable object that encapsulates a unit of functionality. + + + + + + The associated object property. + + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Executes the action. + + The that is passed to the action by the behavior. Generally this is or a target object. + The value of this parameter is determined by the caller. + + Returns the result of the action. + + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Gets or sets the object to which this is attached. + + + + + Indicates that a message is parameterized. + + + + + Represents the parameters of a message. + + + + + Causes the action invocation to "double check" if the action should be invoked by executing the guard immediately before hand. + + 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. + + + + Causes the action to throw if it cannot locate the target or the method at invocation time. + + True by default. + + + + Represents the method name of an action message. + + + + + Represents the parameters of an action message. + + + + + Creates an instance of . + + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Forces an update of the UI's Enabled/Disabled state based on the the preconditions associated with the method. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Invokes the action using the specified + + + + + Applies an availability effect, such as IsEnabled, to an element. + + Returns a value indicating whether or not the action is available. + + + + Finds the method on the target matching the specified message. + + The target. + The message. + The matching method, if available. + + + + Sets the target, method and view on the context. Uses a bubbling strategy by default. + + + + + Prepares the action execution context for use. + + + + + Try to find a candidate for guard function, having: + - a name in the form "CanXXX" + - no generic parameters + - a bool return type + - no parameters or a set of parameters corresponding to the action method + + The execution context + A MethodInfo, if found; null otherwise + + + + Gets or sets the name of the method to be invoked on the presentation model class. + + The name of the method. + + + + Gets the parameters to pass as part of the method invocation. + + The parameters. + + + + Occurs before the message detaches from the associated object. + + + + + A source of assemblies that are inspectable by the framework. + + + + + The singleton instance of the AssemblySource used by the framework. + + + + + Finds a type which matches one of the elements in the sequence of names. + + + + + A caching subsystem for . + + + + + Extracts the types from the spezified assembly for storing in the cache. + + + + + Installs the caching subsystem. + + + + + Hosts dependency properties for binding. + + + + + Allows binding on an existing view. Use this on root UserControls, Pages and Windows; not in a DataTemplate. + + + + + Allows binding on an existing view without setting the data context. Use this from within a DataTemplate. + + + + + Gets the model to bind to. + + The dependency object to bind to. + The model. + + + + Sets the model to bind to. + + The dependency object to bind to. + The model. + + + + Gets the model to bind to. + + The dependency object to bind to. + The model. + + + + Sets the model to bind to. + + The dependency object to bind to. + The model. + + + + Allows application of conventions at design-time. + + + + + Gets whether or not conventions are being applied at design-time. + + The ui to apply conventions to. + Whether or not conventions are applied. + + + + Sets whether or not do bind conventions at design-time. + + The ui to apply conventions to. + Whether or not to apply conventions. + + + + Provides methods for searching a given scope for named elements. + + + + + Searches through the list of named elements looking for a case-insensitive match. + + The named elements to search through. + The name to search for. + The named element or null if not found. + + + + Adds a child resolver. + + The type filter. + The resolver. + + + + Removes a child resolver. + + The resolver to remove. + true, when the resolver was (found and) removed. + + + + Gets all the instances with names in the scope. + + Named instances in the provided scope. + Pass in a and receive a list of named instances in the same scope. + + + + Finds a set of named instances in each hop in a . + + + Searches all the elements in the parameter as well as the visual children of + each of these elements, the , the HeaderedContentControl.Header, + the , or the HeaderedItemsControl.Header, if any are found. + + + + + Finds a path of dependency objects which traces through visual anscestry until a root which is , + a , a Page with a dependency object Page.ContentProperty value, + a dependency object with set to . + and are included in the resulting in order to track which item + in an items control we are scoped to. + + + + + Maintains a connection in the visual tree of dependency objects in order to record a route through it. + + + + + Adds a segment to the route. + + The source dependency object. + The target dependency object. + + + + Tries to get a target dependency object given a source. + + The possible beginning of a route segment (hop). + The target of a route segment (hop). + if had a target recorded; otherwise. + + + + Gets or sets the starting point of the route. + + + + + An which converts to . + + + + + Converts a boolean value to a value. + + The value produced by the binding source. + The type of the binding target property. + The converter parameter to use. + The language to use in the converter. + + A converted value. If the method returns null, the valid null value is used. + + + + + Converts a value value to a boolean value. + + The value that is produced by the binding target. + The type to convert to. + The converter parameter to use. + The language to use in the converter. + + A converted value. If the method returns null, the valid null value is used. + + + + + Helper class when splitting strings + + + + + Splits a string with a chosen separator. + If a substring is contained in [...] it will not be splitted. + + The message to split + The separator to use when splitting + + + + + Splits a string with , as separator. + Does not split within {},[],() + + The string to split + + + + + A collection that can exist as part of a behavior. + + The type of item in the attached collection. + + + + Interaface usually from the Interactivity SDK's included here for completeness. + + + + + Attached the specified dependency object + + + + + + Detach from the previously attached object. + + + + + The currently attached object. + + + + + Creates an instance of + + + + + Attaches the collection. + + The dependency object to attach the collection to. + + + + Detaches the collection. + + + + + Called when an item is added from the collection. + + The item that was added. + + + + Called when an item is removed from the collection. + + The item that was removed. + + + + The currently attached object. + + + + + A implementation for the XAML platfrom. + + + + + Initializes a new instance of the class. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + + Executes the action on the UI thread. + + The action to execute. + + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + + The root element that was not created by the framework. + + + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + + An to close the view model. + + + + + + Indicates whether or not the framework is in design-time mode. + + + + + Used to configure the conventions used by the framework to apply bindings and create actions. + + + + + Converters to/from . + + + + + Indicates whether or not static properties should be included during convention name matching. + + False by default. + + + + Indicates whether or not the Content of ContentControls should be overwritten by conventional bindings. + + False by default. + + + + The default DataTemplate used for ItemsControls when required. + + + + + The default DataTemplate used for Headered controls when required. + + + + + Changes the provided word from a plural form to a singular form. + + + + + Derives the SelectedItem property name. + + + + + Creates a binding and sets it on the element, applying the appropriate conventions. + + + + + + + + + + + Applies the appropriate binding mode to the binding. + + + + + Determines whether or not and what type of validation to enable on the binding. + + + + + Determines whether a value converter is is needed and applies one to the binding. + + + + + Determines whether a custom string format is needed and applies it to the binding. + + + + + Determines whether a custom update source trigger should be applied to the binding. + + + + + Adds an element convention. + + The type of element. + The default property for binding conventions. + The default property for action parameters. + The default event to trigger actions. + + + + Adds an element convention. + + + + + + Gets an element convention for the provided element type. + + The type of element to locate the convention for. + The convention if found, null otherwise. + Searches the class hierarchy for conventions. + + + + Determines whether a particular dependency property already has a binding on the provided element. + + + + + Creates a binding and sets it on the element, guarding against pre-existing bindings. + + + + + Creates a binding and set it on the element, guarding against pre-existing bindings and pre-existing values. + + + + + + + + + + + + Attempts to apply the default item template to the items control. + + The items control. + The collection property. + + + + Configures the selected item convention. + + The element that has a SelectedItem property. + The SelectedItem property. + The view model type. + The property path. + + + + Configures the SelectedItem binding for matched selection path. + + The element that has a SelectedItem property. + The SelectedItem property. + The view model type. + The property path. + The binding to configure. + A bool indicating whether to apply binding + + + + Applies a header template based on + + + + + + + + + Gets a property by name, ignoring case and searching all interfaces. + + The type to inspect. + The property to search for. + The property or null if not found. + + + + Represents the conventions for a particular element type. + + + + + The type of element to which the conventions apply. + + + + + Gets the default property to be used in binding conventions. + + + + + The default trigger to be used when wiring actions on this element. + + + + + The default property to be used for parameters of this type in actions. + + + + + Applies custom conventions for elements of this type. + + Pass the view model type, property path, property instance, framework element and its convention. + + + + Generic extension methods used by the framework. + + + + + Get's the name of the assembly. + + The assembly. + The assembly's name. + + + + Gets all the attributes of a particular type. + + The type of attributes to get. + The member to inspect for attributes. + Whether or not to search for inherited attributes. + The list of attributes found. + + + + Gets a collection of the public types defined in this assembly that are visible outside the assembly. + + The assembly. + A collection of the public types defined in this assembly that are visible outside the assembly. + + + + + Returns a value that indicates whether the specified type can be assigned to the current type. + + The target type + The type to check. + true if the specified type can be assigned to this type; otherwise, false. + + + + Gets the value for a key. If the key does not exist, return default(TValue); + + The type of the keys in the dictionary. + The type of the values in the dictionary. + The dictionary to call this method on. + The key to look up. + The key value. default(TValue) if this key is not in the dictionary. + + + + Host's attached properties related to routed UI messaging. + + + + + Places a message handler on this element. + + The element. + The message handler. + + + + Gets the message handler for this element. + + The element. + The message handler. + + + + A property definition representing attached triggers and messages. + + + + + Sets the attached triggers and messages. + + The element to attach to. + The parsable attachment text. + + + + Gets the attached triggers and messages. + + The element that was attached to. + The parsable attachment text. + + + + A service that is capable of properly binding values to a method's parameters and creating instances of . + + + + + The special parameter values recognized by the message binder along with their resolvers. + + + + + 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. + + + + + Determines the parameters that a method should be invoked with. + + The action execution context. + The parameters required to complete the invocation. + The actual parameter values. + + + + Transforms the textual parameter into the actual parameter. + + + + + Coerces the provided value to the destination type. + + The destination type. + The provided value. + An optional context value which can be used during conversion. + The coerced value. + + + + Gets the default value for a type. + + The type. + The default value. + + + + Class for managing the list of rules for doing name transformation. + + + + + Adds a transform using a single replacement value and a global filter pattern. + + Regular expression pattern for replacing text + The replacement value. + Regular expression pattern for global filtering + + + + Adds a transform using a list of replacement values and a global filter pattern. + + Regular expression pattern for replacing text + The list of replacement values + Regular expression pattern for global filtering + + + + Gets the list of transformations for a given name. + + The name to transform into the resolved name list + The transformed names. + + + + Gets the list of transformations for a given name. + + The name to transform into the resolved name list + A function to do a transform on each item in the ReplaceValueList prior to applying the regular expression transform + The transformed names. + + + + Flag to indicate if transformations from all matched rules are returned. Otherwise, transformations from only the first matched rule are returned. + + + + + A rule that describes a name transform. + + + + + Regular expression pattern for global filtering + + + + + Regular expression pattern for replacing text + + + + + The list of replacement values + + + + + Parses text into a fully functional set of instances with . + + + + + Parses the specified message text. + + The target. + The message text. + The triggers parsed from the text. + + + + The function used to generate a trigger. + + The parameters passed to the method are the the target of the trigger and string representing the trigger. + + + + Creates an instance of by parsing out the textual dsl. + + The target of the message. + The textual message dsl. + The created message. + + + + Function used to parse a string identified as a message. + + + + + Function used to parse a string identified as a message parameter. + + + + + Creates a binding on a . + + The target to which the message is applied. + The parameter object. + The name of the element to bind to. + The path of the element to bind to. + The binding mode to use. + + + + Helper class for encoding strings to regular expression patterns + + + + + Regular expression pattern for valid name + + + + + Regular expression pattern for subnamespace (including dot) + + + + + Regular expression pattern for namespace or namespace fragment + + + + + Creates a named capture group with the specified regular expression + + Name of capture group to create + Regular expression pattern to capture + Regular expression capture group with the specified group name + + + + Converts a namespace (including wildcards) to a regular expression string + + Source namespace to convert to regular expression + Namespace converted to a regular expression + + + + Creates a capture group for a valid name regular expression pattern + + Name of capture group to create + Regular expression capture group with the specified group name + + + + Creates a capture group for a namespace regular expression pattern + + Name of capture group to create + Regular expression capture group with the specified group name + + + + Class to specify settings for configuring type mappings by the ViewLocator or ViewModelLocator + + + + + The default subnamespace for Views. Used for creating default subnamespace mappings. Defaults to "Views". + + + + + The default subnamespace for ViewModels. Used for creating default subnamespace mappings. Defaults to "ViewModels". + + + + + Flag to indicate whether or not the name of the Type should be transformed when adding a type mapping. Defaults to true. + + + + + The format string used to compose the name of a type from base name and name suffix + + + + + Flag to indicate if ViewModel names should include View suffixes (i.e. CustomerPageViewModel vs. CustomerViewModel) + + + + + List of View suffixes for which default type mappings should be created. Applies only when UseNameSuffixesInMappings = true. + Default values are "View", "Page" + + + + + The name suffix for ViewModels. Applies only when UseNameSuffixesInMappings = true. The default is "ViewModel". + + + + + Hosts attached properties related to view models. + + + + + A dependency property which allows the framework to track whether a certain element has already been loaded in certain scenarios. + + + + + A dependency property which marks an element as a name scope root. + + + + + A dependency property which allows the override of convention application behavior. + + + + + A dependency property for assigning a context to a particular portion of the UI. + + + + + A dependency property for attaching a model to the UI. + + + + + Used by the framework to indicate that this element was generated. + + + + + Executes the handler immediately if the element is loaded, otherwise wires it to the Loaded event. + + The element. + The handler. + true if the handler was executed immediately; false otherwise + + + + Executes the handler when the element is unloaded. + + The element. + The handler. + + + + Determines whether the specified is loaded. + + The element. + true if the element is loaded; otherwise, false. + + + + + Executes the handler the next time the elements's LayoutUpdated event fires. + + The element. + The handler. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + The root element that was not created by the framework. + 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. + + + + + Gets the convention application behavior. + + The element the property is attached to. + Whether or not to apply conventions. + + + + Sets the convention application behavior. + + The element to attach the property to. + Whether or not to apply conventions. + + + + Sets the model. + + The element to attach the model to. + The model. + + + + Gets the model. + + The element the model is attached to. + The model. + + + + Gets the context. + + The element the context is attached to. + The context. + + + + Sets the context. + + The element to attach the context to. + The context. + + + + A strategy for determining which view to use for a given model. + + + + + Used to transform names. + + + + + Separator used when resolving View names for context instances. + + + + + 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. + + An instance of TypeMappingConfiguration that provides the settings for configuration + + + + Adds a default type mapping using the standard namespace mapping convention + + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + 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. + + Suffix for type name. Should be "View" or synonym of "View". + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + Array of RegEx replace values for target namespaces + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + RegEx replace value for target namespace + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Retrieves the view from the IoC container or tries to create it if not found. + + + Pass the type of view as a parameter and recieve an instance of the view. + + + + + Modifies the name of the type to be used at design time. + + + + + Transforms a ViewModel type name into all of its possible View type names. Optionally accepts an instance + of context object + + Enumeration of transformed names + Arguments: + typeName = The name of the ViewModel type being resolved to its companion View. + context = An instance of the context or null. + + + + + Locates the view type based on the specified model type. + + The view. + + Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view type. + + + + + Locates the view for the specified model type. + + The view. + + Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view instance. + + + + + Locates the view for the specified model instance. + + The view. + + Pass the model instance, display location (or null) and the context (or null) as parameters and receive a view instance. + + + + + Transforms a view type into a pack uri. + + + + + When a view does not contain a code-behind file, we need to automatically call InitializeCompoent. + + The element to initialize + + + + Binds a view to a view model. + + + + + Gets or sets a value indicating whether to apply conventions by default. + + + true if conventions should be applied by default; otherwise, false. + + + + + Indicates whether or not the conventions have already been applied to the view. + + + + + Determines whether a view should have conventions applied to it. + + The view to check. + Whether or not conventions should be applied to the view. + + + + Creates data bindings on the view's controls based on the provided properties. + + Parameters include named Elements to search through and the type of view model to determine conventions for. Returns unmatched elements. + + + + Attaches instances of to the view's controls based on the provided methods. + + Parameters include the named elements to search through and the type of view model to determine conventions for. Returns unmatched elements. + + + + Allows the developer to add custom handling of named elements which were not matched by any default conventions. + + + + + Binds the specified viewModel to the view. + + Passes the the view model, view and creation context (or null for default) to use in applying binding. + + + + A strategy for determining which view model to use for a given view. + + + + + Used to transform names. + + + + + The name of the capture group used as a marker for rules that return interface types + + + + + 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. + + An instance of TypeMappingConfiguration that provides the settings for configuration + + + + Adds a default type mapping using the standard namespace mapping convention + + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + Array of RegEx replace values for target namespaces + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + RegEx replace value for target namespace + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Makes a type name into an interface name. + + The part. + + + + + Transforms a View type name into all of its possible ViewModel type names. Accepts a flag + to include or exclude interface types. + + Enumeration of transformed names + Arguments: + typeName = The name of the View type being resolved to its companion ViewModel. + includeInterfaces = Flag to indicate if interface types are included + + + + + Determines the view model type based on the specified view type. + + The view model type. + + Pass the view type and receive a view model type. Pass true for the second parameter to search for interfaces. + + + + + Locates the view model for the specified view type. + + The view model. + + Pass the view type as a parameter and receive a view model instance. + + + + + Locates the view model for the specified view instance. + + The view model. + + Pass the view instance as a parameters and receive a view model instance. + + + + + Encapsulates the app and its available services. + + + + + Called by the bootstrapper's constructor at design time to start the framework. + + + + + Called by the bootstrapper's constructor at runtime to start the framework. + + + + + Start the framework. + + + + + Invoked when the application creates a window. + + Event data for the event. + + + + Provides an opportunity to hook into the application object. + + + + + Override to configure the framework and setup your IoC container. + + + + + Override to tell the framework where to find assemblies to inspect for views, etc. + + A list of assemblies to inspect. + + + + Override this to provide an IoC specific implementation. + + The service to locate. + The key to locate. + The located service. + + + + Override this to provide an IoC specific implementation + + The service to locate. + The located services. + + + + Override this to provide an IoC specific implementation. + + The instance to perform injection on. + + + + Override this to add custom behavior when the application transitions from Suspended state to Running state. + + The sender. + The event args. + + + + Override this to add custom behavior when the application transitions to Suspended state from some other state. + + The sender. + The event args. + + + + Override this to add custom behavior for unhandled exceptions. + + The sender. + The event args. + + + + Creates the root frame used by the application. + + The frame. + + + + Allows you to trigger the creation of the RootFrame from Configure if necessary. + + + + + Override this to register a navigation service. + + The root frame of the application. + + + + Creates the root frame and navigates to the specified view. + + The view type to navigate to. + The object parameter to pass to the target. + + + + Creates the root frame and navigates to the specified view. + + The view type to navigate to. + The object parameter to pass to the target. + + + + Locates the view model, locates the associate view, binds them and shows it as the root view. + + The view model type. + + + + Locates the view model, locates the associate view, binds them and shows it as the root view. + + The view model type. + + + + The root frame of the application. + + + + + Implemented by services that provide ( based) navigation. + + + + + Navigates to the specified content. + + The to navigate to. + Whether or not navigation succeeded. + + + + Navigates to the specified content. + + The to navigate to. + The object parameter to pass to the target. + Whether or not navigation succeeded. + + + + Navigates forward. + + + + + Navigates back. + + + + + Stores the frame navigation state in local settings if it can. + + Whether the suspension was sucessful + + + + Tries to restore the frame navigation state from local settings. + + Whether the restoration of successful. + + + + Raised after navigation. + + + + + Raised prior to navigation. + + + + + Raised when navigation fails. + + + + + Raised when navigation is stopped. + + + + + Gets or sets the data type of the current content, or the content that should be navigated to. + + + + + Gets the data type of the content that is currently displayed. + + + + + Indicates whether the navigator can navigate forward. + + + + + Indicates whether the navigator can navigate back. + + + + + Gets a collection of PageStackEntry instances representing the backward navigation history of the Frame. + + + + + Gets a collection of PageStackEntry instances representing the forward navigation history of the Frame. + + + + + A basic implementation of designed to adapt the control. + + + + + Creates an instance of . + + The frame to represent as a . + + Tells the frame adapter to assume that the view has already been loaded by the time OnNavigated is called. + This is necessary when using the TransitionFrame. + + + + + Occurs before navigation + + The event sender. + The event args. + + + + Occurs after navigation + + The event sender. + The event args. + + + + Binds the view model. + + The view. + + + + Attempts to inject query string parameters from the view into the view model. + + The view model. + The parameter. + + + + Called to check whether or not to close current instance on navigating. + + The event sender from OnNavigating event. + The event args from OnNavigating event. + + + + Navigates to the specified content. + + The to navigate to. + Whether or not navigation succeeded. + + + + Navigates to the specified content. + + The to navigate to. + The object parameter to pass to the target. + Whether or not navigation succeeded. + + + + Navigates forward. + + + + + Navigates back. + + + + + Stores the frame navigation state in local settings if it can. + + Whether the suspension was sucessful + + + + Tries to restore the frame navigation state from local settings. + + Whether the restoration of successful. + + + + Raised after navigation. + + + + + Raised prior to navigation. + + + + + Raised when navigation fails. + + + + + Raised when navigation is stopped. + + + + + Gets or sets the data type of the current content, or the content that should be navigated to. + + + + + Gets the data type of the content that is currently displayed. + + + + + Indicates whether the navigator can navigate forward. + + + + + Indicates whether the navigator can navigate back. + + + + + Gets a collection of PageStackEntry instances representing the backward navigation history of the Frame. + + + + + Gets a collection of PageStackEntry instances representing the forward navigation history of the Frame. + + + + + Represents a parameter of an . + + + + + A dependency property representing the parameter's value. + + + + + Makes the parameter aware of the that it's attached to. + + The action message. + + + + Gets or sets the value of the parameter. + + The value. + + + + Gets or sets the owner. + + + + + Implements XAML schema context concepts that support XAML parsing. + + + + + Implements XAML schema context access to underlying type mapping, based on providing a helper value that describes a type. + + The type as represented by the relevant type system or interop support type. + The schema context's implementation of the concept. + + + + Implements XAML schema context access to underlying type mapping, based on specifying a full type name. + + The name of the class for which to return a XAML type mapping. + The schema context's implementation of the IXamlType concept. + + + + Gets the set of XMLNS (XAML namespace) definitions that apply to the context. + + The set of XMLNS (XAML namespace) definitions. + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Platform.dll b/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Platform.dll new file mode 100644 index 0000000..4b84f5a Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Platform.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Platform.pri b/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Platform.pri new file mode 100644 index 0000000..75a5ac7 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/win81/Caliburn.Micro.Platform.pri differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/win81/Microsoft.Xaml.Interactions.dll b/packages/Caliburn.Micro.2.0.0/lib/win81/Microsoft.Xaml.Interactions.dll new file mode 100644 index 0000000..f66c6f1 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/win81/Microsoft.Xaml.Interactions.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/win81/Microsoft.Xaml.Interactivity.dll b/packages/Caliburn.Micro.2.0.0/lib/win81/Microsoft.Xaml.Interactivity.dll new file mode 100644 index 0000000..eb8a3aa Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/win81/Microsoft.Xaml.Interactivity.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/wp8/Caliburn.Micro.Extensions.dll b/packages/Caliburn.Micro.2.0.0/lib/wp8/Caliburn.Micro.Extensions.dll new file mode 100644 index 0000000..85715cd Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/wp8/Caliburn.Micro.Extensions.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/wp8/Caliburn.Micro.Extensions.xml b/packages/Caliburn.Micro.2.0.0/lib/wp8/Caliburn.Micro.Extensions.xml new file mode 100644 index 0000000..c956c35 --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/wp8/Caliburn.Micro.Extensions.xml @@ -0,0 +1,762 @@ + + + + Caliburn.Micro.Extensions + + + + + Stores data in the application settings. + + + + + Implemented by classes that know how to store data. + + + + + Indicates what storage modes this mechanism provides. + + The storage mode to check. + Whether or not it is supported. + + + + Begins the storage transaction. + + + + + Stores the value with the specified key. + + The key. + The data. + + + + Ends the storage transaction. + + + + + Tries to get the data previously stored with the specified key. + + The key. + The value. + true if found; false otherwise + + + + Deletes the data with the specified key. + + The key. + + + + Clears the data stored in the last storage transaction. + + + + + Registers service with the storage mechanism as a singleton. + + The service. + The key. + The implementation. + + + + Initializes a new instance of the class. + + The container. + + + + Indicates what storage modes this mechanism provides. + + The storage mode to check. + + Whether or not it is supported. + + + + + Begins the storage transaction. + + + + + Stores the value with the specified key. + + The key. + The data. + + + + Ends the storage transaction. + + + + + Tries to get the data previously stored with the specified key. + + The key. + The value. + true if found; false otherwise + + + + Deletes the data with the specified key. + + The key. + + + + Clears the data stored in the last storage transaction. + + + + + Registers service with the storage mechanism as a singleton. + + The service. + The key. + The implementation. + + + + Defines an interface through which the storage system can communicate with an IoC container. + + + + + Registers the service as a singleton stored in the phone state. + + The service. + The phone state key. + The implementation. + + + + Registers the service as a singleton stored in the app settings. + + The service. + The app settings key. + The implementation. + + + + Occurs when a new instance is created. + + + + + Handles the storage of an object instance. + + + + + Overrided by inheritors to configure the handler for use. + + + + + Indicates whether the specified instance can be stored by this handler. + + The instance. + + + + + Saves the specified instance. + + The instance. + The mode. + + + + Restores the specified instance. + + The instance. + The mode. + + + + Gets or sets the coordinator. + + + The coordinator. + + + + + Extension methods related to navigation. + + + + + Creates a Uri builder based on a view model type. + + The type of the view model. + The navigation service. + The builder. + + + + A custom IoC container which integrates with the phone and properly registers all Caliburn.Micro services. + + + + + Registers the service as a singleton stored in the phone state. + + The service. + The phone state key. + The implementation. + + + + Registers the service as a singleton stored in the app settings. + + The service. + The app settings key. + The implementation. + + + + Registers the Caliburn.Micro services with the container. + + The root frame of the application. + if set to true [treat view as loaded]. + + + + Enable the . + + + + + Enable the . + + + + + Stores data in the phone state. + + + + + Initializes a new instance of the class. + + The container. + The phone service. + + + + Indicates what storage modes this mechanism provides. + + The storage mode to check. + + Whether or not it is supported. + + + + + Begins the storage transaction. + + + + + Stores the value with the specified key. + + The key. + The data. + + + + Ends the storage transaction. + + + + + Tries to get the data previously stored with the specified key. + + The key. + The value. + + true if found; false otherwise + + + + + Deletes the data with the specified key. + + The key. + + + + Clears the data stored in the last storage transaction. + + + + + Registers service with the storage mechanism as a singleton. + + The service. + The key. + The implementation. + + + + Service allowing to play a .wav sound effect + + + + + Plays a sound effect + + The uri of the resource containing the .wav file + + + + Default implementation, using Xna Framework. The sound effect is played without interrupting the music playback on the phone (which is required for the app certification in the WP7 Marketplace. Also note that using the Xna Framework in a WP7 Silverlight app is explicitly allowed for this very purpose. + + + + + Plays a sound effect + + The uri of the resource containing the .wav file + + + + Coordinates the saving and loading of objects based on application lifecycle events. + + + + + Initializes a new instance of the class. + + The container. + The phone service. + The storage mechanisms. + The handlers. + + + + Starts monitoring application and container events. + + + + + Stops monitoring application and container events. + + + + + Gets the storage mechanism. + + The type of storage mechanism to get. + The storage mechanism. + + + + Adds the storage mechanism. + + The storage mechanism. + + + + Adds the storage handler. + + The handler. + Itself + + + + Gets the storage handler for a paricular instance. + + The instance. + The storage handler. + + + + Saves all monitored instances according to the provided mode. + + The save mode. + + + + Restores the specified instance. + + The instance. + The restore mode. + + + + Handles the storage of a pariticular class. + + The type that this class handles. + + + + Provides a mechanism for obtaining an instance's unique id. + + The getter. + + + + Overrided by inheritors to configure the handler for use. + + + + + Instructs the handler to store the entire object graph, rather than individual properties. + + The type of the service. + The optional storage key. + The builder. + + + + Instructs the handler to store a property. + + The property. + The builder. + + + + Instructs the handler to store a child object's properties. + + The property. + The builder. + This assumes that the parent instance provides the child instance, but that the child instance's properties are handled by a unique handler. + + + + Adds a new storage instruction. + + The builder. + + + + Uses this handler to save a particular instance using instructions that support the provided mode. + + The instance. + The storage mode. + + + + Uses this handler to restore a particular instance using instructions that support the provided mode. + + The instance. + The mode. + + + + Gets or sets the coordinator. + + + The coordinator. + + + + + An instruction for saving/loading data. + + The model type. + + + + Gets or sets the owner. + + + The owner. + + + + + Gets or sets the storage mechanism. + + + The storage mechanism. + + + + + Gets or sets the persistence key. + + + The key. + + + + + Gets or sets the save action. + + + The save action. + + + + + Gets or sets the restore action. + + + The restore action. + + + + + Used to create a fluent interface for building up a storage instruction. + + + + + + Initializes a new instance of the class. + + The storage instruction. + + + + Configures the instruction with the specified behavior. + + The configuration callback. + Itself + + + + Extension methods for configuring storage instructions. + + + + + Stores the data in the transient phone State. + + The model type. + The builder. + The builder. + + + + Stores the data in the permanent ApplicationSettings. + + The model type. + The builder. + The builder. + + + + Restores the data when IActivate.Activated is raised. + + The model type. + The builder. + The builder. + + + + Restores the data after view's Loaded event is raised. + + The model type. + The builder. + The builder. + + + + Restores the data after view's LayoutUpdated event is raised. + + The model type. + The builder. + The builder. + + + + Stores the index of the Conductor's ActiveItem. + + The model type. + The handler. + The builder. + + + + The mode used to save/restore data. + + + + + Automatic Determine the Mode + + + + + Use Temporary storage. + + + + + Use Permenent storage. + + + + + Use any storage mechanism available. + + + + + A message which is published when a task completes. + + The type of the task event args. + + + + Optional state provided by the original sender. + + + + + The results of the task. + + + + + Handles messages and ensures that the property handler receives the completion message. + + + + + Initializes a new instance of the class. + + The phone service. + The event aggregator. + + + + Starts monitoring for task requests and controlling completion messages. + + + + + Stops monitoring for task requests and controlling completion messages. + + + + + Called when the task is compled. + + The sender. + The instance containing the event data. + + + + A message that is published to signify a components request for the execution of a particular task. + + + + + Optional state to be passed along to the task completion message. + + + + + The task instance. + + + + + Extension methods related to phone tasks. + + + + + Creates a task and publishes it using the . + + The task to create. + The event aggregator. + Optional configuration for the task. + Optional state to be passed along to the task completion message. + + + + Builds a Uri in a strongly typed fashion, based on a ViewModel. + + + + + + Adds a query string parameter to the Uri. + + The type of the value. + The property. + The property value. + Itself + + + + Attaches a navigation servies to this builder. + + The navigation service. + Itself + + + + Navigates to the Uri represented by this builder. + + + + + Builds the URI. + + A uri constructed with the current configuration information. + + + + Allows applications to start and stop vibration on the device. + + + + + Starts vibration on the device. + + A TimeSpan object specifying the amount of time for which the phone vibrates. + + + + Stops vibration on the device. + + + + + The default implementation of , using the system controller. + + + + + Starts vibration on the device. + + A TimeSpan object specifying the amount of time for which the phone vibrates. + + + + Stops vibration on the device. + + + + + WindowManager extensions + + + + + Shows a modal dialog for the specified model, using vibrate and audio feedback + + The WindowManager instance. + The root model. + The context. + If not null, use the specified .wav as opening sound + If true, use a vibration feedback on dialog opening + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/wp8/Caliburn.Micro.Platform.dll b/packages/Caliburn.Micro.2.0.0/lib/wp8/Caliburn.Micro.Platform.dll new file mode 100644 index 0000000..90bc978 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/wp8/Caliburn.Micro.Platform.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/wp8/Caliburn.Micro.Platform.xml b/packages/Caliburn.Micro.2.0.0/lib/wp8/Caliburn.Micro.Platform.xml new file mode 100644 index 0000000..4364e79 --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/wp8/Caliburn.Micro.Platform.xml @@ -0,0 +1,2191 @@ + + + + Caliburn.Micro.Platform + + + + + A host for action related attached properties. + + + + + A property definition representing the target of an . The DataContext of the element will be set to this instance. + + + + + A property definition representing the target of an . The DataContext of the element is not set to this instance. + + + + + Sets the target of the . + + The element to attach the target to. + The target for instances of . + + + + Gets the target for instances of . + + The element to which the target is attached. + The target for instances of + + + + Sets the target of the . + + The element to attach the target to. + The target for instances of . + + The DataContext will not be set. + + + + + Gets the target for instances of . + + The element to which the target is attached. + The target for instances of + + + + Checks if the -Target was set. + + DependencyObject to check + True if Target or TargetWithoutContext was set on + + + + Uses the action pipeline to invoke the method. + + The object instance to invoke the method on. + The name of the method to invoke. + The view. + The source of the invocation. + The event args. + The method parameters. + + + + The context used during the execution of an Action or its guard. + + + + + Determines whether the action can execute. + + Returns true if the action can execute, false otherwise. + + + + Any event arguments associated with the action's invocation. + + + + + The actual method info to be invoked. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + The message being executed. + + + + + The source from which the message originates. + + + + + The instance on which the action is invoked. + + + + + The view associated with the target. + + + + + Gets or sets additional data needed to invoke the action. + + The data key. + Custom data associated with the context. + + + + Called when the execution context is disposed + + + + + Used to send a message from the UI to a presentation model class, indicating that a particular Action should be invoked. + + + + + Indicates that a message is parameterized. + + + + + Represents the parameters of a message. + + + + + Causes the action invocation to "double check" if the action should be invoked by executing the guard immediately before hand. + + 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. + + + + Causes the action to throw if it cannot locate the target or the method at invocation time. + + True by default. + + + + Represents the method name of an action message. + + + + + Represents the parameters of an action message. + + + + + Creates an instance of . + + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Forces an update of the UI's Enabled/Disabled state based on the the preconditions associated with the method. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Invokes the action using the specified + + + + + Applies an availability effect, such as IsEnabled, to an element. + + Returns a value indicating whether or not the action is available. + + + + Finds the method on the target matching the specified message. + + The target. + The message. + The matching method, if available. + + + + Sets the target, method and view on the context. Uses a bubbling strategy by default. + + + + + Prepares the action execution context for use. + + + + + Try to find a candidate for guard function, having: + - a name in the form "CanXXX" + - no generic parameters + - a bool return type + - no parameters or a set of parameters corresponding to the action method + + The execution context + A MethodInfo, if found; null otherwise + + + + Gets or sets the name of the method to be invoked on the presentation model class. + + The name of the method. + + + + Gets the parameters to pass as part of the method invocation. + + The parameters. + + + + Occurs before the message detaches from the associated object. + + + + + A source of assemblies that are inspectable by the framework. + + + + + The singleton instance of the AssemblySource used by the framework. + + + + + Finds a type which matches one of the elements in the sequence of names. + + + + + A caching subsystem for . + + + + + Extracts the types from the spezified assembly for storing in the cache. + + + + + Installs the caching subsystem. + + + + + Hosts dependency properties for binding. + + + + + Allows binding on an existing view. Use this on root UserControls, Pages and Windows; not in a DataTemplate. + + + + + Allows binding on an existing view without setting the data context. Use this from within a DataTemplate. + + + + + Gets the model to bind to. + + The dependency object to bind to. + The model. + + + + Sets the model to bind to. + + The dependency object to bind to. + The model. + + + + Gets the model to bind to. + + The dependency object to bind to. + The model. + + + + Sets the model to bind to. + + The dependency object to bind to. + The model. + + + + Allows application of conventions at design-time. + + + + + Gets whether or not conventions are being applied at design-time. + + The ui to apply conventions to. + Whether or not conventions are applied. + + + + Sets whether or not do bind conventions at design-time. + + The ui to apply conventions to. + Whether or not to apply conventions. + + + + Provides methods for searching a given scope for named elements. + + + + + Searches through the list of named elements looking for a case-insensitive match. + + The named elements to search through. + The name to search for. + The named element or null if not found. + + + + Adds a child resolver. + + The type filter. + The resolver. + + + + Removes a child resolver. + + The resolver to remove. + true, when the resolver was (found and) removed. + + + + Gets all the instances with names in the scope. + + Named instances in the provided scope. + Pass in a and receive a list of named instances in the same scope. + + + + Finds a set of named instances in each hop in a . + + + Searches all the elements in the parameter as well as the visual children of + each of these elements, the , the HeaderedContentControl.Header, + the , or the HeaderedItemsControl.Header, if any are found. + + + + + Finds a path of dependency objects which traces through visual anscestry until a root which is , + a , a Page with a dependency object Page.ContentProperty value, + a dependency object with set to . + and are included in the resulting in order to track which item + in an items control we are scoped to. + + + + + Maintains a connection in the visual tree of dependency objects in order to record a route through it. + + + + + Adds a segment to the route. + + The source dependency object. + The target dependency object. + + + + Tries to get a target dependency object given a source. + + The possible beginning of a route segment (hop). + The target of a route segment (hop). + if had a target recorded; otherwise. + + + + Gets or sets the starting point of the route. + + + + + An which converts to . + + + + + Converts a boolean value to a value. + + The value produced by the binding source. + The type of the binding target property. + The converter parameter to use. + The culture to use in the converter. + + A converted value. If the method returns null, the valid null value is used. + + + + + Converts a value value to a boolean value. + + The value that is produced by the binding target. + The type to convert to. + The converter parameter to use. + The culture to use in the converter. + + A converted value. If the method returns null, the valid null value is used. + + + + + Inherit from this class in order to customize the configuration of the framework. + + + + + Creates an instance of the bootstrapper. + + Set this to false when hosting Caliburn.Micro inside and Office or WinForms application. The default is true. + + + + Initialize the framework. + + + + + Called by the bootstrapper's constructor at design time to start the framework. + + + + + Called by the bootstrapper's constructor at runtime to start the framework. + + + + + Provides an opportunity to hook into the application object. + + + + + Override to configure the framework and setup your IoC container. + + + + + Override to tell the framework where to find assemblies to inspect for views, etc. + + A list of assemblies to inspect. + + + + Override this to provide an IoC specific implementation. + + The service to locate. + The key to locate. + The located service. + + + + Override this to provide an IoC specific implementation + + The service to locate. + The located services. + + + + Override this to provide an IoC specific implementation. + + The instance to perform injection on. + + + + Override this to add custom behavior to execute after the application starts. + + The sender. + The args. + + + + Override this to add custom behavior on exit. + + The sender. + The event args. + + + + Override this to add custom behavior for unhandled exceptions. + + The sender. + The event args. + + + + The application. + + + + + Used to configure the conventions used by the framework to apply bindings and create actions. + + + + + Converters to/from . + + + + + Indicates whether or not static properties should be included during convention name matching. + + False by default. + + + + Indicates whether or not the Content of ContentControls should be overwritten by conventional bindings. + + False by default. + + + + The default DataTemplate used for ItemsControls when required. + + + + + The default DataTemplate used for Headered controls when required. + + + + + Changes the provided word from a plural form to a singular form. + + + + + Derives the SelectedItem property name. + + + + + Creates a binding and sets it on the element, applying the appropriate conventions. + + + + + + + + + + + Applies the appropriate binding mode to the binding. + + + + + Determines whether or not and what type of validation to enable on the binding. + + + + + Determines whether a value converter is is needed and applies one to the binding. + + + + + Determines whether a custom string format is needed and applies it to the binding. + + + + + Determines whether a custom update source trigger should be applied to the binding. + + + + + Adds an element convention. + + The type of element. + The default property for binding conventions. + The default property for action parameters. + The default event to trigger actions. + + + + Adds an element convention. + + + + + + Gets an element convention for the provided element type. + + The type of element to locate the convention for. + The convention if found, null otherwise. + Searches the class hierarchy for conventions. + + + + Determines whether a particular dependency property already has a binding on the provided element. + + + + + Creates a binding and sets it on the element, guarding against pre-existing bindings. + + + + + Creates a binding and set it on the element, guarding against pre-existing bindings and pre-existing values. + + + + + + + + + + + + Attempts to apply the default item template to the items control. + + The items control. + The collection property. + + + + Configures the selected item convention. + + The element that has a SelectedItem property. + The SelectedItem property. + The view model type. + The property path. + + + + Configures the SelectedItem binding for matched selection path. + + The element that has a SelectedItem property. + The SelectedItem property. + The view model type. + The property path. + The binding to configure. + A bool indicating whether to apply binding + + + + Applies a header template based on + + + + + + + + + Gets a property by name, ignoring case and searching all interfaces. + + The type to inspect. + The property to search for. + The property or null if not found. + + + + Accounts for the lack of UpdateSourceTrigger in silverlight. + + The element to wire for change events on. + The property that is being bound. + Gets the the binding expression that needs to be updated. + The property being bound to if available. + The binding if available. + + + + Represents the conventions for a particular element type. + + + + + The type of element to which the conventions apply. + + + + + Gets the default property to be used in binding conventions. + + + + + The default trigger to be used when wiring actions on this element. + + + + + The default property to be used for parameters of this type in actions. + + + + + Applies custom conventions for elements of this type. + + Pass the view model type, property path, property instance, framework element and its convention. + + + + Generic extension methods used by the framework. + + + + + Get's the name of the assembly. + + The assembly. + The assembly's name. + + + + Gets all the attributes of a particular type. + + The type of attributes to get. + The member to inspect for attributes. + Whether or not to search for inherited attributes. + The list of attributes found. + + + + Gets the value for a key. If the key does not exist, return default(TValue); + + The type of the keys in the dictionary. + The type of the values in the dictionary. + The dictionary to call this method on. + The key to look up. + The key value. default(TValue) if this key is not in the dictionary. + + + + Host's attached properties related to routed UI messaging. + + + + + Places a message handler on this element. + + The element. + The message handler. + + + + Gets the message handler for this element. + + The element. + The message handler. + + + + A property definition representing attached triggers and messages. + + + + + Sets the attached triggers and messages. + + The element to attach to. + The parsable attachment text. + + + + Gets the attached triggers and messages. + + The element that was attached to. + The parsable attachment text. + + + + A service that is capable of properly binding values to a method's parameters and creating instances of . + + + + + The special parameter values recognized by the message binder along with their resolvers. + + + + + 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. + + + + + Determines the parameters that a method should be invoked with. + + The action execution context. + The parameters required to complete the invocation. + The actual parameter values. + + + + Transforms the textual parameter into the actual parameter. + + + + + Coerces the provided value to the destination type. + + The destination type. + The provided value. + An optional context value which can be used during conversion. + The coerced value. + + + + Gets the default value for a type. + + The type. + The default value. + + + + Class for managing the list of rules for doing name transformation. + + + + + Adds a transform using a single replacement value and a global filter pattern. + + Regular expression pattern for replacing text + The replacement value. + Regular expression pattern for global filtering + + + + Adds a transform using a list of replacement values and a global filter pattern. + + Regular expression pattern for replacing text + The list of replacement values + Regular expression pattern for global filtering + + + + Gets the list of transformations for a given name. + + The name to transform into the resolved name list + The transformed names. + + + + Gets the list of transformations for a given name. + + The name to transform into the resolved name list + A function to do a transform on each item in the ReplaceValueList prior to applying the regular expression transform + The transformed names. + + + + Flag to indicate if transformations from all matched rules are returned. Otherwise, transformations from only the first matched rule are returned. + + + + + A rule that describes a name transform. + + + + + Regular expression pattern for global filtering + + + + + Regular expression pattern for replacing text + + + + + The list of replacement values + + + + + Parses text into a fully functional set of instances with . + + + + + Parses the specified message text. + + The target. + The message text. + The triggers parsed from the text. + + + + The function used to generate a trigger. + + The parameters passed to the method are the the target of the trigger and string representing the trigger. + + + + Creates an instance of by parsing out the textual dsl. + + The target of the message. + The textual message dsl. + The created message. + + + + Function used to parse a string identified as a message. + + + + + Function used to parse a string identified as a message parameter. + + + + + Creates a binding on a . + + The target to which the message is applied. + The parameter object. + The name of the element to bind to. + The path of the element to bind to. + The binding mode to use. + + + + Helper class for encoding strings to regular expression patterns + + + + + Regular expression pattern for valid name + + + + + Regular expression pattern for subnamespace (including dot) + + + + + Regular expression pattern for namespace or namespace fragment + + + + + Creates a named capture group with the specified regular expression + + Name of capture group to create + Regular expression pattern to capture + Regular expression capture group with the specified group name + + + + Converts a namespace (including wildcards) to a regular expression string + + Source namespace to convert to regular expression + Namespace converted to a regular expression + + + + Creates a capture group for a valid name regular expression pattern + + Name of capture group to create + Regular expression capture group with the specified group name + + + + Creates a capture group for a namespace regular expression pattern + + Name of capture group to create + Regular expression capture group with the specified group name + + + + A collection that can exist as part of a behavior. + + The type of item in the attached collection. + + + + Creates an instance of + + + + + Attached the collection. + + The dependency object to attach the collection to. + + + + Detaches the collection. + + + + + Called when an item is added from the collection. + + The item that was added. + + + + Called when an item is removed from the collection. + + The item that was removed. + + + + A mouse helper utility. + + + + + Initializes the mouse helper with the UIElement to use in mouse tracking. + + The UIElement to use for mouse tracking. + + + + The current position of the mouse. + + + + + Represents a parameter of an . + + + + + A dependency property representing the parameter's value. + + + + + Makes the parameter aware of the that it's attached to. + + The action message. + + + + Gets or sets the value of the parameter. + + The value. + + + + Gets or sets the owner. + + + + + Helper class when splitting strings + + + + + Splits a string with a chosen separator. + If a substring is contained in [...] it will not be splitted. + + The message to split + The separator to use when splitting + + + + + Splits a string with , as separator. + Does not split within {},[],() + + The string to split + + + + + A implementation for the XAML platfrom. + + + + + Initializes a new instance of the class. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + + Executes the action on the UI thread. + + The action to execute. + + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + + The root element that was not created by the framework. + + + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + + An to close the view model. + + + + + + Indicates whether or not the framework is in design-time mode. + + + + + Provides information about the characteristics for a component, such as its attributes, properties, and events. This class cannot be inherited. + + + + + Returns a type converter for the specified type. + + The System.Type of the target component. + A System.ComponentModel.TypeConverter for the specified type. + + + + Class to specify settings for configuring type mappings by the ViewLocator or ViewModelLocator + + + + + The default subnamespace for Views. Used for creating default subnamespace mappings. Defaults to "Views". + + + + + The default subnamespace for ViewModels. Used for creating default subnamespace mappings. Defaults to "ViewModels". + + + + + Flag to indicate whether or not the name of the Type should be transformed when adding a type mapping. Defaults to true. + + + + + The format string used to compose the name of a type from base name and name suffix + + + + + Flag to indicate if ViewModel names should include View suffixes (i.e. CustomerPageViewModel vs. CustomerViewModel) + + + + + List of View suffixes for which default type mappings should be created. Applies only when UseNameSuffixesInMappings = true. + Default values are "View", "Page" + + + + + The name suffix for ViewModels. Applies only when UseNameSuffixesInMappings = true. The default is "ViewModel". + + + + + Hosts attached properties related to view models. + + + + + A dependency property which allows the framework to track whether a certain element has already been loaded in certain scenarios. + + + + + A dependency property which marks an element as a name scope root. + + + + + A dependency property which allows the override of convention application behavior. + + + + + A dependency property for assigning a context to a particular portion of the UI. + + + + + A dependency property for attaching a model to the UI. + + + + + Used by the framework to indicate that this element was generated. + + + + + Executes the handler immediately if the element is loaded, otherwise wires it to the Loaded event. + + The element. + The handler. + true if the handler was executed immediately; false otherwise + + + + Executes the handler when the element is unloaded. + + The element. + The handler. + + + + Executes the handler the next time the elements's LayoutUpdated event fires. + + The element. + The handler. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + The root element that was not created by the framework. + 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. + + + + + Gets the convention application behavior. + + The element the property is attached to. + Whether or not to apply conventions. + + + + Sets the convention application behavior. + + The element to attach the property to. + Whether or not to apply conventions. + + + + Sets the model. + + The element to attach the model to. + The model. + + + + Gets the model. + + The element the model is attached to. + The model. + + + + Gets the context. + + The element the context is attached to. + The context. + + + + Sets the context. + + The element to attach the context to. + The context. + + + + A strategy for determining which view to use for a given model. + + + + + Used to transform names. + + + + + Separator used when resolving View names for context instances. + + + + + 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. + + An instance of TypeMappingConfiguration that provides the settings for configuration + + + + Adds a default type mapping using the standard namespace mapping convention + + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + 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. + + Suffix for type name. Should be "View" or synonym of "View". + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + Array of RegEx replace values for target namespaces + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + RegEx replace value for target namespace + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Retrieves the view from the IoC container or tries to create it if not found. + + + Pass the type of view as a parameter and recieve an instance of the view. + + + + + Modifies the name of the type to be used at design time. + + + + + Transforms a ViewModel type name into all of its possible View type names. Optionally accepts an instance + of context object + + Enumeration of transformed names + Arguments: + typeName = The name of the ViewModel type being resolved to its companion View. + context = An instance of the context or null. + + + + + Locates the view type based on the specified model type. + + The view. + + Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view type. + + + + + Locates the view for the specified model type. + + The view. + + Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view instance. + + + + + Locates the view for the specified model instance. + + The view. + + Pass the model instance, display location (or null) and the context (or null) as parameters and receive a view instance. + + + + + Transforms a view type into a pack uri. + + + + + When a view does not contain a code-behind file, we need to automatically call InitializeCompoent. + + The element to initialize + + + + Binds a view to a view model. + + + + + Gets or sets a value indicating whether to apply conventions by default. + + + true if conventions should be applied by default; otherwise, false. + + + + + Indicates whether or not the conventions have already been applied to the view. + + + + + Determines whether a view should have conventions applied to it. + + The view to check. + Whether or not conventions should be applied to the view. + + + + Creates data bindings on the view's controls based on the provided properties. + + Parameters include named Elements to search through and the type of view model to determine conventions for. Returns unmatched elements. + + + + Attaches instances of to the view's controls based on the provided methods. + + Parameters include the named elements to search through and the type of view model to determine conventions for. Returns unmatched elements. + + + + Allows the developer to add custom handling of named elements which were not matched by any default conventions. + + + + + Binds the specified viewModel to the view. + + Passes the the view model, view and creation context (or null for default) to use in applying binding. + + + + A strategy for determining which view model to use for a given view. + + + + + Used to transform names. + + + + + The name of the capture group used as a marker for rules that return interface types + + + + + 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. + + An instance of TypeMappingConfiguration that provides the settings for configuration + + + + Adds a default type mapping using the standard namespace mapping convention + + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + Array of RegEx replace values for target namespaces + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on namespace RegEx replace and filter patterns + + RegEx replace pattern for source namespace + RegEx filter pattern for source namespace + RegEx replace value for target namespace + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping based on simple namespace mapping + + Namespace of source type + Namespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespaces of target type as an array + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Adds a standard type mapping by substituting one subnamespace for another + + Subnamespace of source type + Subnamespace of target type + Suffix for type name. Should be "View" or synonym of "View". (Optional) + + + + Makes a type name into an interface name. + + The part. + + + + + Transforms a View type name into all of its possible ViewModel type names. Accepts a flag + to include or exclude interface types. + + Enumeration of transformed names + Arguments: + typeName = The name of the View type being resolved to its companion ViewModel. + includeInterfaces = Flag to indicate if interface types are included + + + + + Determines the view model type based on the specified view type. + + The view model type. + + Pass the view type and receive a view model type. Pass true for the second parameter to search for interfaces. + + + + + Locates the view model for the specified view type. + + The view model. + + Pass the view type as a parameter and receive a view model instance. + + + + + Locates the view model for the specified view instance. + + The view model. + + Pass the view instance as a parameters and receive a view model instance. + + + + + The interface for AppBar items capable of triggering action messages. + + + + + The action message. + + + + + An capable of triggering action messages. + + + + + The action message. + + + + + An capable of triggering action messages. + + + + + The action message. + + + + + Implemented by services that provide based navigation. + + + + + Stops the loading process. + + + + + Navigates back. + + + + + Navigates forward. + + + + + Removes the most recent entry from the back stack. + + The entry that was removed. + + + + The source. + + + + + Indicates whether the navigator can navigate back. + + + + + Indicates whether the navigator can navigate forward. + + + + + The current source. + + + + + The current content. + + + + + Gets an IEnumerable that you use to enumerate the entries in back navigation history. + + List of entries in the back stack. + + + + Raised after navigation. + + + + + Raised prior to navigation. + + + + + Raised when navigation fails. + + + + + Raised when navigation is stopped. + + + + + Raised when a fragment navigation occurs. + + + + + A basic implementation of designed to adapt the control. + + + + + Creates an instance of + + The frame to represent as a . + Tells the frame adapter to assume that the view has already been loaded by the time OnNavigated is called. This is necessary when using the TransitionFrame. + + + + Occurs before navigation + + The event sender. + The event args. + + + + Called to check whether or not to close current instance on navigating. + + The event sender from OnNavigating event. + The event args from OnNavigating event. + + + + Occurs after navigation + + The event sender. + The event args. + + + + Attempts to inject query string parameters from the view into the view model. + + The view model. + The page. + + + + Stops the loading process. + + + + + Navigates back. + + + + + Navigates forward. + + + + + Navigates to the specified . + + The to navigate to. + Whether or not navigation succeeded. + + + + Removes the most recent entry from the back stack. + + The entry that was removed. + + + + The source. + + + + + Indicates whether the navigator can navigate back. + + + + + Indicates whether the navigator can navigate forward. + + + + + The current source. + + + + + The current content. + + + + + Gets an IEnumerable that you use to enumerate the entries in back navigation history. + + List of entries in the back stack. + + + + Raised after navigation. + + + + + Raised prior to navigation. + + + + + Raised when navigation fails. + + + + + Raised when navigation is stopped. + + + + + Raised when a fragment navigation occurs. + + + + + Implemented by services that provide access to the basic phone capabilities. + + + + + The state that is persisted during the tombstoning process. + + + + + Gets the mode in which the application was started. + + + + + Occurs when a fresh instance of the application is launching. + + + + + Occurs when a previously paused/tombstoned app is resumed/resurrected. + + + + + Occurs when the application is being paused or tombstoned. + + + + + Occurs when the application is closing. + + + + + Occurs when the app is continuing from a temporarily paused state. + + + + + Occurs after the app has continued from a temporarily paused state. + + + + + Occurs when the app is "resurrecting" from a tombstoned state. + + + + + Occurs after the app has "resurrected" from a tombstoned state. + + + + + Gets or sets whether user idle detection is enabled. + + + + + Gets or sets whether application idle detection is enabled. + + + + + Gets if the app is currently resurrecting. + + + + + An implementation of that adapts . + + + + + Creates an instance of . + + + + + Gets if the app is currently resurrecting. + + + + + The state that is persisted during the tombstoning process. + + + + + Gets the mode in which the application was started. + + + + + Occurs when a fresh instance of the application is launching. + + + + + Occurs when a previously paused/tombstoned application instance is resumed/resurrected. + + + + + Occurs when the application is being paused or tombstoned. + + + + + Occurs when the application is closing. + + + + + Occurs when the app is continuing from a temporarily paused state. + + + + + Occurs after the app has continued from a temporarily paused state. + + + + + Occurs when the app is "resurrecting" from a tombstoned state. + + + + + Occurs after the app has "resurrected" from a tombstoned state. + + + + + Gets or sets whether user idle detection is enabled. + + + + + Gets or sets whether application idle detection is enabled. + + + + + A custom bootstrapper designed to setup phone applications. + + + + + Initializes a new instance of the class. + + + + + Provides an opportunity to hook into the application object. + + + + + Creates the root frame used by the application. + + The frame. + + + + Occurs when a fresh instance of the application is launching. + + + + + Occurs when a previously tombstoned or paused application is resurrected/resumed. + + + + + Occurs when the application is being tombstoned or paused. + + + + + Occurs when the application is closing. + + + + + The phone application service. + + + + + The root frame used for navigation. + + + + + Extension methods for + + + + + Calls TransformToVisual on the specified element for the specified visual, suppressing the ArgumentException that can occur in some cases. + + Element on which to call TransformToVisual. + Visual to pass to the call to TransformToVisual. + Resulting GeneralTransform object. + + + + A service that manages windows. + + + + + Shows a modal dialog for the specified model. + + The root model. + The optional dialog settings. + The context. + + + + Shows a popup at the current mouse position. + + The root model. + The view context. + The optional popup settings. + + + + A service that manages windows. + + + + + Predicate used to determine whether a page being navigated is actually a system dialog, which should + cause a temporary dialog disappearance. + + + The default implementation just take into account DatePicker and TimePicker pages from WP7 toolkit. + + /// The destination page to check + + + + Shows a modal dialog for the specified model. + + The root model. + The context. + The optional dialog settings. + + + + Shows a popup at the current mouse position. + + The root model. + The view context. + The optional popup settings. + + + + Creates a popup for hosting a popup window. + + The model. + The optional popup settings. + The popup. + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/wp8/System.Windows.Interactivity.dll b/packages/Caliburn.Micro.2.0.0/lib/wp8/System.Windows.Interactivity.dll new file mode 100644 index 0000000..0153cf5 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/wp8/System.Windows.Interactivity.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/wp8/System.Windows.Interactivity.xml b/packages/Caliburn.Micro.2.0.0/lib/wp8/System.Windows.Interactivity.xml new file mode 100644 index 0000000..9feeaaf --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/wp8/System.Windows.Interactivity.xml @@ -0,0 +1,1025 @@ + + + + System.Windows.Interactivity + + + + + Represents a collection of IAttachedObject with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + An interface for an object that can be attached to another object. + + + + + Attaches to the specified object. + + The object to attach to. + + + + Detaches this instance from its associated object. + + + + + Gets the associated object. + + The associated object. + Represents the object the instance is attached to. + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + Cannot add the instance to a collection more than once. + + + + Attaches to the specified object. + + The object to attach to. + The IAttachedObject is already attached to a different object. + + + + Detaches this instance from its associated object. + + + + + The object on which the collection is hosted. + + + + + Gets the associated object. + + The associated object. + + + + Encapsulates state information and zero or more ICommands into an attachable object. + + The type the can be attached to. + + Behavior is the base class for providing attachable state and commands to an object. + The types the Behavior can be attached to can be controlled by the generic parameter. + Override OnAttached() and OnDetaching() methods to hook and unhook any necessary handlers + from the AssociatedObject. + + + + + Encapsulates state information and zero or more ICommands into an attachable object. + + This is an infrastructure class. Behavior authors should derive from Behavior<T> instead of from this class. + + + + Called after the behavior is attached to an AssociatedObject. + + Override this to hook up functionality to the AssociatedObject. + + + + Called when the behavior is being detached from its AssociatedObject, but before it has actually occurred. + + Override this to unhook functionality from the AssociatedObject. + + + + Attaches to the specified object. + + The object to attach to. + The Behavior is already hosted on a different element. + dependencyObject does not satisfy the Behavior type constraint. + + + + Detaches this instance from its associated object. + + + + + The type to which this behavior can be attached. + + + + + Gets the object to which this behavior is attached. + + + + + Gets the associated object. + + The associated object. + + + + Initializes a new instance of the class. + + + + + Gets the object to which this is attached. + + + + + Represents a collection of behaviors with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + + Enumerates possible values for reusable property value editors. + + + + + Uses the element picker, if supported, to edit this property at design time. + + + + + Uses the storyboard picker, if supported, to edit this property at design time. + + + + + Uses the state picker, if supported, to edit this property at design time. + + + + + Uses the element-binding picker, if supported, to edit this property at design time. + + + + + Uses the property-binding picker, if supported, to edit this property at design time. + + + + + Associates the given editor type with the property on which the CustomPropertyValueEditor is applied. + + Use this attribute to get improved design-time editing for properties that denote element (by name), storyboards, or states (by name). + + + + Initializes a new instance of the class. + + The custom property value editor. + + + + Gets or sets the custom property value editor. + + The custom property value editor. + + + + Provides design tools information about what to instantiate for a given action or command. + + + + + Initializes a new instance of the class. + + The type this attribute applies to. + The type of to instantiate. + A single argument for the specified . + is not derived from TriggerBase. + This constructor is useful if the specifed has a single argument. The + resulting code will be CLS compliant. + + + + Initializes a new instance of the class. + + The type this attribute applies to. + The type of to instantiate. + The constructor arguments for the specified . + is not derived from TriggerBase. + + + + Instantiates this instance. + + The specified by the DefaultTriggerAttribute. + + + + Gets the type that this DefaultTriggerAttribute applies to. + + The type this DefaultTriggerAttribute applies to. + + + + Gets the type of the to instantiate. + + The type of the to instantiate. + + + + Gets the parameters to pass to the constructor. + + The parameters to pass to the constructor. + + + + This method will use the VisualTreeHelper.GetParent method to do a depth first walk up + the visual tree and return all ancestors of the specified object, including the object itself. + + The object in the visual tree to find ancestors of. + Returns itself an all ancestors in the visual tree. + + + + EventObserver is designed to help manage event handlers by detatching when disposed. Creating this object will also attach in the constructor. + + + + + Creates an instance of EventObserver and attaches to the supplied event on the supplied target. Call dispose to detach. + + The event to attach and detach from. + The target object the event is defined on. Null if the method is static. + The delegate to attach to the event. + + + + Detaches the handler from the event. + + + + + A trigger that listens for a specified event on its source and fires when that event is fired. + + + + + Represents a trigger that can listen to an element other than its AssociatedObject. + + The type that this trigger can be associated with. + + EventTriggerBase extends TriggerBase to add knowledge of another object than the one it is attached to. + This allows a user to attach a Trigger/Action pair to one element and invoke the Action in response to a + change in another object somewhere else. Override OnSourceChanged to hook or unhook handlers on the source + element, and OnAttached/OnDetaching for the associated element. The type of the Source element can be + constrained by the generic type parameter. If you need control over the type of the + AssociatedObject, set a TypeConstraintAttribute on your derived type. + + + + + Represents a trigger that can listen to an object other than its AssociatedObject. + + This is an infrastructure class. Trigger authors should derive from EventTriggerBase<T> instead of this class. + + + + Represents an object that can invoke Actions conditionally. + + This is an infrastructure class. Trigger authors should derive from Trigger<T> instead of this class. + + + + Invoke all actions associated with this trigger. + + Derived classes should call this to fire the trigger. + + + + Called after the trigger is attached to an AssociatedObject. + + + + + Called when the trigger is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Attaches to the specified object. + + The object to attach to. + Cannot host the same trigger on more than one object at a time. + dependencyObject does not satisfy the trigger type constraint. + + + + Detaches this instance from its associated object. + + + + + Gets the object to which the trigger is attached. + + The associated object. + + + + Gets the type constraint of the associated object. + + The associated object type constraint. + + + + Gets the actions associated with this trigger. + + The actions associated with this trigger. + + + + Event handler for registering to PreviewInvoke. + + + + + Gets the associated object. + + The associated object. + + + + Specifies the name of the Event this EventTriggerBase is listening for. + + + + + + Called when the event associated with this EventTriggerBase is fired. By default, this will invoke all actions on the trigger. + + The instance containing the event data. + Override this to provide more granular control over when actions associated with this trigger will be invoked. + + + + Called when the source changes. + + The old source. + The new source. + This function should be overridden in derived classes to hook functionality to and unhook functionality from the changing source objects. + + + + Called after the trigger is attached to an AssociatedObject. + + + + + Called when the trigger is being detached from its AssociatedObject, but before it has actually occurred. + + + + Could not find eventName on the Target. + + + + Gets the type constraint of the associated object. + + The associated object type constraint. + Define a TypeConstraintAttribute on a derived type to constrain the types it may be attached to. + + + + Gets the source type constraint. + + The source type constraint. + + + + Gets or sets the target object. If TargetObject is not set, the target will look for the object specified by TargetName. If an element referred to by TargetName cannot be found, the target will default to the AssociatedObject. This is a dependency property. + + The target object. + + + + Gets or sets the name of the element this EventTriggerBase listens for as a source. If the name is not set or cannot be resolved, the AssociatedObject will be used. This is a dependency property. + + The name of the source element. + + + + Gets the resolved source. If is not set or cannot be resolved, defaults to AssociatedObject. + + The resolved source object. + In general, this property should be used in place of AssociatedObject in derived classes. + The element pointed to by does not satisify the type constraint. + + + + Initializes a new instance of the class. + + + + + Called when the source property changes. + + Override this to hook functionality to and unhook functionality from the specified source, rather than the AssociatedObject. + The old source. + The new source. + + + + Gets the resolved source. If is not set or cannot be resolved, defaults to AssociatedObject. + + The resolved source object. + In general, this property should be used in place of AssociatedObject in derived classes. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Name of the event. + + + + Gets or sets the name of the event to listen for. This is a dependency property. + + The name of the event. + + + + Static class that owns the Triggers and Behaviors attached properties. Handles propagation of AssociatedObject change notifications. + + + + + This property is used as the internal backing store for the public Triggers attached property. + + + + + This property is used as the internal backing store for the public Behaviors attached property. + + + + + Gets the TriggerCollection containing the triggers associated with the specified object. + + The object from which to retrieve the triggers. + A TriggerCollection containing the triggers associated with the specified object. + + + + Gets the associated with a specified object. + + The object from which to retrieve the . + A containing the behaviors associated with the specified object. + + + Cannot host the same BehaviorCollection on more than one object at a time. + + + Cannot host the same TriggerCollection on more than one object at a time. + + + + A helper function to take the place of FrameworkElement.IsLoaded, as this property is not available in Silverlight. + + The element of interest. + True if the element has been loaded; otherwise, False. + + + + Executes a specified ICommand when invoked. + + + + + Represents an attachable object that encapsulates a unit of functionality. + + The type to which this action can be attached. + + + + Represents an attachable object that encapsulates a unit of functionality. + + This is an infrastructure class. Action authors should derive from TriggerAction<T> instead of this class. + + + + Attempts to invoke the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Attaches to the specified object. + + The object to attach to. + Cannot host the same TriggerAction on more than one object at a time. + dependencyObject does not satisfy the TriggerAction type constraint. + + + + Detaches this instance from its associated object. + + + + + Gets or sets a value indicating whether this action will run when invoked. This is a dependency property. + + + True if this action will be run when invoked; otherwise, False. + + + + + Gets the object to which this action is attached. + + The associated object. + + + + Gets the associated object type constraint. + + The associated object type constraint. + + + + Gets or sets a value indicating whether this instance is attached. + + True if this instance is attached; otherwise, False. + + + + Gets the associated object. + + The associated object. + + + + Initializes a new instance of the class. + + + + + Gets the object to which this is attached. + + The associated object. + + + + Gets the associated object type constraint. + + The associated object type constraint. + + + + Invokes the action. + + The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference. + + + + Gets or sets the name of the command this action should invoke. + + The name of the command this action should invoke. + This property will be superseded by the Command property if both are set. + + + + Gets or sets the command this action should invoke. This is a dependency property. + + The command to execute. + This property will take precedence over the CommandName property if both are set. + + + + Gets or sets the command parameter. This is a dependency property. + + The command parameter. + This is the value passed to ICommand.CanExecute and ICommand.Execute. + + + + Provides data about which objects were affected when resolving a name change. + + + + + Helper class to handle the logic of resolving a TargetName into a Target element + based on the context provided by a host element. + + + + + Attempts to update the resolved object from the name within the context of the namescope reference element. + + The old resolved object. + + Resets the existing target and attempts to resolve the current TargetName from the + context of the current Host. If it cannot resolve from the context of the Host, it will + continue up the visual tree until it resolves. If it has not resolved it when it reaches + the root, it will set the Target to null and write a warning message to Debug output. + + + + + Occurs when the resolved element has changed. + + + + + Gets or sets the name of the element to attempt to resolve. + + The name to attempt to resolve. + + + + The resolved object. Will return the reference element if TargetName is null or empty, or if a resolve has not been attempted. + + + + + Gets or sets the reference element from which to perform the name resolution. + + The reference element. + + + + Gets or sets a value indicating whether the reference element load is pending. + + + True if [pending reference element load]; otherwise, False. + + + If the Host has not been loaded, the name will not be resolved. + In that case, delay the resolution and track that fact with this property. + + + + + Represents an action that can be targeted to affect an object other than its AssociatedObject. + + The type constraint on the target. + + TargetedTriggerAction extends TriggerAction to add knowledge of another element than the one it is attached to. + This allows a user to invoke the action on an element other than the one it is attached to in response to a + trigger firing. Override OnTargetChanged to hook or unhook handlers on the target element, and OnAttached/OnDetaching + for the associated element. The type of the Target element can be constrained by the generic type parameter. If + you need control over the type of the AssociatedObject, set a TypeConstraintAttribute on your derived type. + + + + + Represents an action that can be targeted to affect an object other than its AssociatedObject. + + This is an infrastructure class. Action authors should derive from TargetedTriggerAction<T> instead of this class. + + + + Called when the target changes. + + The old target. + The new target. + This function should be overriden in derived classes to hook and unhook functionality from the changing source objects. + + + + Called after the action is attached to an AssociatedObject. + + + + + Called when the action is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Gets or sets the target object. If TargetObject is not set, the target will look for the object specified by TargetName. If an element referred to by TargetName cannot be found, the target will default to the AssociatedObject. This is a dependency property. + + The target object. + + + + Gets or sets the name of the object this action targets. If Target is set, this property is ignored. If Target is not set and TargetName is not set or cannot be resolved, the target will default to the AssociatedObject. This is a dependency property. + + The name of the target object. + + + + Gets the target object. If TargetObject is set, returns TargetObject. Else, if TargetName is not set or cannot be resolved, defaults to the AssociatedObject. + + The target object. + In general, this property should be used in place of AssociatedObject in derived classes. + The Target element does not satisfy the type constraint. + + + + Gets the associated object type constraint. + + The associated object type constraint. + Define a TypeConstraintAttribute on a derived type to constrain the types it may be attached to. + + + + Gets the target type constraint. + + The target type constraint. + + + + Initializes a new instance of the class. + + + + + Called when the target property changes. + + Override this to hook and unhook functionality on the specified Target, rather than the AssociatedObject. + The old target. + The new target. + + + + Gets the target object. If TargetName is not set or cannot be resolved, defaults to the AssociatedObject. + + The target. + In general, this property should be used in place of AssociatedObject in derived classes. + + + + Represents a collection of actions with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + + Represents an object that can invoke actions conditionally. + + The type to which this trigger can be attached. + + TriggerBase is the base class for controlling actions. Override OnAttached() and + OnDetaching() to hook and unhook handlers on the AssociatedObject. You may + constrain the types that a derived TriggerBase may be attached to by specifying + the generic parameter. Call InvokeActions() to fire all Actions associated with + this TriggerBase. + + + + + Initializes a new instance of the class. + + + + + Gets the object to which the trigger is attached. + + The associated object. + + + + Gets the type constraint of the associated object. + + The associated object type constraint. + + + + Argument passed to PreviewInvoke event. Assigning Cancelling to True will cancel the invoking of the trigger. + + This is an infrastructure class. Behavior attached to a trigger base object can add its behavior as a listener to TriggerBase.PreviewInvoke. + + + + Represents a collection of triggers with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes. + + + + + Initializes a new instance of the class. + + Internal, because this should not be inherited outside this assembly. + + + + Called immediately after the collection is attached to an AssociatedObject. + + + + + Called when the collection is being detached from its AssociatedObject, but before it has actually occurred. + + + + + Called when a new item is added to the collection. + + The new item. + + + + Called when an item is removed from the collection. + + The removed item. + + + + Specifies type constraints on the AssociatedObject of TargetedTriggerAction and EventTriggerBase. + + + + + Initializes a new instance of the class. + + The constraint type. + + + + Gets the constraint type. + + The constraint type. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Cannot set the same BehaviorCollection on multiple objects.. + + + + + Looks up a localized string similar to An instance of a Behavior cannot be attached to more than one object at a time.. + + + + + Looks up a localized string similar to Cannot host an instance of a TriggerAction in multiple TriggerCollections simultaneously. Remove it from one TriggerCollection before adding it to another.. + + + + + Looks up a localized string similar to Cannot set the same TriggerCollection on multiple objects.. + + + + + Looks up a localized string similar to An instance of a trigger cannot be attached to more than one object at a time.. + + + + + Looks up a localized string similar to The command "{0}" does not exist or is not publicly exposed on {1}.. + + + + + Looks up a localized string similar to "{0}" is not a valid type for the TriggerType parameter. Make sure "{0}" derives from TriggerBase.. + + + + + Looks up a localized string similar to Cannot add the same instance of "{0}" to a "{1}" more than once.. + + + + + Looks up a localized string similar to The event "{0}" on type "{1}" has an incompatible signature. Make sure the event is public and satisfies the EventHandler delegate.. + + + + + Looks up a localized string similar to Cannot find an event named "{0}" on type "{1}".. + + + + + Looks up a localized string similar to An object of type "{0}" cannot have a {3} property of type "{1}". Instances of type "{0}" can have only a {3} property of type "{2}".. + + + + + Looks up a localized string similar to Cannot attach type "{0}" to type "{1}". Instances of type "{0}" can only be attached to objects of type "{2}".. + + + + + Looks up a localized string similar to Unable to resolve TargetName "{0}".. + + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Extensions.dll b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Extensions.dll new file mode 100644 index 0000000..2458677 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Extensions.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Extensions.pri b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Extensions.pri new file mode 100644 index 0000000..c035240 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Extensions.pri differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Platform.dll b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Platform.dll new file mode 100644 index 0000000..5e76221 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Platform.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Platform.pri b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Platform.pri new file mode 100644 index 0000000..5d2cae2 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Platform.pri differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Platform.xml b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Platform.xml new file mode 100644 index 0000000..857650f --- /dev/null +++ b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Caliburn.Micro.Platform.xml @@ -0,0 +1,152 @@ + + + + Caliburn.Micro.Extensions + + + + + Service that handles sharing data with the Share Charm. + + + + + Programmatically initiates the user interface for sharing content with another app. + + + + + Denotes a class which is aware of sharing data with the Share charm. + + + + + Called when a share operation starts. + + The data request. + + + + Extension methods for + + + + + Navigates to the specified content. + + The navigation service. + The object parameter to pass to the target. + The to navigate to. + Whether or not navigation succeeded. + + + + Navigate to the specified model type. + + The navigation service. + The model type to navigate to. + The object parameter to pass to the target. + Whether or not navigation succeeded. + + + + Navigate to the specified model type. + + The navigation service. + The object parameter to pass to the target. + The model type to navigate to. + Whether or not navigation succeeded. + + + + Creates a Uri builder based on a view model type. + + The type of the view model. + The navigation service. + The builder. + + + + Service that handles the event. + + + + + Initializes a new instance of the class. + + + + + Programmatically initiates the user interface for sharing content with another app. + + + + + Accepts the share request and forwards it to the view model. + + The sender. + The instance containing the event data. + + + + Determines the current view, checks for view first with frame and then view mode first with a shell view. + + The current view + + + + Builds a Uri in a strongly typed fashion, based on a ViewModel. + + + + + + Adds a query string parameter to the Uri. + + The type of the value. + The property. + The property value. + Itself + + + + Attaches a navigation servies to this builder. + + The navigation service. + Itself + + + + Navigates to the Uri represented by this builder. + + + + + Builds the URI. + + A uri constructed with the current configuration information. + + + + A custom IoC container which integrates with WinRT and properly registers all Caliburn.Micro services. + + + + + Registers the Caliburn.Micro WinRT services with the container. + + + + + Registers the Caliburn.Micro navigation service with the container. + + The application root frame. + if set to true [treat view as loaded]. + + + + Registers the Caliburn.Micro sharing service with the container. + + + + diff --git a/packages/Caliburn.Micro.2.0.0/lib/wpa81/Microsoft.Xaml.Interactions.dll b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Microsoft.Xaml.Interactions.dll new file mode 100644 index 0000000..26deb62 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Microsoft.Xaml.Interactions.dll differ diff --git a/packages/Caliburn.Micro.2.0.0/lib/wpa81/Microsoft.Xaml.Interactivity.dll b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Microsoft.Xaml.Interactivity.dll new file mode 100644 index 0000000..860df87 Binary files /dev/null and b/packages/Caliburn.Micro.2.0.0/lib/wpa81/Microsoft.Xaml.Interactivity.dll differ diff --git a/packages/Caliburn.Micro.Core.2.0.0/Caliburn.Micro.Core.2.0.0.nupkg b/packages/Caliburn.Micro.Core.2.0.0/Caliburn.Micro.Core.2.0.0.nupkg new file mode 100644 index 0000000..d708aff Binary files /dev/null and b/packages/Caliburn.Micro.Core.2.0.0/Caliburn.Micro.Core.2.0.0.nupkg differ diff --git a/packages/Caliburn.Micro.Core.2.0.0/lib/net40/Caliburn.Micro.XML b/packages/Caliburn.Micro.Core.2.0.0/lib/net40/Caliburn.Micro.XML new file mode 100644 index 0000000..a73ab81 --- /dev/null +++ b/packages/Caliburn.Micro.Core.2.0.0/lib/net40/Caliburn.Micro.XML @@ -0,0 +1,2107 @@ + + + + Caliburn.Micro + + + + + EventArgs sent during activation. + + + + + Indicates whether the sender was initialized in addition to being activated. + + + + + Contains details about the success or failure of an item's activation through an . + + + + + The item whose activation was processed. + + + + + Gets or sets a value indicating whether the activation was a success. + + true if success; otherwise, false. + + + + A base collection class that supports automatic UI thread marshalling. + + The type of elements contained in the collection. + + + + Represents a collection that is observable. + + The type of elements contained in the collection. + + + + Extends such that the change event can be raised by external parties. + + + + + Notifies subscribers of the property change. + + Name of the property. + + + + Raises a change notification indicating that all bindings should be refreshed. + + + + + Enables/Disables property change notification. + + + + + Adds the range. + + The items. + + + + Removes the range. + + The items. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The collection from which the elements are copied. + + + + Notifies subscribers of the property change. + + Name of the property. + + + + Raises a change notification indicating that all bindings should be refreshed. + + + + + Inserts the item to the specified position. + + The index to insert at. + The item to be inserted. + + + + Exposes the base implementation of the function. + + The index. + The item. + + Used to avoid compiler warning regarding unverifiable code. + + + + + Sets the item at the specified position. + + The index to set the item at. + The item to set. + + + + Exposes the base implementation of the function. + + The index. + The item. + + Used to avoid compiler warning regarding unverifiable code. + + + + + Removes the item at the specified position. + + The position used to identify the item to remove. + + + + Exposes the base implementation of the function. + + The index. + + Used to avoid compiler warning regarding unverifiable code. + + + + + Clears the items contained by the collection. + + + + + Exposes the base implementation of the function. + + + Used to avoid compiler warning regarding unverifiable code. + + + + + Raises the event with the provided arguments. + + Arguments of the event being raised. + + + + Raises the PropertyChanged event with the provided arguments. + + The event data to report in the event. + + + + Adds the range. + + The items. + + + + Removes the range. + + The items. + + + + Enables/Disables property change notification. + + + + + An implementation of that holds on to and activates only one item at a time. + + + + + A base class for various implementations of that maintain an active item. + + The type that is being conducted. + + + + A base class for various implementations of . + + The type that is being conducted. + + + + A base implementation of . + + + + + A base implementation of which is capable of caching views by context. + + + + + A base class that implements the infrastructure for property change notification and automatically performs UI thread marshalling. + + + + + Creates an instance of . + + + + + Raises a change notification indicating that all bindings should be refreshed. + + + + + Notifies subscribers of the property change. + + Name of the property. + + + + Notifies subscribers of the property change. + + The type of the property. + The property expression. + + + + Raises the event directly. + + The instance containing the event data. + + + + Occurs when a property value changes. + + + + + Enables/Disables property change notification. + + + + + Denotes a class which is aware of its view(s). + + + + + Attaches a view to this instance. + + The view. + The context in which the view appears. + + + + Gets a view previously attached to this instance. + + The context denoting which view to retrieve. + The view. + + + + Raised when a view is attached. + + + + + The default view context. + + + + + Creates an instance of . + + + + + Called when a view is attached. + + The view. + The context in which the view appears. + + + + Called when an attached view's Loaded event fires. + + + + + + Called the first time the page's LayoutUpdated event fires after it is navigated to. + + + + + + Gets a view previously attached to this instance. + + The context denoting which view to retrieve. + The view. + + + + The view chache for this instance. + + + + + Raised when a view is attached. + + + + + Denotes an instance which implements , , + , and + + + + + Denotes an instance which has a display name. + + + + + Gets or Sets the Display Name + + + + + Denotes an instance which requires activation. + + + + + Activates this instance. + + + + + Indicates whether or not this instance is active. + + + + + Raised after activation occurs. + + + + + Denotes an instance which requires deactivation. + + + + + Deactivates this instance. + + Indicates whether or not this instance is being closed. + + + + Raised before deactivation. + + + + + Raised after deactivation. + + + + + Denotes an instance which may prevent closing. + + + + + Denotes an object that can be closed. + + + + + Tries to close this instance. + Also provides an opportunity to pass a dialog result to it's corresponding view. + + The dialog result. + + + + Called to check whether or not this instance can close. + + The implementer calls this action with the result of the close check. + + + + Denotes a node within a parent/child hierarchy. + + + + + Gets or Sets the Parent + + + + + Creates an instance of the screen. + + + + + Called when initializing. + + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Tries to close this instance by asking its Parent to initiate shutdown or by asking its corresponding view to close. + Also provides an opportunity to pass a dialog result to it's corresponding view. + + The dialog result. + + + + Gets or Sets the Parent + + + + + Gets or Sets the Display Name + + + + + Indicates whether or not this instance is currently active. + + + + + Indicates whether or not this instance is currently initialized. + + + + + Raised after activation occurs. + + + + + Raised before deactivation. + + + + + Raised after deactivation. + + + + + Denotes an instance which conducts other objects by managing an ActiveItem and maintaining a strict lifecycle. + + Conducted instances can optin to the lifecycle by impelenting any of the follosing , , . + + + + Interface used to define an object associated to a collection of children. + + + + + Gets the children. + + + The collection of children. + + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Occurs when an activation request is processed. + + + + + Interface used to define a specialized parent. + + The type of children. + + + + Gets the children. + + + The collection of children. + + + + + Gets the children. + + The collection of children. + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Called by a subclass when an activation needs processing. + + The item on which activation was attempted. + if set to true activation was successful. + + + + Ensures that an item is ready to be activated. + + + The item to be activated. + + + + Gets or sets the close strategy. + + The close strategy. + + + + Occurs when an activation request is processed. + + + + + An that also implements . + + + + + Denotes an instance which maintains an active item. + + + + + The currently active item. + + + + + Changes the active item. + + The new item to activate. + Indicates whether or not to close the previous active item. + + + + The currently active item. + + + + + The currently active item. + + + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Gets the children. + + The collection of children. + + + + An implementation of that holds on many items. + + + An implementation of that holds on many items. + + + + + An implementation of that holds on to many items wich are all activated. + + + + + Initializes a new instance of the class. + + if set to true opens public items that are properties of this class. + + + + Initializes a new instance of the class. + + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Called when initializing. + + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Gets the children. + + The collection of children. + + + + Ensures that an item is ready to be activated. + + + The item to be activated. + + + + Gets the items that are currently being conducted. + + + + + An implementation of that holds on many items but only activates one at a time. + + + + + Initializes a new instance of the class. + + + + + Gets the children. + + The collection of children. + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Determines the next item to activate based on the last active index. + + The list of possible active items. + The index of the last active item. + The next item to activate. + Called after an active item is closed. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Ensures that an item is ready to be activated. + + + The item to be activated. + + + + Gets the items that are currently being conducted. + + + + + Extension methods for the . + + + + + Registers a singleton. + + The type of the implementation. + The container. + The key. + The container. + + + + Registers a singleton. + + The type of the service. + The type of the implementation. + The container. + The key. + The container. + + + + Registers an service to be created on each request. + + The type of the implementation. + The container. + The key. + The container. + + + + Registers an service to be created on each request. + + The type of the service. + The type of the implementation. + The container. + The key. + The container. + + + + Registers an instance with the container. + + The type of the service. + The container. + The instance. + The container. + + + + Registers a custom service handler with the container. + + The type of the service. + The container. + The handler. + The container. + + + + Registers all specified types in an assembly as singleton in the container. + + The type of the service. + The container. + The assembly. + The type filter. + The container. + + + + Requests an instance. + + The type of the service. + The container. + The key. + The instance. + + + + Gets all instances of a particular type. + + The type to resolve. + The container. + The resolved instances. + + + + A result decorator which executes a coroutine when the wrapped result was cancelled. + + + + + Base class for all decorators. + + + + + Allows custom code to execute after the return of a action. + + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + Initializes a new instance of the class. + + The result to decorate. + + + + Executes the result using the specified context. + + The context. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Occurs when execution has completed. + + + + + Initializes a new instance of the class. + + The result to decorate. + The coroutine to execute when was canceled. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + Manages coroutine execution. + + + + + Creates the parent enumerator. + + + + + Executes a coroutine. + + The coroutine to execute. + The context to execute the coroutine within. + /// The completion callback for the coroutine. + + + + Executes a coroutine asynchronous. + + The coroutine to execute. + The context to execute the coroutine within. + A task that represents the asynchronous coroutine. + + + + Called upon completion of a coroutine. + + + + + The context used during the execution of a Coroutine. + + + + + The source from which the message originates. + + + + + The view associated with the target. + + + + + The instance on which the action is invoked. + + + + + EventArgs sent during deactivation. + + + + + Indicates whether the sender was closed in addition to being deactivated. + + + + + A simple logger thats logs everything to the debugger. + + + + + A logger. + + + + + Logs the message as info. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the message as a warning. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the exception. + + The exception. + + + + Initializes a new instance of the class. + + The type. + + + + Logs the message as info. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the message as a warning. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the exception. + + The exception. + + + + Used to gather the results from multiple child elements which may or may not prevent closing. + + The type of child element. + + + + Used to gather the results from multiple child elements which may or may not prevent closing. + + The type of child element. + + + + Executes the strategy. + + Items that are requesting close. + The action to call when all enumeration is complete and the close results are aggregated. + The bool indicates whether close can occur. The enumerable indicates which children should close if the parent cannot. + + + + Creates an instance of the class. + + Indicates that even if all conducted items are not closable, those that are should be closed. The default is FALSE. + + + + Executes the strategy. + + Items that are requesting close. + The action to call when all enumeration is complete and the close results are aggregated. + The bool indicates whether close can occur. The enumerable indicates which children should close if the parent cannot. + + + + Default implementation for that does no platform enlightenment. + + + + + Interface for platform specific operations that need enlightenment. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread. + + The action to execute. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + The root element that was not created by the framework. + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + An to close the view model. + + + + Indicates whether or not the framework is in design-time mode. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + + Executes the action on the UI thread. + + The action to execute. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + + The root element that was not created by the framework. + + + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + true if the handler was executed immediately; false otherwise + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + + An to close the view model. + + + + + Indicates whether or not the framework is in design-time mode. + + + + + A result that executes an . + + + + + Initializes a new instance of the class. + + The action. + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + A result that executes a + + The type of the result. + + + + Allows custom code to execute after the return of a action. + + The type of the result. + + + + Gets the result of the asynchronous operation. + + + + + Initializes a new instance of the class. + + The action. + + + + Executes the result using the specified context. + + The context. + + + + Gets the result. + + + + + Occurs when execution has completed. + + + + + Extension methods for + + + + + Applies the action to each element in the list. + + The enumerable item's type. + The elements to enumerate. + The action to apply to each item in the list. + + + + Enables loosely-coupled publication of and subscription to events. + + + + + Enables loosely-coupled publication of and subscription to events. + + + + + Searches the subscribed handlers to check if we have a handler for + the message type supplied. + + The message type to check with + True if any handler is found, false if not. + + + + Subscribes an instance to all events declared through implementations of + + The instance to subscribe for event publication. + + + + Unsubscribes the instance from all events. + + The instance to unsubscribe. + + + + Publishes a message. + + The message instance. + Allows the publisher to provide a custom thread marshaller for the message publication. + + + + Processing of handler results on publication thread. + + + + + Searches the subscribed handlers to check if we have a handler for + the message type supplied. + + The message type to check with + True if any handler is found, false if not. + + + + Subscribes an instance to all events declared through implementations of + + The instance to subscribe for event publication. + + + + Unsubscribes the instance from all events. + + The instance to unsubscribe. + + + + Publishes a message. + + The message instance. + Allows the publisher to provide a custom thread marshaller for the message publication. + + + + Extensions for . + + + + + Publishes a message on the current thread (synchrone). + + The event aggregator. + The message instance. + + + + Publishes a message on a background thread (async). + + The event aggregator. + The message instance. + + + + Publishes a message on the UI thread. + + The event aggregator. + The message instance. + + + + Publishes a message on the UI thread asynchrone. + + The event aggregator. + The message instance. + + + + Publishes a message on the UI thread asynchrone. + + The event aggregator. + The message instance. + + + + Enables easy marshalling of code to the UI thread. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread. + + The action to execute. + + + + Indicates whether or not the framework is in design-time mode. + + + + + Extension for . + + + + + Converts an expression into a . + + The expression to convert. + The member info. + + + + Denotes a node within a parent/child hierarchy. + + The type of parent. + + + + Gets or Sets the Parent + + + + + A marker interface for classes that subscribe to messages. + + + + + Denotes a class which can handle a particular type of message. + + The type of message to handle. + + + + Handles the message. + + The message. + + + + Denotes a class which can handle a particular type of message and uses a Coroutine to do so. + + + + + Handle the message with a Coroutine. + + The message. + The coroutine to execute. + + + + Denotes a class which can handle a particular type of message and uses a Task to do so. + + + + + Handle the message with a Task. + + The message. + The Task that represents the operation. + + + + Used by the framework to pull instances from an IoC container and to inject dependencies into certain existing classes. + + + + + Gets an instance by type and key. + + + + + Gets all instances of a particular type. + + + + + Passes an existing instance to the IoC container to enable dependencies to be injected. + + + + + Gets an instance from the container. + + The type to resolve. + The key to look up. + The resolved instance. + + + + Gets all instances of a particular type. + + The type to resolve. + The resolved instances. + + + + Used to manage logging. + + + + + Creates an for the provided type. + + + + + A collection of extension methods to help with differing reflection between the portable library and SL5 + + + + + A result decorator that overrides of the decorated instance. + + + + + Initializes a new instance of the class. + + The result to decorate. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + Access the current . + + + + + Gets or sets the current . + + + + + A result decorator which rescues errors from the decorated result by executing a rescue coroutine. + + The type of the exception we want to perform the rescue on + + + + Initializes a new instance of the class. + + The result to decorate. + The rescue coroutine. + Set to true to cancel the result after executing rescue. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + The event args for the Completed event of an . + + + + + Gets or sets the error if one occurred. + + The error. + + + + Gets or sets a value indicating whether the result was cancelled. + + true if cancelled; otherwise, false. + + + + Extension methods for instances. + + + + + Adds behavior to the result which is executed when the was cancelled. + + The result to decorate. + The coroutine to execute when was canceled. + + + + + Overrides of the decorated instance. + + The result to decorate. + + + + + Rescues from the decorated by executing a coroutine. + + The type of the exception we want to perform the rescue on. + The result to decorate. + The rescue coroutine. + Set to true to cancel the result after executing rescue. + + + + + Rescues any exception from the decorated by executing a coroutine. + + The result to decorate. + The rescue coroutine. + Set to true to cancel the result after executing rescue. + + + + + Hosts extension methods for classes. + + + + + Activates the item if it implements , otherwise does nothing. + + The potential activatable. + + + + Deactivates the item if it implements , otherwise does nothing. + + The potential deactivatable. + Indicates whether or not to close the item after deactivating it. + + + + Closes the specified item. + + The conductor. + The item to close. + + + + Closes the specified item. + + The conductor. + The item to close. + + + + Activates a child whenever the specified parent is activated. + + The child to activate. + The parent whose activation triggers the child's activation. + + + + Deactivates a child whenever the specified parent is deactivated. + + The child to deactivate. + The parent whose deactivation triggers the child's deactivation. + + + + Activates and Deactivates a child whenever the specified parent is Activated or Deactivated. + + The child to activate/deactivate. + The parent whose activation/deactivation triggers the child's activation/deactivation. + + + + An implementation of that enables sequential execution of multiple results. + + + + + Initializes a new instance of the class. + + The enumerator. + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + A simple IoC container. + + + + + Initializes a new instance of the class. + + + + + Registers the instance. + + The service. + The key. + The implementation. + + + + Registers the class so that a new instance is created on every request. + + The service. + The key. + The implementation. + + + + Registers the class so that it is created once, on first request, and the same instance is returned to all requestors thereafter. + + The service. + The key. + The implementation. + + + + Registers a custom handler for serving requests from the container. + + The service. + The key. + The handler. + + + + Unregisters any handlers for the service/key that have previously been registered. + + The service. + The key. + + + + Requests an instance. + + The service. + The key. + The instance, or null if a handler is not found. + + + + Determines if a handler for the service/key has previously been registered. + + The service. + The key. + True if a handler is registere; false otherwise. + + + + Requests all instances of a given type. + + The service. + All the instances or an empty enumerable if none are found. + + + + Pushes dependencies into an existing instance based on interface properties with setters. + + The instance. + + + + Creates a child container. + + A new container. + + + + Actually does the work of creating the instance and satisfying it's constructor dependencies. + + The type. + + + + + Creates an instance of the type with the specified constructor arguments. + + The type. + The constructor args. + The created instance. + + + + Occurs when a new instance is created. + + + + + A simple result. + + + + + A result that is always succeeded. + + + + + A result that is always canceled. + + The result. + + + + A result that is always failed. + + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + Extension methods to bring and together. + + + + + Executes an asynchronous. + + The coroutine to execute. + The context to execute the coroutine within. + A task that represents the asynchronous coroutine. + + + + Executes an asynchronous. + + The type of the result. + The coroutine to execute. + The context to execute the coroutine within. + A task that represents the asynchronous coroutine. + + + + Encapsulates a task inside a couroutine. + + The task. + The coroutine that encapsulates the task. + + + + Encapsulates a task inside a couroutine. + + The type of the result. + The task. + The coroutine that encapsulates the task. + + + + A couroutine that encapsulates an . + + + + + Initializes a new instance of the class. + + The task. + + + + Executes the result using the specified context. + + The context. + + + + Called when the asynchronous task has completed. + + The completed task. + + + + Occurs when execution has completed. + + + + + A couroutine that encapsulates an . + + The type of the result. + + + + Initializes a new instance of the class. + + The task. + + + + Called when the asynchronous task has completed. + + The completed task. + + + + Gets the result of the asynchronous operation. + + + + + The event args for the event. + + + + + The view. + + + + + The context. + + + + + A dictionary in which the values are weak references. + + The type of keys in the dictionary. + The type of values in the dictionary. + + + + Initializes a new instance of the class that is empty, has the default initial capacity, and uses the default equality comparer for the key type. + + + + + Initializes a new instance of the class that contains elements copied from the specified and uses the default equality comparer for the key type. + + The whose elements are copied to the new . + + + + Initializes a new instance of the class that contains elements copied from the specified and uses the specified . + + The whose elements are copied to the new . + The implementation to use when comparing keys, or null to use the default for the type of the key. + + + + Initializes a new instance of the class that is empty, has the default initial capacity, and uses the specified . + + The implementation to use when comparing keys, or null to use the default for the type of the key. + + + + Initializes a new instance of the class that is empty, has the specified initial capacity, and uses the default equality comparer for the key type. + + The initial number of elements that the can contain. + + + + Initializes a new instance of the class that is empty, has the specified initial capacity, and uses the specified . + + The initial number of elements that the can contain. + The implementation to use when comparing keys, or null to use the default for the type of the key. + + + + Returns an enumerator that iterates through the . + + The enumerator. + + + + Removes all keys and values from the . + + + + + Adds the specified key and value to the dictionary. + + The key of the element to add. + The value of the element to add. The value can be null for reference types. + + + + Determines whether the contains the specified key. + + The key to locate in the . + + + + + Removes the value with the specified key from the . + + The key of the element to remove. + true if the element is successfully found and removed; otherwise, false. This method returns false if key is not found in the . + + + + Gets the value associated with the specified key. + + The key of the value to get. + + When this method returns, contains the value associated with the specified key, + if the key is found; otherwise, the default value for the type of the value parameter. + This parameter is passed uninitialized. + true if the contains an element with the specified key; otherwise, false. + + + + Gets the number of key/value pairs contained in the . + + + Since the items in the dictionary are held by weak reference, the count value + cannot be relied upon to guarantee the number of objects that would be discovered via + enumeration. Treat the Count as an estimate only. + + + + + Gets or sets the value associated with the specified key. + + The key of the value to get or set. + + The value associated with the specified key. If the specified key is not found, a get operation throws a , + and a set operation creates a new element with the specified key. + + + + + Gets a collection containing the keys in the . + + + + + Gets a collection containing the values in the . + + + + diff --git a/packages/Caliburn.Micro.Core.2.0.0/lib/net40/Caliburn.Micro.dll b/packages/Caliburn.Micro.Core.2.0.0/lib/net40/Caliburn.Micro.dll new file mode 100644 index 0000000..255cb40 Binary files /dev/null and b/packages/Caliburn.Micro.Core.2.0.0/lib/net40/Caliburn.Micro.dll differ diff --git a/packages/Caliburn.Micro.Core.2.0.0/lib/net45/Caliburn.Micro.dll b/packages/Caliburn.Micro.Core.2.0.0/lib/net45/Caliburn.Micro.dll new file mode 100644 index 0000000..a03440c Binary files /dev/null and b/packages/Caliburn.Micro.Core.2.0.0/lib/net45/Caliburn.Micro.dll differ diff --git a/packages/Caliburn.Micro.Core.2.0.0/lib/net45/Caliburn.Micro.xml b/packages/Caliburn.Micro.Core.2.0.0/lib/net45/Caliburn.Micro.xml new file mode 100644 index 0000000..5b17abd --- /dev/null +++ b/packages/Caliburn.Micro.Core.2.0.0/lib/net45/Caliburn.Micro.xml @@ -0,0 +1,2107 @@ + + + + Caliburn.Micro + + + + + EventArgs sent during activation. + + + + + Indicates whether the sender was initialized in addition to being activated. + + + + + Contains details about the success or failure of an item's activation through an . + + + + + The item whose activation was processed. + + + + + Gets or sets a value indicating whether the activation was a success. + + true if success; otherwise, false. + + + + A base collection class that supports automatic UI thread marshalling. + + The type of elements contained in the collection. + + + + Represents a collection that is observable. + + The type of elements contained in the collection. + + + + Extends such that the change event can be raised by external parties. + + + + + Notifies subscribers of the property change. + + Name of the property. + + + + Raises a change notification indicating that all bindings should be refreshed. + + + + + Enables/Disables property change notification. + + + + + Adds the range. + + The items. + + + + Removes the range. + + The items. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The collection from which the elements are copied. + + + + Notifies subscribers of the property change. + + Name of the property. + + + + Raises a change notification indicating that all bindings should be refreshed. + + + + + Inserts the item to the specified position. + + The index to insert at. + The item to be inserted. + + + + Exposes the base implementation of the function. + + The index. + The item. + + Used to avoid compiler warning regarding unverifiable code. + + + + + Sets the item at the specified position. + + The index to set the item at. + The item to set. + + + + Exposes the base implementation of the function. + + The index. + The item. + + Used to avoid compiler warning regarding unverifiable code. + + + + + Removes the item at the specified position. + + The position used to identify the item to remove. + + + + Exposes the base implementation of the function. + + The index. + + Used to avoid compiler warning regarding unverifiable code. + + + + + Clears the items contained by the collection. + + + + + Exposes the base implementation of the function. + + + Used to avoid compiler warning regarding unverifiable code. + + + + + Raises the event with the provided arguments. + + Arguments of the event being raised. + + + + Raises the PropertyChanged event with the provided arguments. + + The event data to report in the event. + + + + Adds the range. + + The items. + + + + Removes the range. + + The items. + + + + Enables/Disables property change notification. + + + + + An implementation of that holds on to and activates only one item at a time. + + + + + A base class for various implementations of that maintain an active item. + + The type that is being conducted. + + + + A base class for various implementations of . + + The type that is being conducted. + + + + A base implementation of . + + + + + A base implementation of which is capable of caching views by context. + + + + + A base class that implements the infrastructure for property change notification and automatically performs UI thread marshalling. + + + + + Creates an instance of . + + + + + Raises a change notification indicating that all bindings should be refreshed. + + + + + Notifies subscribers of the property change. + + Name of the property. + + + + Notifies subscribers of the property change. + + The type of the property. + The property expression. + + + + Raises the event directly. + + The instance containing the event data. + + + + Occurs when a property value changes. + + + + + Enables/Disables property change notification. + + + + + Denotes a class which is aware of its view(s). + + + + + Attaches a view to this instance. + + The view. + The context in which the view appears. + + + + Gets a view previously attached to this instance. + + The context denoting which view to retrieve. + The view. + + + + Raised when a view is attached. + + + + + The default view context. + + + + + Creates an instance of . + + + + + Called when a view is attached. + + The view. + The context in which the view appears. + + + + Called when an attached view's Loaded event fires. + + + + + + Called the first time the page's LayoutUpdated event fires after it is navigated to. + + + + + + Gets a view previously attached to this instance. + + The context denoting which view to retrieve. + The view. + + + + The view chache for this instance. + + + + + Raised when a view is attached. + + + + + Denotes an instance which implements , , + , and + + + + + Denotes an instance which has a display name. + + + + + Gets or Sets the Display Name + + + + + Denotes an instance which requires activation. + + + + + Activates this instance. + + + + + Indicates whether or not this instance is active. + + + + + Raised after activation occurs. + + + + + Denotes an instance which requires deactivation. + + + + + Deactivates this instance. + + Indicates whether or not this instance is being closed. + + + + Raised before deactivation. + + + + + Raised after deactivation. + + + + + Denotes an instance which may prevent closing. + + + + + Denotes an object that can be closed. + + + + + Tries to close this instance. + Also provides an opportunity to pass a dialog result to it's corresponding view. + + The dialog result. + + + + Called to check whether or not this instance can close. + + The implementer calls this action with the result of the close check. + + + + Denotes a node within a parent/child hierarchy. + + + + + Gets or Sets the Parent + + + + + Creates an instance of the screen. + + + + + Called when initializing. + + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Tries to close this instance by asking its Parent to initiate shutdown or by asking its corresponding view to close. + Also provides an opportunity to pass a dialog result to it's corresponding view. + + The dialog result. + + + + Gets or Sets the Parent + + + + + Gets or Sets the Display Name + + + + + Indicates whether or not this instance is currently active. + + + + + Indicates whether or not this instance is currently initialized. + + + + + Raised after activation occurs. + + + + + Raised before deactivation. + + + + + Raised after deactivation. + + + + + Denotes an instance which conducts other objects by managing an ActiveItem and maintaining a strict lifecycle. + + Conducted instances can optin to the lifecycle by impelenting any of the follosing , , . + + + + Interface used to define an object associated to a collection of children. + + + + + Gets the children. + + + The collection of children. + + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Occurs when an activation request is processed. + + + + + Interface used to define a specialized parent. + + The type of children. + + + + Gets the children. + + + The collection of children. + + + + + Gets the children. + + The collection of children. + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Called by a subclass when an activation needs processing. + + The item on which activation was attempted. + if set to true activation was successful. + + + + Ensures that an item is ready to be activated. + + + The item to be activated. + + + + Gets or sets the close strategy. + + The close strategy. + + + + Occurs when an activation request is processed. + + + + + An that also implements . + + + + + Denotes an instance which maintains an active item. + + + + + The currently active item. + + + + + Changes the active item. + + The new item to activate. + Indicates whether or not to close the previous active item. + + + + The currently active item. + + + + + The currently active item. + + + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Gets the children. + + The collection of children. + + + + An implementation of that holds on many items. + + + An implementation of that holds on many items. + + + + + An implementation of that holds on to many items wich are all activated. + + + + + Initializes a new instance of the class. + + if set to true opens public items that are properties of this class. + + + + Initializes a new instance of the class. + + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Called when initializing. + + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Gets the children. + + The collection of children. + + + + Ensures that an item is ready to be activated. + + + The item to be activated. + + + + Gets the items that are currently being conducted. + + + + + An implementation of that holds on many items but only activates one at a time. + + + + + Initializes a new instance of the class. + + + + + Gets the children. + + The collection of children. + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Determines the next item to activate based on the last active index. + + The list of possible active items. + The index of the last active item. + The next item to activate. + Called after an active item is closed. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Ensures that an item is ready to be activated. + + + The item to be activated. + + + + Gets the items that are currently being conducted. + + + + + Extension methods for the . + + + + + Registers a singleton. + + The type of the implementation. + The container. + The key. + The container. + + + + Registers a singleton. + + The type of the service. + The type of the implementation. + The container. + The key. + The container. + + + + Registers an service to be created on each request. + + The type of the implementation. + The container. + The key. + The container. + + + + Registers an service to be created on each request. + + The type of the service. + The type of the implementation. + The container. + The key. + The container. + + + + Registers an instance with the container. + + The type of the service. + The container. + The instance. + The container. + + + + Registers a custom service handler with the container. + + The type of the service. + The container. + The handler. + The container. + + + + Registers all specified types in an assembly as singleton in the container. + + The type of the service. + The container. + The assembly. + The type filter. + The container. + + + + Requests an instance. + + The type of the service. + The container. + The key. + The instance. + + + + Gets all instances of a particular type. + + The type to resolve. + The container. + The resolved instances. + + + + A result decorator which executes a coroutine when the wrapped result was cancelled. + + + + + Base class for all decorators. + + + + + Allows custom code to execute after the return of a action. + + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + Initializes a new instance of the class. + + The result to decorate. + + + + Executes the result using the specified context. + + The context. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Occurs when execution has completed. + + + + + Initializes a new instance of the class. + + The result to decorate. + The coroutine to execute when was canceled. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + Manages coroutine execution. + + + + + Creates the parent enumerator. + + + + + Executes a coroutine. + + The coroutine to execute. + The context to execute the coroutine within. + /// The completion callback for the coroutine. + + + + Executes a coroutine asynchronous. + + The coroutine to execute. + The context to execute the coroutine within. + A task that represents the asynchronous coroutine. + + + + Called upon completion of a coroutine. + + + + + The context used during the execution of a Coroutine. + + + + + The source from which the message originates. + + + + + The view associated with the target. + + + + + The instance on which the action is invoked. + + + + + EventArgs sent during deactivation. + + + + + Indicates whether the sender was closed in addition to being deactivated. + + + + + A simple logger thats logs everything to the debugger. + + + + + A logger. + + + + + Logs the message as info. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the message as a warning. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the exception. + + The exception. + + + + Initializes a new instance of the class. + + The type. + + + + Logs the message as info. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the message as a warning. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the exception. + + The exception. + + + + Used to gather the results from multiple child elements which may or may not prevent closing. + + The type of child element. + + + + Used to gather the results from multiple child elements which may or may not prevent closing. + + The type of child element. + + + + Executes the strategy. + + Items that are requesting close. + The action to call when all enumeration is complete and the close results are aggregated. + The bool indicates whether close can occur. The enumerable indicates which children should close if the parent cannot. + + + + Creates an instance of the class. + + Indicates that even if all conducted items are not closable, those that are should be closed. The default is FALSE. + + + + Executes the strategy. + + Items that are requesting close. + The action to call when all enumeration is complete and the close results are aggregated. + The bool indicates whether close can occur. The enumerable indicates which children should close if the parent cannot. + + + + Default implementation for that does no platform enlightenment. + + + + + Interface for platform specific operations that need enlightenment. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread. + + The action to execute. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + The root element that was not created by the framework. + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + An to close the view model. + + + + Indicates whether or not the framework is in design-time mode. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + + Executes the action on the UI thread. + + The action to execute. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + + The root element that was not created by the framework. + + + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + true if the handler was executed immediately; false otherwise + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + + An to close the view model. + + + + + Indicates whether or not the framework is in design-time mode. + + + + + A result that executes an . + + + + + Initializes a new instance of the class. + + The action. + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + A result that executes a + + The type of the result. + + + + Allows custom code to execute after the return of a action. + + The type of the result. + + + + Gets the result of the asynchronous operation. + + + + + Initializes a new instance of the class. + + The action. + + + + Executes the result using the specified context. + + The context. + + + + Gets the result. + + + + + Occurs when execution has completed. + + + + + Extension methods for + + + + + Applies the action to each element in the list. + + The enumerable item's type. + The elements to enumerate. + The action to apply to each item in the list. + + + + Enables loosely-coupled publication of and subscription to events. + + + + + Enables loosely-coupled publication of and subscription to events. + + + + + Searches the subscribed handlers to check if we have a handler for + the message type supplied. + + The message type to check with + True if any handler is found, false if not. + + + + Subscribes an instance to all events declared through implementations of + + The instance to subscribe for event publication. + + + + Unsubscribes the instance from all events. + + The instance to unsubscribe. + + + + Publishes a message. + + The message instance. + Allows the publisher to provide a custom thread marshaller for the message publication. + + + + Processing of handler results on publication thread. + + + + + Searches the subscribed handlers to check if we have a handler for + the message type supplied. + + The message type to check with + True if any handler is found, false if not. + + + + Subscribes an instance to all events declared through implementations of + + The instance to subscribe for event publication. + + + + Unsubscribes the instance from all events. + + The instance to unsubscribe. + + + + Publishes a message. + + The message instance. + Allows the publisher to provide a custom thread marshaller for the message publication. + + + + Extensions for . + + + + + Publishes a message on the current thread (synchrone). + + The event aggregator. + The message instance. + + + + Publishes a message on a background thread (async). + + The event aggregator. + The message instance. + + + + Publishes a message on the UI thread. + + The event aggregator. + The message instance. + + + + Publishes a message on the UI thread asynchrone. + + The event aggregator. + The message instance. + + + + Publishes a message on the UI thread asynchrone. + + The event aggregator. + The message instance. + + + + Enables easy marshalling of code to the UI thread. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread. + + The action to execute. + + + + Indicates whether or not the framework is in design-time mode. + + + + + Extension for . + + + + + Converts an expression into a . + + The expression to convert. + The member info. + + + + Denotes a node within a parent/child hierarchy. + + The type of parent. + + + + Gets or Sets the Parent + + + + + A marker interface for classes that subscribe to messages. + + + + + Denotes a class which can handle a particular type of message. + + The type of message to handle. + + + + Handles the message. + + The message. + + + + Denotes a class which can handle a particular type of message and uses a Coroutine to do so. + + + + + Handle the message with a Coroutine. + + The message. + The coroutine to execute. + + + + Denotes a class which can handle a particular type of message and uses a Task to do so. + + + + + Handle the message with a Task. + + The message. + The Task that represents the operation. + + + + Used by the framework to pull instances from an IoC container and to inject dependencies into certain existing classes. + + + + + Gets an instance by type and key. + + + + + Gets all instances of a particular type. + + + + + Passes an existing instance to the IoC container to enable dependencies to be injected. + + + + + Gets an instance from the container. + + The type to resolve. + The key to look up. + The resolved instance. + + + + Gets all instances of a particular type. + + The type to resolve. + The resolved instances. + + + + Used to manage logging. + + + + + Creates an for the provided type. + + + + + A result decorator that overrides of the decorated instance. + + + + + Initializes a new instance of the class. + + The result to decorate. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + Access the current . + + + + + Gets or sets the current . + + + + + A collection of extension methods to help with differing reflection between the portable library and SL5 + + + + + A result decorator which rescues errors from the decorated result by executing a rescue coroutine. + + The type of the exception we want to perform the rescue on + + + + Initializes a new instance of the class. + + The result to decorate. + The rescue coroutine. + Set to true to cancel the result after executing rescue. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + A simple result. + + + + + A result that is always succeeded. + + + + + A result that is always canceled. + + The result. + + + + A result that is always failed. + + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + The event args for the Completed event of an . + + + + + Gets or sets the error if one occurred. + + The error. + + + + Gets or sets a value indicating whether the result was cancelled. + + true if cancelled; otherwise, false. + + + + Extension methods for instances. + + + + + Adds behavior to the result which is executed when the was cancelled. + + The result to decorate. + The coroutine to execute when was canceled. + + + + + Overrides of the decorated instance. + + The result to decorate. + + + + + Rescues from the decorated by executing a coroutine. + + The type of the exception we want to perform the rescue on. + The result to decorate. + The rescue coroutine. + Set to true to cancel the result after executing rescue. + + + + + Rescues any exception from the decorated by executing a coroutine. + + The result to decorate. + The rescue coroutine. + Set to true to cancel the result after executing rescue. + + + + + Hosts extension methods for classes. + + + + + Activates the item if it implements , otherwise does nothing. + + The potential activatable. + + + + Deactivates the item if it implements , otherwise does nothing. + + The potential deactivatable. + Indicates whether or not to close the item after deactivating it. + + + + Closes the specified item. + + The conductor. + The item to close. + + + + Closes the specified item. + + The conductor. + The item to close. + + + + Activates a child whenever the specified parent is activated. + + The child to activate. + The parent whose activation triggers the child's activation. + + + + Deactivates a child whenever the specified parent is deactivated. + + The child to deactivate. + The parent whose deactivation triggers the child's deactivation. + + + + Activates and Deactivates a child whenever the specified parent is Activated or Deactivated. + + The child to activate/deactivate. + The parent whose activation/deactivation triggers the child's activation/deactivation. + + + + An implementation of that enables sequential execution of multiple results. + + + + + Initializes a new instance of the class. + + The enumerator. + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + A simple IoC container. + + + + + Initializes a new instance of the class. + + + + + Registers the instance. + + The service. + The key. + The implementation. + + + + Registers the class so that a new instance is created on every request. + + The service. + The key. + The implementation. + + + + Registers the class so that it is created once, on first request, and the same instance is returned to all requestors thereafter. + + The service. + The key. + The implementation. + + + + Registers a custom handler for serving requests from the container. + + The service. + The key. + The handler. + + + + Unregisters any handlers for the service/key that have previously been registered. + + The service. + The key. + + + + Requests an instance. + + The service. + The key. + The instance, or null if a handler is not found. + + + + Determines if a handler for the service/key has previously been registered. + + The service. + The key. + True if a handler is registere; false otherwise. + + + + Requests all instances of a given type. + + The service. + All the instances or an empty enumerable if none are found. + + + + Pushes dependencies into an existing instance based on interface properties with setters. + + The instance. + + + + Creates a child container. + + A new container. + + + + Actually does the work of creating the instance and satisfying it's constructor dependencies. + + The type. + + + + + Creates an instance of the type with the specified constructor arguments. + + The type. + The constructor args. + The created instance. + + + + Occurs when a new instance is created. + + + + + Extension methods to bring and together. + + + + + Executes an asynchronous. + + The coroutine to execute. + The context to execute the coroutine within. + A task that represents the asynchronous coroutine. + + + + Executes an asynchronous. + + The type of the result. + The coroutine to execute. + The context to execute the coroutine within. + A task that represents the asynchronous coroutine. + + + + Encapsulates a task inside a couroutine. + + The task. + The coroutine that encapsulates the task. + + + + Encapsulates a task inside a couroutine. + + The type of the result. + The task. + The coroutine that encapsulates the task. + + + + A couroutine that encapsulates an . + + + + + Initializes a new instance of the class. + + The task. + + + + Executes the result using the specified context. + + The context. + + + + Called when the asynchronous task has completed. + + The completed task. + + + + Occurs when execution has completed. + + + + + A couroutine that encapsulates an . + + The type of the result. + + + + Initializes a new instance of the class. + + The task. + + + + Called when the asynchronous task has completed. + + The completed task. + + + + Gets the result of the asynchronous operation. + + + + + The event args for the event. + + + + + The view. + + + + + The context. + + + + + A dictionary in which the values are weak references. + + The type of keys in the dictionary. + The type of values in the dictionary. + + + + Initializes a new instance of the class that is empty, has the default initial capacity, and uses the default equality comparer for the key type. + + + + + Initializes a new instance of the class that contains elements copied from the specified and uses the default equality comparer for the key type. + + The whose elements are copied to the new . + + + + Initializes a new instance of the class that contains elements copied from the specified and uses the specified . + + The whose elements are copied to the new . + The implementation to use when comparing keys, or null to use the default for the type of the key. + + + + Initializes a new instance of the class that is empty, has the default initial capacity, and uses the specified . + + The implementation to use when comparing keys, or null to use the default for the type of the key. + + + + Initializes a new instance of the class that is empty, has the specified initial capacity, and uses the default equality comparer for the key type. + + The initial number of elements that the can contain. + + + + Initializes a new instance of the class that is empty, has the specified initial capacity, and uses the specified . + + The initial number of elements that the can contain. + The implementation to use when comparing keys, or null to use the default for the type of the key. + + + + Returns an enumerator that iterates through the . + + The enumerator. + + + + Removes all keys and values from the . + + + + + Adds the specified key and value to the dictionary. + + The key of the element to add. + The value of the element to add. The value can be null for reference types. + + + + Determines whether the contains the specified key. + + The key to locate in the . + + + + + Removes the value with the specified key from the . + + The key of the element to remove. + true if the element is successfully found and removed; otherwise, false. This method returns false if key is not found in the . + + + + Gets the value associated with the specified key. + + The key of the value to get. + + When this method returns, contains the value associated with the specified key, + if the key is found; otherwise, the default value for the type of the value parameter. + This parameter is passed uninitialized. + true if the contains an element with the specified key; otherwise, false. + + + + Gets the number of key/value pairs contained in the . + + + Since the items in the dictionary are held by weak reference, the count value + cannot be relied upon to guarantee the number of objects that would be discovered via + enumeration. Treat the Count as an estimate only. + + + + + Gets or sets the value associated with the specified key. + + The key of the value to get or set. + + The value associated with the specified key. If the specified key is not found, a get operation throws a , + and a set operation creates a new element with the specified key. + + + + + Gets a collection containing the keys in the . + + + + + Gets a collection containing the values in the . + + + + diff --git a/packages/Caliburn.Micro.Core.2.0.0/lib/portable-net45+win8+wp8+wpa81/Caliburn.Micro.XML b/packages/Caliburn.Micro.Core.2.0.0/lib/portable-net45+win8+wp8+wpa81/Caliburn.Micro.XML new file mode 100644 index 0000000..5b17abd --- /dev/null +++ b/packages/Caliburn.Micro.Core.2.0.0/lib/portable-net45+win8+wp8+wpa81/Caliburn.Micro.XML @@ -0,0 +1,2107 @@ + + + + Caliburn.Micro + + + + + EventArgs sent during activation. + + + + + Indicates whether the sender was initialized in addition to being activated. + + + + + Contains details about the success or failure of an item's activation through an . + + + + + The item whose activation was processed. + + + + + Gets or sets a value indicating whether the activation was a success. + + true if success; otherwise, false. + + + + A base collection class that supports automatic UI thread marshalling. + + The type of elements contained in the collection. + + + + Represents a collection that is observable. + + The type of elements contained in the collection. + + + + Extends such that the change event can be raised by external parties. + + + + + Notifies subscribers of the property change. + + Name of the property. + + + + Raises a change notification indicating that all bindings should be refreshed. + + + + + Enables/Disables property change notification. + + + + + Adds the range. + + The items. + + + + Removes the range. + + The items. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The collection from which the elements are copied. + + + + Notifies subscribers of the property change. + + Name of the property. + + + + Raises a change notification indicating that all bindings should be refreshed. + + + + + Inserts the item to the specified position. + + The index to insert at. + The item to be inserted. + + + + Exposes the base implementation of the function. + + The index. + The item. + + Used to avoid compiler warning regarding unverifiable code. + + + + + Sets the item at the specified position. + + The index to set the item at. + The item to set. + + + + Exposes the base implementation of the function. + + The index. + The item. + + Used to avoid compiler warning regarding unverifiable code. + + + + + Removes the item at the specified position. + + The position used to identify the item to remove. + + + + Exposes the base implementation of the function. + + The index. + + Used to avoid compiler warning regarding unverifiable code. + + + + + Clears the items contained by the collection. + + + + + Exposes the base implementation of the function. + + + Used to avoid compiler warning regarding unverifiable code. + + + + + Raises the event with the provided arguments. + + Arguments of the event being raised. + + + + Raises the PropertyChanged event with the provided arguments. + + The event data to report in the event. + + + + Adds the range. + + The items. + + + + Removes the range. + + The items. + + + + Enables/Disables property change notification. + + + + + An implementation of that holds on to and activates only one item at a time. + + + + + A base class for various implementations of that maintain an active item. + + The type that is being conducted. + + + + A base class for various implementations of . + + The type that is being conducted. + + + + A base implementation of . + + + + + A base implementation of which is capable of caching views by context. + + + + + A base class that implements the infrastructure for property change notification and automatically performs UI thread marshalling. + + + + + Creates an instance of . + + + + + Raises a change notification indicating that all bindings should be refreshed. + + + + + Notifies subscribers of the property change. + + Name of the property. + + + + Notifies subscribers of the property change. + + The type of the property. + The property expression. + + + + Raises the event directly. + + The instance containing the event data. + + + + Occurs when a property value changes. + + + + + Enables/Disables property change notification. + + + + + Denotes a class which is aware of its view(s). + + + + + Attaches a view to this instance. + + The view. + The context in which the view appears. + + + + Gets a view previously attached to this instance. + + The context denoting which view to retrieve. + The view. + + + + Raised when a view is attached. + + + + + The default view context. + + + + + Creates an instance of . + + + + + Called when a view is attached. + + The view. + The context in which the view appears. + + + + Called when an attached view's Loaded event fires. + + + + + + Called the first time the page's LayoutUpdated event fires after it is navigated to. + + + + + + Gets a view previously attached to this instance. + + The context denoting which view to retrieve. + The view. + + + + The view chache for this instance. + + + + + Raised when a view is attached. + + + + + Denotes an instance which implements , , + , and + + + + + Denotes an instance which has a display name. + + + + + Gets or Sets the Display Name + + + + + Denotes an instance which requires activation. + + + + + Activates this instance. + + + + + Indicates whether or not this instance is active. + + + + + Raised after activation occurs. + + + + + Denotes an instance which requires deactivation. + + + + + Deactivates this instance. + + Indicates whether or not this instance is being closed. + + + + Raised before deactivation. + + + + + Raised after deactivation. + + + + + Denotes an instance which may prevent closing. + + + + + Denotes an object that can be closed. + + + + + Tries to close this instance. + Also provides an opportunity to pass a dialog result to it's corresponding view. + + The dialog result. + + + + Called to check whether or not this instance can close. + + The implementer calls this action with the result of the close check. + + + + Denotes a node within a parent/child hierarchy. + + + + + Gets or Sets the Parent + + + + + Creates an instance of the screen. + + + + + Called when initializing. + + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Tries to close this instance by asking its Parent to initiate shutdown or by asking its corresponding view to close. + Also provides an opportunity to pass a dialog result to it's corresponding view. + + The dialog result. + + + + Gets or Sets the Parent + + + + + Gets or Sets the Display Name + + + + + Indicates whether or not this instance is currently active. + + + + + Indicates whether or not this instance is currently initialized. + + + + + Raised after activation occurs. + + + + + Raised before deactivation. + + + + + Raised after deactivation. + + + + + Denotes an instance which conducts other objects by managing an ActiveItem and maintaining a strict lifecycle. + + Conducted instances can optin to the lifecycle by impelenting any of the follosing , , . + + + + Interface used to define an object associated to a collection of children. + + + + + Gets the children. + + + The collection of children. + + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Occurs when an activation request is processed. + + + + + Interface used to define a specialized parent. + + The type of children. + + + + Gets the children. + + + The collection of children. + + + + + Gets the children. + + The collection of children. + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Called by a subclass when an activation needs processing. + + The item on which activation was attempted. + if set to true activation was successful. + + + + Ensures that an item is ready to be activated. + + + The item to be activated. + + + + Gets or sets the close strategy. + + The close strategy. + + + + Occurs when an activation request is processed. + + + + + An that also implements . + + + + + Denotes an instance which maintains an active item. + + + + + The currently active item. + + + + + Changes the active item. + + The new item to activate. + Indicates whether or not to close the previous active item. + + + + The currently active item. + + + + + The currently active item. + + + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Gets the children. + + The collection of children. + + + + An implementation of that holds on many items. + + + An implementation of that holds on many items. + + + + + An implementation of that holds on to many items wich are all activated. + + + + + Initializes a new instance of the class. + + if set to true opens public items that are properties of this class. + + + + Initializes a new instance of the class. + + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Called when initializing. + + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Gets the children. + + The collection of children. + + + + Ensures that an item is ready to be activated. + + + The item to be activated. + + + + Gets the items that are currently being conducted. + + + + + An implementation of that holds on many items but only activates one at a time. + + + + + Initializes a new instance of the class. + + + + + Gets the children. + + The collection of children. + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Determines the next item to activate based on the last active index. + + The list of possible active items. + The index of the last active item. + The next item to activate. + Called after an active item is closed. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Ensures that an item is ready to be activated. + + + The item to be activated. + + + + Gets the items that are currently being conducted. + + + + + Extension methods for the . + + + + + Registers a singleton. + + The type of the implementation. + The container. + The key. + The container. + + + + Registers a singleton. + + The type of the service. + The type of the implementation. + The container. + The key. + The container. + + + + Registers an service to be created on each request. + + The type of the implementation. + The container. + The key. + The container. + + + + Registers an service to be created on each request. + + The type of the service. + The type of the implementation. + The container. + The key. + The container. + + + + Registers an instance with the container. + + The type of the service. + The container. + The instance. + The container. + + + + Registers a custom service handler with the container. + + The type of the service. + The container. + The handler. + The container. + + + + Registers all specified types in an assembly as singleton in the container. + + The type of the service. + The container. + The assembly. + The type filter. + The container. + + + + Requests an instance. + + The type of the service. + The container. + The key. + The instance. + + + + Gets all instances of a particular type. + + The type to resolve. + The container. + The resolved instances. + + + + A result decorator which executes a coroutine when the wrapped result was cancelled. + + + + + Base class for all decorators. + + + + + Allows custom code to execute after the return of a action. + + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + Initializes a new instance of the class. + + The result to decorate. + + + + Executes the result using the specified context. + + The context. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Occurs when execution has completed. + + + + + Initializes a new instance of the class. + + The result to decorate. + The coroutine to execute when was canceled. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + Manages coroutine execution. + + + + + Creates the parent enumerator. + + + + + Executes a coroutine. + + The coroutine to execute. + The context to execute the coroutine within. + /// The completion callback for the coroutine. + + + + Executes a coroutine asynchronous. + + The coroutine to execute. + The context to execute the coroutine within. + A task that represents the asynchronous coroutine. + + + + Called upon completion of a coroutine. + + + + + The context used during the execution of a Coroutine. + + + + + The source from which the message originates. + + + + + The view associated with the target. + + + + + The instance on which the action is invoked. + + + + + EventArgs sent during deactivation. + + + + + Indicates whether the sender was closed in addition to being deactivated. + + + + + A simple logger thats logs everything to the debugger. + + + + + A logger. + + + + + Logs the message as info. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the message as a warning. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the exception. + + The exception. + + + + Initializes a new instance of the class. + + The type. + + + + Logs the message as info. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the message as a warning. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the exception. + + The exception. + + + + Used to gather the results from multiple child elements which may or may not prevent closing. + + The type of child element. + + + + Used to gather the results from multiple child elements which may or may not prevent closing. + + The type of child element. + + + + Executes the strategy. + + Items that are requesting close. + The action to call when all enumeration is complete and the close results are aggregated. + The bool indicates whether close can occur. The enumerable indicates which children should close if the parent cannot. + + + + Creates an instance of the class. + + Indicates that even if all conducted items are not closable, those that are should be closed. The default is FALSE. + + + + Executes the strategy. + + Items that are requesting close. + The action to call when all enumeration is complete and the close results are aggregated. + The bool indicates whether close can occur. The enumerable indicates which children should close if the parent cannot. + + + + Default implementation for that does no platform enlightenment. + + + + + Interface for platform specific operations that need enlightenment. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread. + + The action to execute. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + The root element that was not created by the framework. + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + An to close the view model. + + + + Indicates whether or not the framework is in design-time mode. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + + Executes the action on the UI thread. + + The action to execute. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + + The root element that was not created by the framework. + + + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + true if the handler was executed immediately; false otherwise + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + + An to close the view model. + + + + + Indicates whether or not the framework is in design-time mode. + + + + + A result that executes an . + + + + + Initializes a new instance of the class. + + The action. + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + A result that executes a + + The type of the result. + + + + Allows custom code to execute after the return of a action. + + The type of the result. + + + + Gets the result of the asynchronous operation. + + + + + Initializes a new instance of the class. + + The action. + + + + Executes the result using the specified context. + + The context. + + + + Gets the result. + + + + + Occurs when execution has completed. + + + + + Extension methods for + + + + + Applies the action to each element in the list. + + The enumerable item's type. + The elements to enumerate. + The action to apply to each item in the list. + + + + Enables loosely-coupled publication of and subscription to events. + + + + + Enables loosely-coupled publication of and subscription to events. + + + + + Searches the subscribed handlers to check if we have a handler for + the message type supplied. + + The message type to check with + True if any handler is found, false if not. + + + + Subscribes an instance to all events declared through implementations of + + The instance to subscribe for event publication. + + + + Unsubscribes the instance from all events. + + The instance to unsubscribe. + + + + Publishes a message. + + The message instance. + Allows the publisher to provide a custom thread marshaller for the message publication. + + + + Processing of handler results on publication thread. + + + + + Searches the subscribed handlers to check if we have a handler for + the message type supplied. + + The message type to check with + True if any handler is found, false if not. + + + + Subscribes an instance to all events declared through implementations of + + The instance to subscribe for event publication. + + + + Unsubscribes the instance from all events. + + The instance to unsubscribe. + + + + Publishes a message. + + The message instance. + Allows the publisher to provide a custom thread marshaller for the message publication. + + + + Extensions for . + + + + + Publishes a message on the current thread (synchrone). + + The event aggregator. + The message instance. + + + + Publishes a message on a background thread (async). + + The event aggregator. + The message instance. + + + + Publishes a message on the UI thread. + + The event aggregator. + The message instance. + + + + Publishes a message on the UI thread asynchrone. + + The event aggregator. + The message instance. + + + + Publishes a message on the UI thread asynchrone. + + The event aggregator. + The message instance. + + + + Enables easy marshalling of code to the UI thread. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread. + + The action to execute. + + + + Indicates whether or not the framework is in design-time mode. + + + + + Extension for . + + + + + Converts an expression into a . + + The expression to convert. + The member info. + + + + Denotes a node within a parent/child hierarchy. + + The type of parent. + + + + Gets or Sets the Parent + + + + + A marker interface for classes that subscribe to messages. + + + + + Denotes a class which can handle a particular type of message. + + The type of message to handle. + + + + Handles the message. + + The message. + + + + Denotes a class which can handle a particular type of message and uses a Coroutine to do so. + + + + + Handle the message with a Coroutine. + + The message. + The coroutine to execute. + + + + Denotes a class which can handle a particular type of message and uses a Task to do so. + + + + + Handle the message with a Task. + + The message. + The Task that represents the operation. + + + + Used by the framework to pull instances from an IoC container and to inject dependencies into certain existing classes. + + + + + Gets an instance by type and key. + + + + + Gets all instances of a particular type. + + + + + Passes an existing instance to the IoC container to enable dependencies to be injected. + + + + + Gets an instance from the container. + + The type to resolve. + The key to look up. + The resolved instance. + + + + Gets all instances of a particular type. + + The type to resolve. + The resolved instances. + + + + Used to manage logging. + + + + + Creates an for the provided type. + + + + + A result decorator that overrides of the decorated instance. + + + + + Initializes a new instance of the class. + + The result to decorate. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + Access the current . + + + + + Gets or sets the current . + + + + + A collection of extension methods to help with differing reflection between the portable library and SL5 + + + + + A result decorator which rescues errors from the decorated result by executing a rescue coroutine. + + The type of the exception we want to perform the rescue on + + + + Initializes a new instance of the class. + + The result to decorate. + The rescue coroutine. + Set to true to cancel the result after executing rescue. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + A simple result. + + + + + A result that is always succeeded. + + + + + A result that is always canceled. + + The result. + + + + A result that is always failed. + + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + The event args for the Completed event of an . + + + + + Gets or sets the error if one occurred. + + The error. + + + + Gets or sets a value indicating whether the result was cancelled. + + true if cancelled; otherwise, false. + + + + Extension methods for instances. + + + + + Adds behavior to the result which is executed when the was cancelled. + + The result to decorate. + The coroutine to execute when was canceled. + + + + + Overrides of the decorated instance. + + The result to decorate. + + + + + Rescues from the decorated by executing a coroutine. + + The type of the exception we want to perform the rescue on. + The result to decorate. + The rescue coroutine. + Set to true to cancel the result after executing rescue. + + + + + Rescues any exception from the decorated by executing a coroutine. + + The result to decorate. + The rescue coroutine. + Set to true to cancel the result after executing rescue. + + + + + Hosts extension methods for classes. + + + + + Activates the item if it implements , otherwise does nothing. + + The potential activatable. + + + + Deactivates the item if it implements , otherwise does nothing. + + The potential deactivatable. + Indicates whether or not to close the item after deactivating it. + + + + Closes the specified item. + + The conductor. + The item to close. + + + + Closes the specified item. + + The conductor. + The item to close. + + + + Activates a child whenever the specified parent is activated. + + The child to activate. + The parent whose activation triggers the child's activation. + + + + Deactivates a child whenever the specified parent is deactivated. + + The child to deactivate. + The parent whose deactivation triggers the child's deactivation. + + + + Activates and Deactivates a child whenever the specified parent is Activated or Deactivated. + + The child to activate/deactivate. + The parent whose activation/deactivation triggers the child's activation/deactivation. + + + + An implementation of that enables sequential execution of multiple results. + + + + + Initializes a new instance of the class. + + The enumerator. + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + A simple IoC container. + + + + + Initializes a new instance of the class. + + + + + Registers the instance. + + The service. + The key. + The implementation. + + + + Registers the class so that a new instance is created on every request. + + The service. + The key. + The implementation. + + + + Registers the class so that it is created once, on first request, and the same instance is returned to all requestors thereafter. + + The service. + The key. + The implementation. + + + + Registers a custom handler for serving requests from the container. + + The service. + The key. + The handler. + + + + Unregisters any handlers for the service/key that have previously been registered. + + The service. + The key. + + + + Requests an instance. + + The service. + The key. + The instance, or null if a handler is not found. + + + + Determines if a handler for the service/key has previously been registered. + + The service. + The key. + True if a handler is registere; false otherwise. + + + + Requests all instances of a given type. + + The service. + All the instances or an empty enumerable if none are found. + + + + Pushes dependencies into an existing instance based on interface properties with setters. + + The instance. + + + + Creates a child container. + + A new container. + + + + Actually does the work of creating the instance and satisfying it's constructor dependencies. + + The type. + + + + + Creates an instance of the type with the specified constructor arguments. + + The type. + The constructor args. + The created instance. + + + + Occurs when a new instance is created. + + + + + Extension methods to bring and together. + + + + + Executes an asynchronous. + + The coroutine to execute. + The context to execute the coroutine within. + A task that represents the asynchronous coroutine. + + + + Executes an asynchronous. + + The type of the result. + The coroutine to execute. + The context to execute the coroutine within. + A task that represents the asynchronous coroutine. + + + + Encapsulates a task inside a couroutine. + + The task. + The coroutine that encapsulates the task. + + + + Encapsulates a task inside a couroutine. + + The type of the result. + The task. + The coroutine that encapsulates the task. + + + + A couroutine that encapsulates an . + + + + + Initializes a new instance of the class. + + The task. + + + + Executes the result using the specified context. + + The context. + + + + Called when the asynchronous task has completed. + + The completed task. + + + + Occurs when execution has completed. + + + + + A couroutine that encapsulates an . + + The type of the result. + + + + Initializes a new instance of the class. + + The task. + + + + Called when the asynchronous task has completed. + + The completed task. + + + + Gets the result of the asynchronous operation. + + + + + The event args for the event. + + + + + The view. + + + + + The context. + + + + + A dictionary in which the values are weak references. + + The type of keys in the dictionary. + The type of values in the dictionary. + + + + Initializes a new instance of the class that is empty, has the default initial capacity, and uses the default equality comparer for the key type. + + + + + Initializes a new instance of the class that contains elements copied from the specified and uses the default equality comparer for the key type. + + The whose elements are copied to the new . + + + + Initializes a new instance of the class that contains elements copied from the specified and uses the specified . + + The whose elements are copied to the new . + The implementation to use when comparing keys, or null to use the default for the type of the key. + + + + Initializes a new instance of the class that is empty, has the default initial capacity, and uses the specified . + + The implementation to use when comparing keys, or null to use the default for the type of the key. + + + + Initializes a new instance of the class that is empty, has the specified initial capacity, and uses the default equality comparer for the key type. + + The initial number of elements that the can contain. + + + + Initializes a new instance of the class that is empty, has the specified initial capacity, and uses the specified . + + The initial number of elements that the can contain. + The implementation to use when comparing keys, or null to use the default for the type of the key. + + + + Returns an enumerator that iterates through the . + + The enumerator. + + + + Removes all keys and values from the . + + + + + Adds the specified key and value to the dictionary. + + The key of the element to add. + The value of the element to add. The value can be null for reference types. + + + + Determines whether the contains the specified key. + + The key to locate in the . + + + + + Removes the value with the specified key from the . + + The key of the element to remove. + true if the element is successfully found and removed; otherwise, false. This method returns false if key is not found in the . + + + + Gets the value associated with the specified key. + + The key of the value to get. + + When this method returns, contains the value associated with the specified key, + if the key is found; otherwise, the default value for the type of the value parameter. + This parameter is passed uninitialized. + true if the contains an element with the specified key; otherwise, false. + + + + Gets the number of key/value pairs contained in the . + + + Since the items in the dictionary are held by weak reference, the count value + cannot be relied upon to guarantee the number of objects that would be discovered via + enumeration. Treat the Count as an estimate only. + + + + + Gets or sets the value associated with the specified key. + + The key of the value to get or set. + + The value associated with the specified key. If the specified key is not found, a get operation throws a , + and a set operation creates a new element with the specified key. + + + + + Gets a collection containing the keys in the . + + + + + Gets a collection containing the values in the . + + + + diff --git a/packages/Caliburn.Micro.Core.2.0.0/lib/portable-net45+win8+wp8+wpa81/Caliburn.Micro.dll b/packages/Caliburn.Micro.Core.2.0.0/lib/portable-net45+win8+wp8+wpa81/Caliburn.Micro.dll new file mode 100644 index 0000000..a03440c Binary files /dev/null and b/packages/Caliburn.Micro.Core.2.0.0/lib/portable-net45+win8+wp8+wpa81/Caliburn.Micro.dll differ diff --git a/packages/Caliburn.Micro.Core.2.0.0/lib/sl5/Caliburn.Micro.XML b/packages/Caliburn.Micro.Core.2.0.0/lib/sl5/Caliburn.Micro.XML new file mode 100644 index 0000000..eec337a --- /dev/null +++ b/packages/Caliburn.Micro.Core.2.0.0/lib/sl5/Caliburn.Micro.XML @@ -0,0 +1,2107 @@ + + + + Caliburn.Micro + + + + + EventArgs sent during activation. + + + + + Indicates whether the sender was initialized in addition to being activated. + + + + + Contains details about the success or failure of an item's activation through an . + + + + + The item whose activation was processed. + + + + + Gets or sets a value indicating whether the activation was a success. + + true if success; otherwise, false. + + + + A base collection class that supports automatic UI thread marshalling. + + The type of elements contained in the collection. + + + + Represents a collection that is observable. + + The type of elements contained in the collection. + + + + Extends such that the change event can be raised by external parties. + + + + + Notifies subscribers of the property change. + + Name of the property. + + + + Raises a change notification indicating that all bindings should be refreshed. + + + + + Enables/Disables property change notification. + + + + + Adds the range. + + The items. + + + + Removes the range. + + The items. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The collection from which the elements are copied. + + + + Notifies subscribers of the property change. + + Name of the property. + + + + Raises a change notification indicating that all bindings should be refreshed. + + + + + Inserts the item to the specified position. + + The index to insert at. + The item to be inserted. + + + + Exposes the base implementation of the function. + + The index. + The item. + + Used to avoid compiler warning regarding unverifiable code. + + + + + Sets the item at the specified position. + + The index to set the item at. + The item to set. + + + + Exposes the base implementation of the function. + + The index. + The item. + + Used to avoid compiler warning regarding unverifiable code. + + + + + Removes the item at the specified position. + + The position used to identify the item to remove. + + + + Exposes the base implementation of the function. + + The index. + + Used to avoid compiler warning regarding unverifiable code. + + + + + Clears the items contained by the collection. + + + + + Exposes the base implementation of the function. + + + Used to avoid compiler warning regarding unverifiable code. + + + + + Raises the event with the provided arguments. + + Arguments of the event being raised. + + + + Raises the PropertyChanged event with the provided arguments. + + The event data to report in the event. + + + + Adds the range. + + The items. + + + + Removes the range. + + The items. + + + + Enables/Disables property change notification. + + + + + An implementation of that holds on to and activates only one item at a time. + + + + + A base class for various implementations of that maintain an active item. + + The type that is being conducted. + + + + A base class for various implementations of . + + The type that is being conducted. + + + + A base implementation of . + + + + + A base implementation of which is capable of caching views by context. + + + + + A base class that implements the infrastructure for property change notification and automatically performs UI thread marshalling. + + + + + Creates an instance of . + + + + + Raises a change notification indicating that all bindings should be refreshed. + + + + + Notifies subscribers of the property change. + + Name of the property. + + + + Notifies subscribers of the property change. + + The type of the property. + The property expression. + + + + Raises the event directly. + + The instance containing the event data. + + + + Occurs when a property value changes. + + + + + Enables/Disables property change notification. + + + + + Denotes a class which is aware of its view(s). + + + + + Attaches a view to this instance. + + The view. + The context in which the view appears. + + + + Gets a view previously attached to this instance. + + The context denoting which view to retrieve. + The view. + + + + Raised when a view is attached. + + + + + The default view context. + + + + + Creates an instance of . + + + + + Called when a view is attached. + + The view. + The context in which the view appears. + + + + Called when an attached view's Loaded event fires. + + + + + + Called the first time the page's LayoutUpdated event fires after it is navigated to. + + + + + + Gets a view previously attached to this instance. + + The context denoting which view to retrieve. + The view. + + + + The view chache for this instance. + + + + + Raised when a view is attached. + + + + + Denotes an instance which implements , , + , and + + + + + Denotes an instance which has a display name. + + + + + Gets or Sets the Display Name + + + + + Denotes an instance which requires activation. + + + + + Activates this instance. + + + + + Indicates whether or not this instance is active. + + + + + Raised after activation occurs. + + + + + Denotes an instance which requires deactivation. + + + + + Deactivates this instance. + + Indicates whether or not this instance is being closed. + + + + Raised before deactivation. + + + + + Raised after deactivation. + + + + + Denotes an instance which may prevent closing. + + + + + Denotes an object that can be closed. + + + + + Tries to close this instance. + Also provides an opportunity to pass a dialog result to it's corresponding view. + + The dialog result. + + + + Called to check whether or not this instance can close. + + The implementer calls this action with the result of the close check. + + + + Denotes a node within a parent/child hierarchy. + + + + + Gets or Sets the Parent + + + + + Creates an instance of the screen. + + + + + Called when initializing. + + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Tries to close this instance by asking its Parent to initiate shutdown or by asking its corresponding view to close. + Also provides an opportunity to pass a dialog result to it's corresponding view. + + The dialog result. + + + + Gets or Sets the Parent + + + + + Gets or Sets the Display Name + + + + + Indicates whether or not this instance is currently active. + + + + + Indicates whether or not this instance is currently initialized. + + + + + Raised after activation occurs. + + + + + Raised before deactivation. + + + + + Raised after deactivation. + + + + + Denotes an instance which conducts other objects by managing an ActiveItem and maintaining a strict lifecycle. + + Conducted instances can optin to the lifecycle by impelenting any of the follosing , , . + + + + Interface used to define an object associated to a collection of children. + + + + + Gets the children. + + + The collection of children. + + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Occurs when an activation request is processed. + + + + + Interface used to define a specialized parent. + + The type of children. + + + + Gets the children. + + + The collection of children. + + + + + Gets the children. + + The collection of children. + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Called by a subclass when an activation needs processing. + + The item on which activation was attempted. + if set to true activation was successful. + + + + Ensures that an item is ready to be activated. + + + The item to be activated. + + + + Gets or sets the close strategy. + + The close strategy. + + + + Occurs when an activation request is processed. + + + + + An that also implements . + + + + + Denotes an instance which maintains an active item. + + + + + The currently active item. + + + + + Changes the active item. + + The new item to activate. + Indicates whether or not to close the previous active item. + + + + The currently active item. + + + + + The currently active item. + + + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Gets the children. + + The collection of children. + + + + An implementation of that holds on many items. + + + An implementation of that holds on many items. + + + + + An implementation of that holds on to many items wich are all activated. + + + + + Initializes a new instance of the class. + + if set to true opens public items that are properties of this class. + + + + Initializes a new instance of the class. + + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Called when initializing. + + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Gets the children. + + The collection of children. + + + + Ensures that an item is ready to be activated. + + + The item to be activated. + + + + Gets the items that are currently being conducted. + + + + + An implementation of that holds on many items but only activates one at a time. + + + + + Initializes a new instance of the class. + + + + + Gets the children. + + The collection of children. + + + + Activates the specified item. + + The item to activate. + + + + Deactivates the specified item. + + The item to close. + Indicates whether or not to close the item after deactivating it. + + + + Determines the next item to activate based on the last active index. + + The list of possible active items. + The index of the last active item. + The next item to activate. + Called after an active item is closed. + + + + Called to check whether or not this instance can close. + + The implementor calls this action with the result of the close check. + + + + Called when activating. + + + + + Called when deactivating. + + Inidicates whether this instance will be closed. + + + + Ensures that an item is ready to be activated. + + + The item to be activated. + + + + Gets the items that are currently being conducted. + + + + + Extension methods for the . + + + + + Registers a singleton. + + The type of the implementation. + The container. + The key. + The container. + + + + Registers a singleton. + + The type of the service. + The type of the implementation. + The container. + The key. + The container. + + + + Registers an service to be created on each request. + + The type of the implementation. + The container. + The key. + The container. + + + + Registers an service to be created on each request. + + The type of the service. + The type of the implementation. + The container. + The key. + The container. + + + + Registers an instance with the container. + + The type of the service. + The container. + The instance. + The container. + + + + Registers a custom service handler with the container. + + The type of the service. + The container. + The handler. + The container. + + + + Registers all specified types in an assembly as singleton in the container. + + The type of the service. + The container. + The assembly. + The type filter. + The container. + + + + Requests an instance. + + The type of the service. + The container. + The key. + The instance. + + + + Gets all instances of a particular type. + + The type to resolve. + The container. + The resolved instances. + + + + A result decorator which executes a coroutine when the wrapped result was cancelled. + + + + + Base class for all decorators. + + + + + Allows custom code to execute after the return of a action. + + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + Initializes a new instance of the class. + + The result to decorate. + + + + Executes the result using the specified context. + + The context. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Occurs when execution has completed. + + + + + Initializes a new instance of the class. + + The result to decorate. + The coroutine to execute when was canceled. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + Manages coroutine execution. + + + + + Creates the parent enumerator. + + + + + Executes a coroutine. + + The coroutine to execute. + The context to execute the coroutine within. + /// The completion callback for the coroutine. + + + + Executes a coroutine asynchronous. + + The coroutine to execute. + The context to execute the coroutine within. + A task that represents the asynchronous coroutine. + + + + Called upon completion of a coroutine. + + + + + The context used during the execution of a Coroutine. + + + + + The source from which the message originates. + + + + + The view associated with the target. + + + + + The instance on which the action is invoked. + + + + + EventArgs sent during deactivation. + + + + + Indicates whether the sender was closed in addition to being deactivated. + + + + + A simple logger thats logs everything to the debugger. + + + + + A logger. + + + + + Logs the message as info. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the message as a warning. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the exception. + + The exception. + + + + Initializes a new instance of the class. + + The type. + + + + Logs the message as info. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the message as a warning. + + A formatted message. + Parameters to be injected into the formatted message. + + + + Logs the exception. + + The exception. + + + + Used to gather the results from multiple child elements which may or may not prevent closing. + + The type of child element. + + + + Used to gather the results from multiple child elements which may or may not prevent closing. + + The type of child element. + + + + Executes the strategy. + + Items that are requesting close. + The action to call when all enumeration is complete and the close results are aggregated. + The bool indicates whether close can occur. The enumerable indicates which children should close if the parent cannot. + + + + Creates an instance of the class. + + Indicates that even if all conducted items are not closable, those that are should be closed. The default is FALSE. + + + + Executes the strategy. + + Items that are requesting close. + The action to call when all enumeration is complete and the close results are aggregated. + The bool indicates whether close can occur. The enumerable indicates which children should close if the parent cannot. + + + + Default implementation for that does no platform enlightenment. + + + + + Interface for platform specific operations that need enlightenment. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread. + + The action to execute. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + The root element that was not created by the framework. + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + An to close the view model. + + + + Indicates whether or not the framework is in design-time mode. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + + Executes the action on the UI thread. + + The action to execute. + + + + Used to retrieve the root, non-framework-created view. + + The view to search. + + The root element that was not created by the framework. + + + 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. + + + + + Executes the handler the fist time the view is loaded. + + The view. + The handler. + true if the handler was executed immediately; false otherwise + + + + Executes the handler the next time the view's LayoutUpdated event fires. + + The view. + The handler. + + + + Get the close action for the specified view model. + + The view model to close. + The associated views. + The dialog result. + + An to close the view model. + + + + + Indicates whether or not the framework is in design-time mode. + + + + + A result that executes an . + + + + + Initializes a new instance of the class. + + The action. + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + A result that executes a + + The type of the result. + + + + Allows custom code to execute after the return of a action. + + The type of the result. + + + + Gets the result of the asynchronous operation. + + + + + Initializes a new instance of the class. + + The action. + + + + Executes the result using the specified context. + + The context. + + + + Gets the result. + + + + + Occurs when execution has completed. + + + + + Extension methods for + + + + + Applies the action to each element in the list. + + The enumerable item's type. + The elements to enumerate. + The action to apply to each item in the list. + + + + Enables loosely-coupled publication of and subscription to events. + + + + + Enables loosely-coupled publication of and subscription to events. + + + + + Searches the subscribed handlers to check if we have a handler for + the message type supplied. + + The message type to check with + True if any handler is found, false if not. + + + + Subscribes an instance to all events declared through implementations of + + The instance to subscribe for event publication. + + + + Unsubscribes the instance from all events. + + The instance to unsubscribe. + + + + Publishes a message. + + The message instance. + Allows the publisher to provide a custom thread marshaller for the message publication. + + + + Processing of handler results on publication thread. + + + + + Searches the subscribed handlers to check if we have a handler for + the message type supplied. + + The message type to check with + True if any handler is found, false if not. + + + + Subscribes an instance to all events declared through implementations of + + The instance to subscribe for event publication. + + + + Unsubscribes the instance from all events. + + The instance to unsubscribe. + + + + Publishes a message. + + The message instance. + Allows the publisher to provide a custom thread marshaller for the message publication. + + + + Extensions for . + + + + + Publishes a message on the current thread (synchrone). + + The event aggregator. + The message instance. + + + + Publishes a message on a background thread (async). + + The event aggregator. + The message instance. + + + + Publishes a message on the UI thread. + + The event aggregator. + The message instance. + + + + Publishes a message on the UI thread asynchrone. + + The event aggregator. + The message instance. + + + + Publishes a message on the UI thread asynchrone. + + The event aggregator. + The message instance. + + + + Enables easy marshalling of code to the UI thread. + + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread asynchronously. + + The action to execute. + + + + Executes the action on the UI thread. + + The action to execute. + + + + Indicates whether or not the framework is in design-time mode. + + + + + Extension for . + + + + + Converts an expression into a . + + The expression to convert. + The member info. + + + + Denotes a node within a parent/child hierarchy. + + The type of parent. + + + + Gets or Sets the Parent + + + + + A marker interface for classes that subscribe to messages. + + + + + Denotes a class which can handle a particular type of message. + + The type of message to handle. + + + + Handles the message. + + The message. + + + + Denotes a class which can handle a particular type of message and uses a Coroutine to do so. + + + + + Handle the message with a Coroutine. + + The message. + The coroutine to execute. + + + + Denotes a class which can handle a particular type of message and uses a Task to do so. + + + + + Handle the message with a Task. + + The message. + The Task that represents the operation. + + + + Used by the framework to pull instances from an IoC container and to inject dependencies into certain existing classes. + + + + + Gets an instance by type and key. + + + + + Gets all instances of a particular type. + + + + + Passes an existing instance to the IoC container to enable dependencies to be injected. + + + + + Gets an instance from the container. + + The type to resolve. + The key to look up. + The resolved instance. + + + + Gets all instances of a particular type. + + The type to resolve. + The resolved instances. + + + + Used to manage logging. + + + + + Creates an for the provided type. + + + + + A result decorator that overrides of the decorated instance. + + + + + Initializes a new instance of the class. + + The result to decorate. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + Access the current . + + + + + Gets or sets the current . + + + + + A result decorator which rescues errors from the decorated result by executing a rescue coroutine. + + The type of the exception we want to perform the rescue on + + + + Initializes a new instance of the class. + + The result to decorate. + The rescue coroutine. + Set to true to cancel the result after executing rescue. + + + + Called when the execution of the decorated result has completed. + + The context. + The decorated result. + The instance containing the event data. + + + + The event args for the Completed event of an . + + + + + Gets or sets the error if one occurred. + + The error. + + + + Gets or sets a value indicating whether the result was cancelled. + + true if cancelled; otherwise, false. + + + + Extension methods for instances. + + + + + Adds behavior to the result which is executed when the was cancelled. + + The result to decorate. + The coroutine to execute when was canceled. + + + + + Overrides of the decorated instance. + + The result to decorate. + + + + + Rescues from the decorated by executing a coroutine. + + The type of the exception we want to perform the rescue on. + The result to decorate. + The rescue coroutine. + Set to true to cancel the result after executing rescue. + + + + + Rescues any exception from the decorated by executing a coroutine. + + The result to decorate. + The rescue coroutine. + Set to true to cancel the result after executing rescue. + + + + + Hosts extension methods for classes. + + + + + Activates the item if it implements , otherwise does nothing. + + The potential activatable. + + + + Deactivates the item if it implements , otherwise does nothing. + + The potential deactivatable. + Indicates whether or not to close the item after deactivating it. + + + + Closes the specified item. + + The conductor. + The item to close. + + + + Closes the specified item. + + The conductor. + The item to close. + + + + Activates a child whenever the specified parent is activated. + + The child to activate. + The parent whose activation triggers the child's activation. + + + + Deactivates a child whenever the specified parent is deactivated. + + The child to deactivate. + The parent whose deactivation triggers the child's deactivation. + + + + Activates and Deactivates a child whenever the specified parent is Activated or Deactivated. + + The child to activate/deactivate. + The parent whose activation/deactivation triggers the child's activation/deactivation. + + + + An implementation of that enables sequential execution of multiple results. + + + + + Initializes a new instance of the class. + + The enumerator. + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + A simple IoC container. + + + + + Initializes a new instance of the class. + + + + + Registers the instance. + + The service. + The key. + The implementation. + + + + Registers the class so that a new instance is created on every request. + + The service. + The key. + The implementation. + + + + Registers the class so that it is created once, on first request, and the same instance is returned to all requestors thereafter. + + The service. + The key. + The implementation. + + + + Registers a custom handler for serving requests from the container. + + The service. + The key. + The handler. + + + + Unregisters any handlers for the service/key that have previously been registered. + + The service. + The key. + + + + Requests an instance. + + The service. + The key. + The instance, or null if a handler is not found. + + + + Determines if a handler for the service/key has previously been registered. + + The service. + The key. + True if a handler is registere; false otherwise. + + + + Requests all instances of a given type. + + The service. + All the instances or an empty enumerable if none are found. + + + + Pushes dependencies into an existing instance based on interface properties with setters. + + The instance. + + + + Creates a child container. + + A new container. + + + + Actually does the work of creating the instance and satisfying it's constructor dependencies. + + The type. + + + + + Creates an instance of the type with the specified constructor arguments. + + The type. + The constructor args. + The created instance. + + + + Occurs when a new instance is created. + + + + + A simple result. + + + + + A result that is always succeeded. + + + + + A result that is always canceled. + + The result. + + + + A result that is always failed. + + + + + Executes the result using the specified context. + + The context. + + + + Occurs when execution has completed. + + + + + A collection of extension methods to help with differing reflection between the portable library and SL5 + + + + + Extension methods to bring and together. + + + + + Executes an asynchronous. + + The coroutine to execute. + The context to execute the coroutine within. + A task that represents the asynchronous coroutine. + + + + Executes an asynchronous. + + The type of the result. + The coroutine to execute. + The context to execute the coroutine within. + A task that represents the asynchronous coroutine. + + + + Encapsulates a task inside a couroutine. + + The task. + The coroutine that encapsulates the task. + + + + Encapsulates a task inside a couroutine. + + The type of the result. + The task. + The coroutine that encapsulates the task. + + + + A couroutine that encapsulates an . + + + + + Initializes a new instance of the class. + + The task. + + + + Executes the result using the specified context. + + The context. + + + + Called when the asynchronous task has completed. + + The completed task. + + + + Occurs when execution has completed. + + + + + A couroutine that encapsulates an . + + The type of the result. + + + + Initializes a new instance of the class. + + The task. + + + + Called when the asynchronous task has completed. + + The completed task. + + + + Gets the result of the asynchronous operation. + + + + + The event args for the event. + + + + + The view. + + + + + The context. + + + + + A dictionary in which the values are weak references. + + The type of keys in the dictionary. + The type of values in the dictionary. + + + + Initializes a new instance of the class that is empty, has the default initial capacity, and uses the default equality comparer for the key type. + + + + + Initializes a new instance of the class that contains elements copied from the specified and uses the default equality comparer for the key type. + + The whose elements are copied to the new . + + + + Initializes a new instance of the class that contains elements copied from the specified and uses the specified . + + The whose elements are copied to the new . + The implementation to use when comparing keys, or null to use the default for the type of the key. + + + + Initializes a new instance of the class that is empty, has the default initial capacity, and uses the specified . + + The implementation to use when comparing keys, or null to use the default for the type of the key. + + + + Initializes a new instance of the class that is empty, has the specified initial capacity, and uses the default equality comparer for the key type. + + The initial number of elements that the can contain. + + + + Initializes a new instance of the class that is empty, has the specified initial capacity, and uses the specified . + + The initial number of elements that the can contain. + The implementation to use when comparing keys, or null to use the default for the type of the key. + + + + Returns an enumerator that iterates through the . + + The enumerator. + + + + Removes all keys and values from the . + + + + + Adds the specified key and value to the dictionary. + + The key of the element to add. + The value of the element to add. The value can be null for reference types. + + + + Determines whether the contains the specified key. + + The key to locate in the . + + + + + Removes the value with the specified key from the . + + The key of the element to remove. + true if the element is successfully found and removed; otherwise, false. This method returns false if key is not found in the . + + + + Gets the value associated with the specified key. + + The key of the value to get. + + When this method returns, contains the value associated with the specified key, + if the key is found; otherwise, the default value for the type of the value parameter. + This parameter is passed uninitialized. + true if the contains an element with the specified key; otherwise, false. + + + + Gets the number of key/value pairs contained in the . + + + Since the items in the dictionary are held by weak reference, the count value + cannot be relied upon to guarantee the number of objects that would be discovered via + enumeration. Treat the Count as an estimate only. + + + + + Gets or sets the value associated with the specified key. + + The key of the value to get or set. + + The value associated with the specified key. If the specified key is not found, a get operation throws a , + and a set operation creates a new element with the specified key. + + + + + Gets a collection containing the keys in the . + + + + + Gets a collection containing the values in the . + + + + diff --git a/packages/Caliburn.Micro.Core.2.0.0/lib/sl5/Caliburn.Micro.dll b/packages/Caliburn.Micro.Core.2.0.0/lib/sl5/Caliburn.Micro.dll new file mode 100644 index 0000000..9ac2884 Binary files /dev/null and b/packages/Caliburn.Micro.Core.2.0.0/lib/sl5/Caliburn.Micro.dll differ