如何设置sitecore向导表单的默认高度

时间:2011-11-29 05:32:08

标签: xaml sitecore

当sitecore后端显示向导表单时,如何设置默认表单高度?目前默认的弹出窗体不够高。

1 个答案:

答案 0 :(得分:2)

string width = "208px”;
string height = "190px”;
Context.ClientPage.ClientResponse.ShowModalDialog("/sitecore/shell/~/xaml/your.custom.xaml.aspx", width, height, String.Empty, true);

模态对话框大小正在用户个人资料中保留,因此在测试时,请与不同的用户一起登录。

希望这有帮助