你使用 Visual Studio .NET来创建一个控件,此控件将被你的应用程序中的多个窗体使 用。这是一个客户标签(Label)控件,用来检索和显示你公司当前的股票价格。控件将在 很多具有不同背景的窗体中显示。你希望控件尽可能多的显示潜在的窗体, 你要确保股票价 格是可见的,而这个矩形控件本身并不显示出来。你需要在控件的 Load事件中添加代码来 完成这些需求,你该采用哪两段代码? ( ) A. this.BackColor = Color.Transparent; B. this.ForeColor = Color.Transparent; C. this.BackImage = null; D. this.SetStyle(ControlStyles.UserPaint, false); E. this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);