gpt4 book ai didi

c# - 如何在后面的代码中获取 ListBox ItemsPanel

转载 作者:可可西里 更新时间:2023-11-01 07:52:39 28 4
gpt4 key购买 nike

我有一个带有 ItemsPanel 的列表框

<Setter Property="ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<StackPanel x:Name="ThumbListStack" Orientation="Horizontal" />
</ItemsPanelTemplate>
</Setter.Value>
</Setter>

我想使用隐藏代码中的 TranslateTransform 沿 X 轴移动堆栈面板。

问题是,我找不到堆栈面板。

ThumbListBox.FindName("ThumbListStack")

什么都不返回。我想将它用于:

Storyboard.SetTarget(x, ThumbListBox.FindName("ThumbListStack"))

如何获得 Stack Panel 以便我可以将它与 TranslateTransform 一起使用

谢谢

最佳答案

您可以为 ItemsPanelTemplate 中的 StackPanel 使用 Loaded 事件

<Grid>
<Grid.Resources>
<Style TargetType="ListBox">
<Setter Property="ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<StackPanel x:Name="ThumbListStack" Orientation="Horizontal"
Loaded="StackPanel_Loaded" />
</ItemsPanelTemplate>
</Setter.Value>
</Setter>
</Style>
</Grid.Resources>
<ListBox />
</Grid>

然后在代码后面

private StackPanel m_itemsPanelStackPanel;
private void StackPanel_Loaded(object sender, RoutedEventArgs e)
{
m_itemsPanelStackPanel = sender as StackPanel;
}

另一种方法是遍历可视化树并找到 StackPanel,它将成为 ItemsPresenter 的第一个子项。

public void SomeMethod()
{
ItemsPresenter itemsPresenter = GetVisualChild<ItemsPresenter>(listBox);
StackPanel itemsPanelStackPanel = GetVisualChild<StackPanel>(itemsPresenter);
}

private static T GetVisualChild<T>(DependencyObject parent) where T : Visual
{
T child = default(T);

int numVisuals = VisualTreeHelper.GetChildrenCount(parent);
for (int i = 0; i < numVisuals; i++)
{
Visual v = (Visual)VisualTreeHelper.GetChild(parent, i);
child = v as T;
if (child == null)
{
child = GetVisualChild<T>(v);
}
if (child != null)
{
break;
}
}
return child;
}

关于c# - 如何在后面的代码中获取 ListBox ItemsPanel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7319952/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com