SelectionPolicy Class
A policy that makes all items in the selection available.
Namespace:
Microsoft.Windows.Design.Policies
Assembly: Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)
The SelectionPolicy type exposes the following members.
| Name | Description | |
|---|---|---|
|
Context | Gets the editing context for the designer. (Inherited from ItemPolicy.) |
|
IsSurrogate | Gets a value indicating whether the policy is a surrogate policy. (Inherited from ItemPolicy.) |
|
PolicyItems | Gets an enumeration of items that are affected by this policy. (Overrides ItemPolicy.PolicyItems.) |
| Name | Description | |
|---|---|---|
|
Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetPolicyItems | Returns the policy items from the specified selection. |
|
GetSurrogateItems | Returns an optional set of surrogate items for this item. (Inherited from ItemPolicy.) |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
IsInPolicy | Gets a value indicating whether the specified item is to be included in the policy. |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
OnActivated | Called when this policy is activated. (Overrides ItemPolicy.OnActivated().) |
|
OnDeactivated | Called when this policy is deactivated. (Overrides ItemPolicy.OnDeactivated().) |
|
OnPolicyItemsChanged | Raises the PolicyItemsChanged event. (Inherited from ItemPolicy.) |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
|
PolicyItemsChanged | Occurs when the policy changes. (Inherited from ItemPolicy.) |
Derive from this policy and override the IsInPolicy and GetPolicyItems methods to filter the selection as necessary.
The following code example shows how to implement a custom surrogate policy for the primary selection. For a full code listing, see How to: Create a Surrogate Policy.
// The DockPanelPolicy class implements a surrogate policy that // provides container semantics for a selected item. By using // this policy, the DemoDockPanel container control offers // additional tasks and adorners on its children. class DockPanelPolicy : PrimarySelectionPolicy { public override bool IsSurrogate { get { return true; } } public override IEnumerable<ModelItem> GetSurrogateItems(ModelItem item) { ModelItem parent = item.Parent; if (parent != null) { yield return parent; } } }