我是 WPF 的新手,所以我不确定问题的标题是否正确或是否有意义,如果它可以变得更相关,请进行编辑。我在我的应用程序中使用 Kinect.Toolbox MouseControl。对于使用磁性控件,我遇到了问题。我知道我可以通过添加以下内容在 XAML 中定义它们:
<Page ...
xmlns:local ="clr-namespace:Kinect.Toolbox;assembly=Kinect.Toolbox">
...
<Button local:MagneticPropertyHolder.IsMagnetic="True" ... />
....
但我需要在代码中做到这一点。反正有没有在代码中设置磁控制?我可以像这样获取页面中的所有控件:
public static IEnumerable<T> FindVisualChildren<T>(DependencyObject depObj) where T : DependencyObject
{
if (depObj != null)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
if (child != null && child is T)
{
yield return (T)child;
}
foreach (T childOfChild in FindVisualChildren<T>(child))
{
yield return childOfChild;
}
}
}
}
foreach (Button tb in FindVisualChildren<Button>(this))
{
//Set the buttons to be magnetic
}
但是我无法理解如何以编程方式设置它们。