-
Couldn't load subscription status.
- Fork 1.4k
Update all relevant WinUI 2.5 revs to 2.6 #4092
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
0e68b0f
d451b1f
b1ce979
8aed05f
9abaac7
4ef6951
9ceabc1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -89,7 +89,7 @@ | |
| <Setter Property="FontFamily" Value="{ThemeResource ContentControlThemeFontFamily}" /> | ||
| <Setter Property="FontSize" Value="{ThemeResource ControlContentThemeFontSize}" /> | ||
| <Setter Property="TitleBarBackground" Value="{ThemeResource SystemControlBackgroundChromeMediumLowBrush}" /> | ||
| <Setter Property="Background" Value="{ThemeResource SystemControlBackgroundAltHighBrush}" /> | ||
| <Setter Property="Background" Value="{ThemeResource CardBackgroundFillColorDefaultBrush}" /> | ||
| <Setter Property="Foreground" Value="{ThemeResource SystemControlForegroundBaseHighBrush}" /> | ||
|
Comment on lines
91
to
93
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems to look a lot better, on dark and light system themes. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks good in Dark theme, Light theme ... a little less so. No telling if/when WinUI will move the goal posts on Light theme. |
||
| <Setter Property="TabNavigation" Value="Local" /> | ||
| <Setter Property="IsHoldingEnabled" Value="True" /> | ||
|
|
@@ -99,7 +99,7 @@ | |
| <Setter Property="Margin" Value="0" /> | ||
| <Setter Property="MinWidth" Value="{ThemeResource GridViewItemMinWidth}" /> | ||
| <Setter Property="MinHeight" Value="{ThemeResource GridViewItemMinHeight}" /> | ||
| <Setter Property="BorderBrush" Value="{ThemeResource SystemControlForegroundChromeHighBrush}" /> | ||
| <Setter Property="BorderBrush" Value="{ThemeResource CardStrokeColorDefaultBrush}" /> | ||
| <Setter Property="BorderThickness" Value="1" /> | ||
|
Comment on lines
101
to
103
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This seemed to go well with it. |
||
| <Setter Property="IsTabStop" Value="False" /> | ||
| <Setter Property="IsExpanded" Value="True"/> | ||
|
|
@@ -156,8 +156,7 @@ | |
| Background="{TemplateBinding CloseButtonBackground}" | ||
| Style="{StaticResource ButtonRevealStyle}" | ||
| BorderThickness="1" | ||
| Width="32" | ||
| Height="32" | ||
| VerticalAlignment="Stretch" | ||
| Content="" | ||
| FontFamily="Segoe MDL2 Assets" | ||
|
Comment on lines
158
to
161
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @michael-hawker @XAML-Knight, let me know what you think about solving the problem like this. I figured if the button changes underneath us again this would handle it best. Another option was to just make the width bigger based on the increased padding. |
||
| FontSize="14" | ||
|
|
@@ -169,8 +168,7 @@ | |
| Background="{TemplateBinding CloseButtonBackground}" | ||
| Style="{StaticResource ButtonRevealStyle}" | ||
| BorderThickness="1" | ||
| Width="32" | ||
| Height="32" | ||
| VerticalAlignment="Stretch" | ||
| Content="" | ||
| FontFamily="Segoe MDL2 Assets" | ||
| FontSize="14" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| Microsoft.NET.CoreFramework.Debug.2.2.appx | ||
| Microsoft.NET.CoreRuntime.2.2.appx | ||
| Microsoft.UI.Xaml.2.5.appx | ||
| Microsoft.UI.Xaml.2.6.appx | ||
| Microsoft.VCLibs.x86.Debug.14.00.appx |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| Microsoft.NET.Native.Framework.2.2.appx | ||
| Microsoft.NET.Native.Runtime.2.2.appx | ||
| Microsoft.UI.Xaml.2.5.appx | ||
| Microsoft.UI.Xaml.2.6.appx | ||
| Microsoft.VCLibs.x86.14.00.appx |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@michael-hawker, this isolates from the WinUI change, not sure if it isolates too much and if we should do something to try to reflex the changed is style from WinUI?