Xaml 如何设置sitecore向导窗体的默认高度

Xaml 如何设置sitecore向导窗体的默认高度,xaml,sitecore,Xaml,Sitecore,当向导表单显示在sitecore后端时,如何设置默认表单高度?当前默认的弹出窗体不够高 string width = "208px”; string height = "190px”; Context.ClientPage.ClientResponse.ShowModalDialog("/sitecore/shell/~/xaml/your.custom.xaml.aspx", width, height, String.Empty, true); 模式对话框的大小将保留在用户配置文件中,因此

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

string width = "208px”;
string height = "190px”;
Context.ClientPage.ClientResponse.ShowModalDialog("/sitecore/shell/~/xaml/your.custom.xaml.aspx", width, height, String.Empty, true);
模式对话框的大小将保留在用户配置文件中,因此在测试时,请与不同的用户登录

希望这有帮助