第1个回答 2009-10-10
与其动态添加属性,我个人觉得添加全部属性然后动态返回值比较好。
public TextBox tb
{
____get{
________if(isTextBox) return _tb;
________else return null;
________}
}
public Size size
{
____get{
________if(isTextBox) return null;
________else return _size;
________}
}
个人意见仅供参考。
第2个回答 2009-10-09
if(IsTextbos)
{
添加TextBox
}
else
{
添加Size,Location
}
第3个回答 2009-10-10
在代码里用判断语句判断IsTextbos 的值就行啦