私は次のものを持っています:
Window window = Application.Current.Windows.Cast<Window>().SingleOrDefault(x => x.IsActive);
ScatterView main = UIHelper.FindChild<ScatterView>(window, "MainScatterView");
main.Items.Add(type);
//Neither of these work
ScatterViewItem parent = (ScatterViewItem)main.ContainerFromElement(type);
ScatterViewItem parent = UIHelper.FindVisualParent<ScatterViewItem>(type);
ドキュメントには次のように記載されています。ScatterViewItemタイプではないオブジェクトを追加すると、ScatterViewコントロールは最初にオブジェクトをScatterViewItemコントロールでラップしてから、コレクション http://msdn.microsoft.com/en-us/library/microsoftに追加します。 .surface.presentation.controls.scatterviewitem.aspx
ラップされたscatterviewitemをどのように取得しますか?