-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
198 changed files
with
3,795 additions
and
442 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
<Dependencies> | ||
<ProductDependencies> | ||
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Common" Version="9.0.0-prerelease.24112.1"> | ||
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Common" Version="9.0.0-prerelease.24112.4"> | ||
<Uri>https://github.com/dotnet/xharness</Uri> | ||
<Sha>2f3f51a1adec18475563c8a49fd9b668ae9f2f31</Sha> | ||
<Sha>11ae3663fe3de366ea3566d7ae9b4731adee2ca3</Sha> | ||
</Dependency> | ||
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Xunit" Version="9.0.0-prerelease.24112.1"> | ||
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Xunit" Version="9.0.0-prerelease.24112.4"> | ||
<Uri>https://github.com/dotnet/xharness</Uri> | ||
<Sha>2f3f51a1adec18475563c8a49fd9b668ae9f2f31</Sha> | ||
<Sha>11ae3663fe3de366ea3566d7ae9b4731adee2ca3</Sha> | ||
</Dependency> | ||
<Dependency Name="Microsoft.DotNet.XHarness.CLI" Version="9.0.0-prerelease.24112.1"> | ||
<Dependency Name="Microsoft.DotNet.XHarness.CLI" Version="9.0.0-prerelease.24112.4"> | ||
<Uri>https://github.com/dotnet/xharness</Uri> | ||
<Sha>2f3f51a1adec18475563c8a49fd9b668ae9f2f31</Sha> | ||
<Sha>11ae3663fe3de366ea3566d7ae9b4731adee2ca3</Sha> | ||
</Dependency> | ||
</ProductDependencies> | ||
</Dependencies> |
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
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
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
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
52 changes: 52 additions & 0 deletions
52
src/Controls/samples/Controls.Sample.UITests/Issues/Issue16918.xaml
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
x:Class="Maui.Controls.Sample.Issues.Issue16918" | ||
xmlns:ns="clr-namespace:Maui.Controls.Sample.Issues"> | ||
<ScrollView> | ||
<VerticalStackLayout | ||
Spacing="25" | ||
Padding="30,0" | ||
VerticalOptions="Center"> | ||
<Label | ||
Text="Image (SVG 40x40):" | ||
HorizontalOptions="Center" /> | ||
<Image | ||
Source="menu_entry_settings_40.png" | ||
SemanticProperties.Description="Cute dot net bot waving hi to you!" | ||
HeightRequest="40" | ||
HorizontalOptions="Center" | ||
x:Name="MenuImage" | ||
AutomationId="MenuImage"/> | ||
|
||
<Label | ||
Text="ImageButton (SVG 40x40):" | ||
HorizontalOptions="Center" /> | ||
<ImageButton | ||
Source="menu_entry_settings_40.png" | ||
SemanticProperties.Description="Cute dot net bot waving hi to you!" | ||
HeightRequest="40" | ||
BackgroundColor="Transparent" | ||
HorizontalOptions="Center" /> | ||
|
||
<Label | ||
Text="Image (SVG 210x210):" | ||
HorizontalOptions="Center" /> | ||
<Image | ||
Source="menu_entry_settings_210.png" | ||
SemanticProperties.Description="Cute dot net bot waving hi to you!" | ||
HeightRequest="40" | ||
HorizontalOptions="Center" /> | ||
|
||
<Label | ||
Text="ImageButton (SVG 210x210):" | ||
HorizontalOptions="Center" /> | ||
<ImageButton | ||
Source="menu_entry_settings_210.png" | ||
SemanticProperties.Description="Cute dot net bot waving hi to you!" | ||
HeightRequest="40" | ||
BackgroundColor="Transparent" | ||
HorizontalOptions="Center" /> | ||
</VerticalStackLayout> | ||
</ScrollView> | ||
</ContentPage> |
15 changes: 15 additions & 0 deletions
15
src/Controls/samples/Controls.Sample.UITests/Issues/Issue16918.xaml.cs
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using Microsoft.Maui.Controls; | ||
using Microsoft.Maui.Controls.Xaml; | ||
|
||
namespace Maui.Controls.Sample.Issues | ||
{ | ||
[XamlCompilation(XamlCompilationOptions.Compile)] | ||
[Issue(IssueTracker.Github, 16918, "ImageButton is not properly anti-aliased when scaled down", PlatformAffected.UWP)] | ||
public partial class Issue16918 : ContentPage | ||
{ | ||
public Issue16918() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} | ||
} |
Oops, something went wrong.