我在一个窗体(名称是A)中打开另外一个窗体(名称是B).我希望B窗体的上面有这样的文字,A-->B.
FormB b = new FormB();
b.Text = a.Text + "-- >" + b.Text;
b.ShowDiag();