This commit is contained in:
Oscar Calvo 2019-11-12 14:30:59 -08:00
Родитель 434ca7a293
Коммит 3452706e0a
1 изменённых файлов: 20 добавлений и 0 удалений

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

@ -191,6 +191,26 @@ namespace Microsoft.Toolkit.Forms.UI.XamlHost
}
}
/// <summary>
/// Gets or sets a value indicating whether a render transform is added to the UWP control corresponding to the current dpi scaling factor
/// if scaling is not supported natively by the XAML island
/// </summary>
/// <value>The dpi scaling mode.</value>
/// <remarks>A custom render transform added to the root UWP control will be overwritten.</remarks>
[ReadOnly(false)]
[Browsable(true)]
[DefaultValue(false)]
[Category("Layout")]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
[Deprecated("Custom scaling transform no longer required to handle Dpi", DeprecationType.Deprecate, 0)]
public bool DpiScalingRenderTransform
{
get => false;
set
{
}
}
/// <summary>
/// Clean up hosted UWP XAML content
/// </summary>