1、下面是xml文件的数据
2、下面是代码取数据代码
3、下面是赋值的界面
PaperSize paperSize = new PaperSize();
try
{
paperSize.Width = int.Parse(this.txtPaperWidth.Text);
paperSize.Height = int.Parse(this.txtPaperHeight.Text);
pi.PaperSize = paperSize;
}
catch
{
SpreedGlobal.MsgShow("自定义纸张格式只能是整数", SpreedGlobal.enumMsgIconType.Error);
}
|