Hello, Erwin,
You can use the following workaround:
private void Popup_PopupOpening(object sender, CancelEventArgs args)
{
var popup = sender as DesktopAlertPopup;
SizeF dpiScale = NativeMethods.GetMonitorDpi(Screen.FromPoint(popup.Location), NativeMethods.DpiType.Effective);
popup.Scale(dpiScale);
Size popupSize = popup.Size;
if (popup.LastShowDpiScaleFactor.IsEmpty)
{
popupSize = TelerikDpiHelper.ScaleSize(popupSize, dpiScale);
}
popup.Size = popupSize;
}
Regards,
Nadya | Tech Support Engineer
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.