0

在显示 Telerik RadDesktopAlert 后,我​​尝试更改 AutoClose 关闭属性,但它似乎不起作用。

我发现的唯一方法是再次隐藏和显示 DesktopAlert。

所以 :

RadDesktopAlert alert = new RadDesktopAlert();
alert.Show();
alert.AutoClose = true;

不起作用,因为在弹出显示属性更新后似乎不会考虑。

所以我找到的唯一方法是:

RadDesktopAlert alert = new RadDesktopAlert();
alert.Show();
alert.AutoClose = true;
alert.Hide();
alert.Show();
4

1 回答 1

0

也许您想更改RadDesktopAlert.AutoCloseDelay 属性的默认值 10 秒。

于 2013-01-08T13:48:34.280 回答