예제 #1
0
        private void btnShow_Click(object sender, EventArgs e)
        {
            txtBxPropNo.Text       = myResProp.PropNo.ToString();
            txtBxPropName.Text     = myResProp.PropName;
            txtBxPropAddress1.Text = myResProp.PropAddress1;
            txtBxPropValue.Text    = myResProp.PropValue.ToString();

            txtType.Text     = myResProp.ResType;
            txtLawnCost.Text = myResProp.ResLawnMaintCost.ToString();
            txtAcreage.Text  = myResProp.ResAcres.ToString();

            txtBxRent.Text = myResProp.RentCalc(myResProp.PropValue).ToString();
        }