示例#1
0
 public PostProperty SetCtlPrintCopies(string name, NumericUpDown ctl)
 {
     _ctlPrintCopies = new PostPropertyItem<NumericUpDown, int>(name, ctl);
     return this;
 }
示例#2
0
 public PostProperty SetCtlPrintFooter(string name, TextBox ctl)
 {
     _ctlPrintFooter = new PostPropertyItem<TextBox, string>(name, ctl);
     return this;
 }
示例#3
0
 public PostProperty SetCtlEnabled(string name, CheckBox ctl)
 {
     _ctlEnabled = new PostPropertyItem<CheckBox, bool>(name, ctl);
     return this;
 }
示例#4
0
 public PostProperty SetCtlImageOff(string name, TextBox ctl)
 {
     _ctlImageOff = new PostPropertyItem<TextBox, string>(name, ctl);
     return this;
 }
示例#5
0
 public PostProperty SetCtlCaption(string name, TextBox ctl)
 {
     _ctlCaption = new PostPropertyItem<TextBox, string>(name, ctl);
     return this;
 }