Merge pull request #65 from jfversluis/update-pre9

Fix build pipeline and update dependencies
This commit is contained in:
Javier Suárez 2021-10-13 10:58:40 +02:00 коммит произвёл GitHub
Родитель 49bdbfbd2f a95a0eaaf4
Коммит d1fbdc7c3d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
8 изменённых файлов: 23 добавлений и 15 удалений

Просмотреть файл

@ -83,8 +83,8 @@
</PropertyGroup>
<ItemGroup Condition="$(TargetFramework.Contains('-windows')) == true ">
<PackageReference Include="Microsoft.Graphics.Win2D" Version="0.8.2.23" />
<PackageReference Include="Microsoft.Maui.Graphics.Win2D.WinUI.Desktop" Version="6.0.100-rc.1.382" />
<PackageReference Include="Microsoft.Graphics.Win2D" Version="1.0.0.26-experimental1" />
<PackageReference Include="Microsoft.Maui.Graphics.Win2D.WinUI.Desktop" Version="6.0.101-preview.9.512" />
</ItemGroup>
</Project>

Просмотреть файл

@ -12,7 +12,7 @@
<PackageId>Microsoft.Maui.Graphics.Controls</PackageId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Maui.Graphics" Version="6.0.100-rc.1.382" />
<PackageReference Include="Microsoft.Maui.Graphics" Version="6.0.101-preview.9.512" />
</ItemGroup>
<Import Project="..\..\Microsoft.Maui.Graphics.Controls.MultiTargeting.targets" />
</Project>

Просмотреть файл

@ -11,10 +11,10 @@ namespace Microsoft.Maui.Graphics.Controls
public static PropertyMapper<IButton> PropertyMapper = new PropertyMapper<IButton>(ViewHandler.Mapper)
{
[nameof(IButton.Background)] = ViewHandler.MapInvalidate,
[nameof(IButton.Text)] = ViewHandler.MapInvalidate,
[nameof(IButton.TextColor)] = ViewHandler.MapInvalidate,
[nameof(IButton.Font)] = ViewHandler.MapInvalidate,
[nameof(IButton.CharacterSpacing)] = ViewHandler.MapInvalidate,
[nameof(IText.Text)] = ViewHandler.MapInvalidate,
[nameof(ITextStyle.TextColor)] = ViewHandler.MapInvalidate,
[nameof(ITextStyle.Font)] = ViewHandler.MapInvalidate,
[nameof(ITextStyle.CharacterSpacing)] = ViewHandler.MapInvalidate,
[nameof(IButton.Padding)] = ViewHandler.MapInvalidate
};

Просмотреть файл

@ -31,13 +31,15 @@
{
canvas.SaveState();
canvas.FontColor = button.TextColor.WithDefault(Cupertino.Color.Label.Light.White);
var textColor = (button as ITextStyle)?.TextColor;
canvas.FontColor = textColor?.WithDefault(Cupertino.Color.Label.Light.White);
canvas.FontSize = 17f;
var height = dirtyRect.Height;
var width = dirtyRect.Width;
canvas.DrawString(button.Text, 0, 0, width, height, HorizontalAlignment.Center, VerticalAlignment.Center);
var text = (button as IText)?.Text;
canvas.DrawString(text, 0, 0, width, height, HorizontalAlignment.Center, VerticalAlignment.Center);
canvas.RestoreState();
}

Просмотреть файл

@ -67,7 +67,10 @@
canvas.SaveState();
if (button.IsEnabled)
canvas.FontColor = button.TextColor.WithDefault(Fluent.Color.Foreground.White);
{
var textColor = (button as ITextStyle)?.TextColor;
canvas.FontColor = textColor?.WithDefault(Fluent.Color.Foreground.White);
}
else
canvas.FontColor = Fluent.Color.Foreground.NeutralPrimary.ToColor();
@ -76,7 +79,8 @@
var height = dirtyRect.Height;
var width = dirtyRect.Width;
canvas.DrawString(button.Text, 0, 0, width, height, HorizontalAlignment.Center, VerticalAlignment.Center);
var text = (button as IText)?.Text;
canvas.DrawString(text, 0, 0, width, height, HorizontalAlignment.Center, VerticalAlignment.Center);
canvas.RestoreState();
}

Просмотреть файл

@ -42,7 +42,8 @@ namespace Microsoft.Maui.Graphics.Controls
canvas.FontName = "Roboto";
canvas.FontColor = button.TextColor.WithDefault(button.IsEnabled ? Material.Color.White : Material.Color.Gray1);
var textColor = (button as ITextStyle)?.TextColor;
canvas.FontColor = textColor?.WithDefault(button.IsEnabled ? Material.Color.White : Material.Color.Gray1);
canvas.FontSize = Material.Font.Button;
@ -51,7 +52,8 @@ namespace Microsoft.Maui.Graphics.Controls
var width = dirtyRect.Width;
canvas.DrawString(button.Text.ToUpper(), x, y, width, MaterialBackgroundHeight, HorizontalAlignment.Center, VerticalAlignment.Center);
var text = (button as IText)?.Text;
canvas.DrawString(text?.ToUpper(), x, y, width, MaterialBackgroundHeight, HorizontalAlignment.Center, VerticalAlignment.Center);
canvas.RestoreState();
}

Просмотреть файл

@ -71,7 +71,7 @@ namespace Microsoft.Maui.Graphics.Controls
{
if (!(Drawable is MaterialEntryDrawable))
return;
bool hasText = !string.IsNullOrEmpty(VirtualView.Text);
if (hasText)

Просмотреть файл

@ -7,7 +7,7 @@ namespace Microsoft.Maui.Graphics.Controls
{
public static Color WithDefault(this Color color, string defaultColor)
{
if (!color.IsDefault())
if (color != null && !color.IsDefault())
return color;
else
return Color.FromArgb(defaultColor);