showform的时候可以设置显示的位置吗
BillShowParameter para = new BillShowParameter();
para.Status = OperationStatus.ADDNEW;
para.FormId = "*******";
materialShowViewId = Guid.NewGuid().ToString();
para.PageId = materialShowViewId;
para.ParentPageId = this.View.PageId;
para.OpenStyle.ShowType = ShowType.Floating;
para.CustomComplexParams["Photo"] = frontImg;
this.View.ShowForm(para, (ret) =>
{
if (ret.ReturnData != null && ret.ReturnData is bool)
{
if (Convert.ToBoolean(ret.ReturnData)) materialShowViewId = null;
}
});
推荐阅读