Esempio n. 1
0
 public OneAttributeForm(IPassedForm originalForm, string labelValue, string reference)
 {
     Text = labelValue;
     InitializeComponent();
     this.originalForm = originalForm;
     label.Text        = labelValue;
     this.reference    = reference;
 }
 public EditFund(IPassedForm passedForm, Fund fund)
 {
     InitializeComponent();
     this.fund       = fund;
     this.passedForm = passedForm;
     InitializeCustomComponents();
     LoadFundProperties();
     LoadAssetAllocationTable();
     CalcTotals();
 }
Esempio n. 3
0
 public OneAttributeForm(IPassedForm originalForm, string labelValue, string reference, string textBoxText) : this(originalForm, labelValue, reference)
 {
     textBox1.Text = textBoxText;
 }