我有一个图像控件作为类的属性之一。
public Image ImageControl
{
get
{
return _imgControl;
}
set
{
_imgControl = value;
}
}
在类构造函数中,使用this是否正确
ImageControl.Width = bi.PixelWidth;
ImageControl.Height = bi.PixelHeight;
ImageControl.Source = bi;
或这个?
_imgControl.Width = bi.PixelWidth;
_imgControl.Height = bi.PixelHeight;
_imgControl.Source = bi;
我只是想知道因为ImageControl本身是一个包含属性的控件,它如何影响_imageControl的值?