public void ShowTextInForm(string address, string content) { if (isShow) { LogForm lf = new LogForm(); lf.Text = address; lf.logBox.Text = content; lf.Show(); } }
public AuctionLog(bool isShow) { this.logText = new StringBuilder(); this.logForm = new LogForm(); this.isShow = isShow; }