mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
[Build]Fully enable XamlStyler (#31505)
This commit is contained in:
committed by
GitHub
parent
561545af71
commit
1a5349bf1e
@@ -107,7 +107,7 @@ if (-not $Passive)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
Write-Output "Checking all files (passively)"
|
Write-Output "Checking all files (passively)"
|
||||||
$files = Get-ChildItem -Path "$PSScriptRoot\..\src\*.xaml" -Recurse | Select-Object -ExpandProperty FullName | Where-Object { $_ -notmatch "(\\obj\\)|(\\bin\\)|(\\x64\\)|(\\Generated Files\\PowerRenameXAML\\)|(\\colorPicker\\ColorPickerUI\\)" }
|
$files = Get-ChildItem -Path "$PSScriptRoot\..\src\*.xaml" -Recurse | Select-Object -ExpandProperty FullName | Where-Object { $_ -notmatch "(\\obj\\)|(\\bin\\)|(\\x64\\)|(\\Generated Files\\PowerRenameXAML\\)" }
|
||||||
|
|
||||||
if ($files.count -gt 0)
|
if ($files.count -gt 0)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,20 +1,21 @@
|
|||||||
<Window x:Class="ColorPicker.ZoomWindow"
|
<Window
|
||||||
|
x:Class="ColorPicker.ZoomWindow"
|
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
||||||
xmlns:e="http://schemas.microsoft.com/xaml/behaviors"
|
|
||||||
xmlns:behaviors="clr-namespace:ColorPicker.Behaviors"
|
xmlns:behaviors="clr-namespace:ColorPicker.Behaviors"
|
||||||
mc:Ignorable="d"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:e="http://schemas.microsoft.com/xaml/behaviors"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
Title="Zoom window"
|
Title="Zoom window"
|
||||||
WindowStyle="None"
|
|
||||||
Topmost="True"
|
|
||||||
AllowsTransparency="True"
|
AllowsTransparency="True"
|
||||||
Background="Transparent"
|
Background="Transparent"
|
||||||
ShowInTaskbar="False"
|
Focusable="False"
|
||||||
ResizeMode="NoResize"
|
ResizeMode="NoResize"
|
||||||
Focusable="False">
|
ShowInTaskbar="False"
|
||||||
|
Topmost="True"
|
||||||
|
WindowStyle="None"
|
||||||
|
mc:Ignorable="d">
|
||||||
<e:Interaction.Behaviors>
|
<e:Interaction.Behaviors>
|
||||||
<behaviors:CloseZoomWindowBehavior/>
|
<behaviors:CloseZoomWindowBehavior />
|
||||||
</e:Interaction.Behaviors>
|
</e:Interaction.Behaviors>
|
||||||
</Window>
|
</Window>
|
||||||
|
|||||||
Reference in New Issue
Block a user