private void label16_MouseEnter(object sender, EventArgs e)
{
panelSummary.Show();
StockInfo temp = Game.getStockByLabelName(label16.Text);
// StockComp.Text = "Stock Company = " + temp.getStockName();// I got errors in this line
lbDispStockPrice.Text = "Stock price = " + temp.getPrice();
lbDispStock.Text = "Stock category = " + temp.getCategory();
owner.Text = "Property Of " + temp.getBuyer();
}
質問する
41 次