我正在更改this class,在更改背景颜色时会添加填充。
在drawBackground方法中,如何检查...
public DataTable DTLines
{
get
{
return testDT;
}
set
{
testDT = value;
OnPropertyChanged("DTLines");
}
}
...
private void ExecuteCloseLang()
{
TestDT.Columns.Remove("German");
// What do I put here to remove the line?
}
是否为最后一行?