Skip to content

Commit 67f0920

Browse files
committed
add remaining classes
1 parent d387553 commit 67f0920

File tree

87 files changed

+2392
-32
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+2392
-32
lines changed

hub/dev-environment/toc.yml

Lines changed: 276 additions & 24 deletions
Large diffs are not rendered by default.

hub/powertoys/command-palette/microsoft-commandpalette-extensions-toolkit/commanditem.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Implements [ICommandItem](../microsoft-commandpalette-extensions/icommanditem.md
2020

2121
| Constructor | Description |
2222
| :--- | :--- |
23-
| [CommandItem(ICommand)](commanditem_constructor.md) | |
24-
| [CommandItem(ICommandItem)](commanditem_constructor.md) | |
23+
| [CommandItem(ICommand)](commanditem_constructor.md#commanditemicommand-constructor) | |
24+
| [CommandItem(ICommandItem)](commanditem_constructor.md#commanditemicommanditem-constructor) | |
2525

2626
## Properties
2727

hub/powertoys/command-palette/microsoft-commandpalette-extensions-toolkit/detailslink.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Implements [IDetailsLink](../microsoft-commandpalette-extensions/idetailslink.md
1818

1919
| Constructor | Description |
2020
| :--- | :--- |
21-
| [DetailsLink()](detailslink_constructor.md) | |
22-
| [DetailsLink(String)](detailslink_constructor.md) | |
23-
| [DetailsLink(String, String)](detailslink_constructor.md) | |
21+
| [DetailsLink()](detailslink_constructor.md#detailslink-constructor) | |
22+
| [DetailsLink(String)](detailslink_constructor.md#detailslinkstring-constructor) | |
23+
| [DetailsLink(String, String)](detailslink_constructor.md#detailslinkstring-string-constructor) | |
2424

2525
## Properties
2626

hub/powertoys/command-palette/microsoft-commandpalette-extensions-toolkit/icondata.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Implements [IIconData](../microsoft-commandpalette-extensions/iicondata.md)
1818

1919
| Constructor | Description |
2020
| :--- | :--- |
21-
| [IconData()]() | Initializes the `Icon` property with an empty string. |
22-
| [IconData(IRandomAccessStreamReference)]() | Initializes the `Data` property with the provided `IRandomAccessStreamReference`. |
23-
| [IconData(String)]() | Initializes the `Icon` property with the provided `String`. |
21+
| [IconData()](icondata_constructor.md#icondata-constructor) | Initializes the `Icon` property with an empty string. |
22+
| [IconData(IRandomAccessStreamReference)](icondata_constructor.md#icondatairandomaccessstreamreference-constructor) | Initializes the `Data` property with the provided `IRandomAccessStreamReference`. |
23+
| [IconData(String)](icondata_constructor.md#icondatastring-constructor) | Initializes the `Icon` property with the provided `String`. |
2424

2525
## Properties
2626

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: ItemsChangedEventArgs Class
3+
description:
4+
ms.date: 2/25/2025
5+
ms.topic: reference
6+
no-loc: [PowerToys, Windows, Insider]
7+
---
8+
9+
# ItemsChangedEventArgs Class
10+
11+
## Definition
12+
13+
Namespace: [Microsoft.CommandPalette.Extensions.Toolkit](microsoft-commandpalette-extensions.toolkit.md)
14+
15+
Implements [IItemsChangedEventArgs](../microsoft-commandpalette-extensions/iitemschangedeventargs.md)
16+
17+
## Constructors
18+
19+
| Constructor | Description |
20+
| :--- | :--- |
21+
| [ItemsChangedEventArgs(Integer)](itemschangedeventargs_constructor.md) | |
22+
23+
## Properties
24+
25+
| Property | Type | Description |
26+
| :--- | :--- | :--- |
27+
| TotalItems | Integer | |
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: ItemsChangedEventArgs Constructors
3+
description:
4+
ms.date: 2/25/2025
5+
ms.topic: reference
6+
no-loc: [PowerToys, Windows, Insider]
7+
---
8+
9+
# ItemsChangedEventArgs Constructors
10+
11+
## ItemsChangedEventArgs(Integer) Constructor
12+
13+
### Definition
14+
15+
Namespace: [Microsoft.CommandPalette.Extensions.Toolkit](microsoft-commandpalette-extensions.toolkit.md)
16+
17+
Initializes a new instance of the [ItemsChangedEventArgs](itemschangedeventargs.md) class with the [TotalItems](itemschangedeventargs.md#properties) property set to `totalItems` that defaults to -1.
18+
19+
```C#
20+
public ItemsChangedEventArgs(int totalItems = -1)
21+
{
22+
TotalItems = totalItems;
23+
}
24+
```
25+
26+
### Parameters
27+
28+
**`totalItems`** Integer
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: JsonSettingsManager Class
3+
description:
4+
ms.date: 2/25/2025
5+
ms.topic: reference
6+
no-loc: [PowerToys, Windows, Insider]
7+
---
8+
9+
# JsonSettingsManager Class
10+
11+
## Definition
12+
13+
Namespace: [Microsoft.CommandPalette.Extensions.Toolkit](microsoft-commandpalette-extensions.toolkit.md)
14+
15+
## Properties
16+
17+
| Property | Type | Description |
18+
| :--- | :--- | :--- |
19+
| FilePath | String | |
20+
| Settings | [Settings](settings.md) | |
21+
22+
## Methods
23+
24+
| Method | Description |
25+
| :--- | :--- |
26+
| [LoadSettings()](jsonsettingsmanager_loadsettings.md) | |
27+
| [SaveSettings()](jsonsettingsmanager_savesettings.md) | |
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: JsonSettingsManager.LoadSettings() Method
3+
description:
4+
ms.date: 2/25/2025
5+
ms.topic: reference
6+
no-loc: [PowerToys, Windows, Insider]
7+
---
8+
9+
# JsonSettingsManager.LoadSettings Method
10+
11+
## Definition
12+
13+
Namespace: [Microsoft.CommandPalette.Extensions.Toolkit](microsoft-commandpalette-extensions.toolkit.md)
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: JsonSettingsManager.SaveSettings() Method
3+
description:
4+
ms.date: 2/25/2025
5+
ms.topic: reference
6+
no-loc: [PowerToys, Windows, Insider]
7+
---
8+
9+
# JsonSettingsManager.SaveSettings Method
10+
11+
## Definition
12+
13+
Namespace: [Microsoft.CommandPalette.Extensions.Toolkit](microsoft-commandpalette-extensions.toolkit.md)
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: KeyChordHelpers Class
3+
description:
4+
ms.date: 2/25/2025
5+
ms.topic: reference
6+
no-loc: [PowerToys, Windows, Insider]
7+
---
8+
9+
# KeyChordHelpers Class
10+
11+
## Definition
12+
13+
Namespace: [Microsoft.CommandPalette.Extensions.Toolkit](microsoft-commandpalette-extensions.toolkit.md)
14+
15+
## Methods
16+
17+
| Method | Description |
18+
| :--- | :--- |
19+
| [FromModifiers(Boolean, Boolean, Boolean, Boolean, Integer, Integer)](keychordhelpers_frommodifiers.md) | |

0 commit comments

Comments
 (0)