我有
List<Canvas> cv = new List<Canvas>();
List<Button> btn = new List<Button>();
但我不能这样做:
cv.Add(btn);
如何将Button列表添加到Canvas列表?
答案 0 :(得分:1)
您不能将一个按钮列表添加到画布列表中,因为按钮列表不是画布。
如果可能的话,如果你写下
会发生什么cv.Last().DrawCircle(...)
您刚刚在DrawCircle
上调用List<Button>
方法。
答案 1 :(得分:1)