Skip to content

Commit

Permalink
Merge branch 'microsoft:main' into launch-apps-3350
Browse files Browse the repository at this point in the history
  • Loading branch information
jefflord authored Feb 28, 2024
2 parents e523562 + 725c8e8 commit 36e43f6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .pipelines/applyXamlStyling.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ if (-not $Passive)
else
{
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)
{
Expand Down
35 changes: 18 additions & 17 deletions src/modules/colorPicker/ColorPickerUI/ZoomWindow.xaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
<Window x:Class="ColorPicker.ZoomWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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"
mc:Ignorable="d"
Title="Zoom window"
WindowStyle="None"
Topmost="True"
AllowsTransparency="True"
Background="Transparent"
ShowInTaskbar="False"
ResizeMode="NoResize"
Focusable="False">
<Window
x:Class="ColorPicker.ZoomWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:behaviors="clr-namespace:ColorPicker.Behaviors"
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"
AllowsTransparency="True"
Background="Transparent"
Focusable="False"
ResizeMode="NoResize"
ShowInTaskbar="False"
Topmost="True"
WindowStyle="None"
mc:Ignorable="d">
<e:Interaction.Behaviors>
<behaviors:CloseZoomWindowBehavior/>
<behaviors:CloseZoomWindowBehavior />
</e:Interaction.Behaviors>
</Window>

0 comments on commit 36e43f6

Please sign in to comment.