-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing controls to Visual Studio Toolbox (#4070)
## Fixes #3620 Adds almost all the Controls in the toolkit packages to the Visual Studio Toolbox. ## PR Type What kind of change does this PR introduce? - Bugfix - Feature - Code style update (formatting) - Build or CI related changes ## What is the current behavior? Many controls don't appear in the VS IDE Toolbox. ## What is the new behavior? The Controls now appear in the VS IDE Toolbox. ## PR Checklist Please check if your PR fulfills the following requirements: - [x] Tested code with current [supported SDKs](../readme.md#supported) - [x] Contains **NO** breaking changes ## Other information - If you're editing this patch tree, please `rebase` on latest `HEAD` and then commit, without updating from the latest `HEAD`. - When merging, please update the commit title to PR title instead of the default `Merge pull request #xxxx from repo/branch`, and commit message to either PR message or messages of individual commits. The `auto-merge` bot does this by default.
- Loading branch information
Showing
8 changed files
with
55 additions
and
9 deletions.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
Microsoft.Toolkit.Uwp.DeveloperTools/VisualStudioToolsManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 20 additions & 1 deletion
21
Microsoft.Toolkit.Uwp.UI.Controls.DataGrid/VisualStudioToolsManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,26 @@ | ||
<FileList> | ||
<File Reference="Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.dll"> | ||
<ToolboxItems VSCategory="Windows Community Toolkit" BlendCategory="Windows Community Toolkit"> | ||
<ToolboxItems UIFramework="UAP" | ||
VSCategory="Windows Community Toolkit" | ||
BlendCategory="Windows Community Toolkit"> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGrid" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridCell" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridCellsPresenter" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridColumn" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridBoundColumn" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridFillerColumn" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridCheckBoxColumn" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridComboBoxColumn" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridColumnHeader" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridColumnHeadersPresenter" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridDetailsPresenter" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridFrozenGrid" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridRow" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridRowHeader" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridRowGroupHeader" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridRowsPresenter" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridTemplateColumn" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.DataGridTextColumn" /> | ||
</ToolboxItems> | ||
</File> | ||
</FileList> |
10 changes: 9 additions & 1 deletion
10
Microsoft.Toolkit.Uwp.UI.Controls.Input/VisualStudioToolsManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
<FileList> | ||
<File Reference="Microsoft.Toolkit.Uwp.UI.Controls.Input.dll"> | ||
<ToolboxItems VSCategory="Windows Community Toolkit" BlendCategory="Windows Community Toolkit"> | ||
<ToolboxItems UIFramework="UAP" | ||
VSCategory="Windows Community Toolkit" | ||
BlendCategory="Windows Community Toolkit"> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.ColorPicker" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.ColorPickerButton" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.ColorPickerSlider" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.RadialGauge" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.RangeSelector" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.RemoteDevicePicker" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.TokenizingTextBox" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.TokenizingTextBoxItem" /> | ||
</ToolboxItems> | ||
</File> | ||
</FileList> |
5 changes: 4 additions & 1 deletion
5
Microsoft.Toolkit.Uwp.UI.Controls.Layout/VisualStudioToolsManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
Microsoft.Toolkit.Uwp.UI.Controls.Markdown/VisualStudioToolsManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 6 additions & 1 deletion
7
Microsoft.Toolkit.Uwp.UI.Controls.Media/VisualStudioToolsManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
<FileList> | ||
<File Reference="Microsoft.Toolkit.Uwp.UI.Controls.Media.dll"> | ||
<ToolboxItems VSCategory="Windows Community Toolkit" BlendCategory="Windows Community Toolkit"> | ||
<ToolboxItems UIFramework="UAP" | ||
VSCategory="Windows Community Toolkit" | ||
BlendCategory="Windows Community Toolkit"> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.Eyedropper" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.EyedropperToolButton" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.ImageCropper" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.ImageCropperThumb" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.InfiniteCanvas" /> | ||
<Item Type="Microsoft.Toolkit.Uwp.UI.Controls.InfiniteCanvasTextBox" /> | ||
</ToolboxItems> | ||
</File> | ||
</FileList> |
6 changes: 5 additions & 1 deletion
6
Microsoft.Toolkit.Uwp.UI.Controls.Primitives/VisualStudioToolsManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters