0

我像这样选择一些元素inkcanvas

List<UIElement> temp = e.GetSelectedElements().ToList();
SelectList.Add(temp.ElementAt(0));
inkcanvas.Select(SelectList);//in this line inckanvas editing mode change to select 

现在我想在单击其中一个时取消选择它,但是矩形mouseclick不会触发我无法确定单击的元素!任何想法?

4

1 回答 1

0

inkCanvas.Select(null, null); 这会成功的。

于 2013-01-26T23:42:14.850 回答