You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: hub/powertoys/command-palette/creating-an-extension.md
+14-8
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Command Palette Extensibility
3
-
description: The Command Palette provides a full extension model, allowing developers to create their own experiences for the palette. Find info about how to create an extension and publish it along with samples.
3
+
description: The Command Palette provides a full extension model, allowing you to create custom experiences for the palette. Learn how to create an extension and publish it.
The Command Palette provides a full extension model, allowing developers to create their own experiences for the palette. This document provides information about how to create an extension and publish it. It also includes a sample extension that demonstrates the extensibility model.
13
+
12
14
## Registering your extension
13
15
14
16
Extensions can register themselves with the Command Palette using their `.appxmanifest`. As an example:
15
17
16
-
```XML
18
+
```xml
17
19
<Extensions>
18
20
<com:ExtensionCategory="windows.comServer">
19
21
<com:ComServer>
@@ -43,14 +45,18 @@ Extensions can register themselves with the Command Palette using their `.appxma
43
45
</Extensions>
44
46
```
45
47
46
-
Notable elements:
47
-
48
-
- The application must specify a `Extensions.comExtension.ComServer` to host their COM class. This allows for the OS to register that GUID as a COM class we can instantiate.
48
+
### Important notes
49
49
50
-
- Make sure that this CLSID is unique, and matches the one in your application
50
+
Some notable elements about the manifest example:
51
51
52
+
- The application must specify a `Extensions.comExtension.ComServer` to host their COM class. This allows for the OS to register that GUID as a COM class we can instantiate.
53
+
- Make sure that this CLSID is unique, and matches the one in your application
52
54
- The application must specify a `Extensions.uap3Extension.AppExtension` with the Name set to `com.microsoft.commandpalette`. This is the unique identifier which DevPal can use to find it's extensions.
53
-
54
55
- In the `Properties` of your `AppExtension`, you must specify a `CmdPalProvider` element. This is where you specify the CLSID of the COM class that DevPal will instantiate to interact with your extension. Also, you specify which interfaces you support.
55
56
56
-
Currently, only `Commands` is supported. If we need to add more in the future, we can add them to the `SupportedInterfaces` element.
57
+
Currently, only `Commands` is supported. If we need to add more in the future, they will be added to the `SupportedInterfaces` element.
The **AnonymousCommand** class is a command that can be invoked without being associated with a specific command palette item. It is typically used for commands that do not require any parameters or additional context.
The **Invoke** method executes the command associated with the **AnonymousCommand** instance. This method does not require any parameters and can be called directly to trigger the command's action.
An [ICommandResult](../microsoft-commandpalette-extensions/icommandresult.md) object that represents the result of the command execution. The result may contain information about the success or failure of the command, as well as any relevant data returned by the command's action.
The **BaseObservable** class is a base class for objects that need to notify clients about changes to their properties. It implements the **INotifyPropChanged** interface and provides a **PropChanged** event.
18
+
17
19
## Events
18
20
19
21
| Event | Description |
20
22
| :--- | :--- |
21
-
| Windows.Foundation.TypedEventHandler<object, [IPropChangedEventArgs](../microsoft-commandpalette-extensions/ipropchangedeventargs.md)> PropChanged | Notifies that a property value has changed. |
23
+
| Windows.Foundation.TypedEventHandler\<object, [IPropChangedEventArgs](../microsoft-commandpalette-extensions/ipropchangedeventargs.md)\> PropChanged | Notifies that a property value has changed. |
22
24
23
25
## Methods
24
26
25
27
| Method | Description |
26
28
| :--- | :--- |
27
-
|[OnPropertyChanged(String)](baseobservable_onpropertychanged.md)| Raises the `PropChanged` event to notify that a property value has changed. |
29
+
|[OnPropertyChanged(String)](baseobservable_onpropertychanged.md)| Raises the **PropChanged** event to notify that a property value has changed. |
The **Choice** class represents a single choice in a choice set. It contains properties for the display text and value of the choice.
14
16
15
17
## Choice(String, String) Constructor
16
18
@@ -28,13 +30,17 @@ public Choice(string title, string value)
28
30
29
31
### Parameters
30
32
31
-
**`title`** String
33
+
*title***String**
34
+
35
+
The display text for the choice. This is the text that will be shown to the user in the UI.
36
+
37
+
*value***String**
32
38
33
-
**`value`** String
39
+
The value for the choice. This is the value that will be returned when the choice is selected. It can be any string that represents the choice in a meaningful way.
34
40
35
41
## Properties
36
42
37
43
| Property | Type | Description |
38
44
| :--- | :--- | :--- |
39
-
| Title | String||
40
-
| Value | String||
45
+
| Title |**String**| The display text for the choice.|
The **ChoiceSetSetting** class represents a setting that allows users to select from a predefined set of choices. This is useful for applications that need to provide users with a limited set of options to choose from, such as selecting a theme or a configuration option.
|[ChoiceSetSetting(String, List\<Choice\>)](choicesetsetting_constructor.md#choicesetsettingstring-listchoice-constructor)| Initializes a new instance of the **ChoiceSetSetting** class with a specified name and a list of choices.|
24
+
|[ChoiceSetSetting(String, String, String, List\<Choice\>)](choicesetsetting_constructor.md#choicesetsettingstring-string-string-listchoice-constructor)| Initializes a new instance of the **ChoiceSetSetting** class with a specified name, description, default value, and a list of choices.|
23
25
24
26
## Nested classes
25
27
26
28
| Class | Description |
27
29
| :--- | :--- |
28
-
|[Choice](choice.md)||
30
+
|[Choice](choice.md)|Represents a single choice in the choice set. Each choice has a name and a value. The name is displayed to the user, while the value is used internally by the application. |
29
31
30
32
## Properties
31
33
32
34
| Property | Type | Description |
33
35
| :--- | :--- | :--- |
34
-
| Choices | List<[Choice](choice.md)> ||
36
+
| Choices | List\<[Choice](choice.md)\>| Gets or sets the list of choices available in the choice set. Each choice is represented by an instance of the **Choice** class.|
|[LoadFromJson(JsonObject)](choicesetsetting_loadfromjson.md)|Loads the setting from a JSON object. This is useful for applications that need to deserialize settings from a configuration file or other JSON source. |
43
+
|[ToDictionary()](choicesetsetting_todictionary.md)|Converts the setting to a dictionary representation. This is useful for applications that need to serialize settings to a format that can be easily stored or transmitted. |
44
+
|[ToState()](choicesetsetting_tostate.md)|Converts the setting to a state representation. This is useful for applications that need to represent settings in a format that can be easily displayed or manipulated. |
45
+
|[Update(JsonObject)](choicesetsetting_update.md)|Updates the setting from a JSON object. This is useful for applications that need to apply changes to settings based on user input or other sources. |
Initializes a new instance of the [ChoiceSetSetting](choicesetsetting.md) class from the base [Setting](setting.md) class, setting its [Key](setting.md#properties) property to `key` and its [Choices](choicesetsetting.md#properties) set to `choices`.
17
+
Initializes a new instance of the [ChoiceSetSetting](choicesetsetting.md) class from the base [Setting](setting.md) class, setting its [Key](setting.md#properties) property to *key* and its [Choices](choicesetsetting.md#properties) set to *choices*.
The list of choices for the setting. Each choice is represented by a [Choice](choice.md) object, which contains the display text and value for the choice. The first choice in the list is used as the default value for the setting.
Initializes a new instance of the [ChoiceSetSetting](choicesetsetting.md) class from the base [Setting](setting.md) class, setting its [Key](setting.md#properties) property to `key`, its [Label](setting.md#properties) to `label`, its [Description](setting.md#properties) to `description`, and its [Choices](choicesetsetting.md#properties) to `choices`.
43
+
Initializes a new instance of the [ChoiceSetSetting](choicesetsetting.md) class from the base [Setting](setting.md) class, setting its [Key](setting.md#properties) property to *key*, its [Label](setting.md#properties) to *label*, its [Description](setting.md#properties) to *description*, and its [Choices](choicesetsetting.md#properties) to *choices*.
The key for the setting. This is a unique identifier that is used to reference the setting in the application.
58
+
59
+
*label***String**
60
+
61
+
The label for the setting. This is a user-friendly name that is displayed to the user in the application.
62
+
63
+
*description***String**
52
64
53
-
**`label`** String
65
+
The description for the setting. This provides additional information about the setting and its purpose.
54
66
55
-
**`description`** String
67
+
*choices***List\<[Choice](choice.md)\>**
56
68
57
-
**`choices`** List<[Choice](choice.md)>
69
+
The list of choices for the setting. Each choice is represented by a [Choice](choice.md) object, which contains the display text and value for the choice. The first choice in the list is used as the default value for the setting.
The **LoadFromJson** method loads the setting from a JSON object. This is useful for applications that need to initialize settings from a configuration file or other sources.
14
16
15
17
## Parameters
16
18
17
-
**`jsonObject`** JsonObject
19
+
*jsonObject***JsonObject**
20
+
21
+
The **JsonObject** that contains the values for the setting. This object should include the properties that need to be set, such as the name, description, default value, and list of choices.
18
22
19
23
## Returns
20
24
21
-
[ChoiceSetSetting](choicesetsetting.md)
25
+
A [ChoiceSetSetting](choicesetsetting.md) object that represents the loaded setting.
0 commit comments