update avalonia to preview6 code.

This commit is contained in:
Dan Walmsley 2020-10-22 12:51:26 +01:00
Родитель 4865ee1dc5
Коммит ddec6451e0
5 изменённых файлов: 7 добавлений и 7 удалений

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

@ -2,6 +2,6 @@
<PropertyGroup>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AvaloniaVersion>0.10.0-preview5</AvaloniaVersion>
<AvaloniaVersion>0.10.999-cibuild0011494-beta</AvaloniaVersion>
</PropertyGroup>
</Project>

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

@ -2,7 +2,7 @@
<configuration>
<packageSources>
<clear />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="avalonia-ci" value="https://www.myget.org/F/avalonia-ci/api/v2" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="AvaloniaCI" value="https://nuget.avaloniaui.net/repository/avalonia-all/index.json" />
</packageSources>
</configuration>

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

@ -1059,7 +1059,7 @@ namespace AvaloniaEdit.Rendering
var properties = new TextRunProperties
{
FontSize = FontSize,
Typeface = FontManager.Current.GetOrAddTypeface(TextBlock.GetFontFamily(this), TextBlock.GetFontStyle(this), TextBlock.GetFontWeight(this)),
Typeface = new Typeface(TextBlock.GetFontFamily(this), TextBlock.GetFontStyle(this), TextBlock.GetFontWeight(this)),
ForegroundBrush = TextBlock.GetForeground(this),
CultureInfo = CultureInfo.CurrentCulture
};

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

@ -166,7 +166,7 @@ namespace AvaloniaEdit.Text
var formattedText = new FormattedText
{
Text = stringRange.ToString(),
Typeface = FontManager.Current.GetOrAddTypeface(tf.FontFamily, tf.Style, tf.Weight),
Typeface = new Typeface(tf.FontFamily, tf.Style, tf.Weight),
FontSize = run.FontSize
};
@ -200,7 +200,7 @@ namespace AvaloniaEdit.Text
var size = new FormattedText
{
Text = StringRange[i].ToString(),
Typeface = FontManager.Current.GetOrAddTypeface(tf.FontFamily, tf.Style, tf.Weight),
Typeface = new Typeface(tf.FontFamily, tf.Style, tf.Weight),
FontSize = FontSize
}.Bounds.Size;

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

@ -59,7 +59,7 @@ namespace AvaloniaEdit.Utils
var formattedText = new FormattedText
{
Text = text,
Typeface = FontManager.Current.GetOrAddTypeface(typeface),
Typeface = new Typeface(typeface.Name),
FontSize = emSize.Value
};