gpt4 book ai didi

c# - 为什么我不能在这种情况下设置不透明度?

转载 作者:行者123 更新时间:2023-11-30 20:14:16 24 4
gpt4 key购买 nike

情况是这样的……在顶层,我有一个 TabControl。 TabControl 中的每个页面都包含一个 ListBox:

<TabControl>
<TabItem Header="item 1">
<ListBox>
<ListBoxItem>sub item 1</ListBoxItem>
<ListBoxItem>sub item 2</ListBoxItem>
<ListBoxItem>sub item 3</ListBoxItem>
</ListBox>
</TabItem>
<TabItem Header="item 2">
<ListBox>
<ListBoxItem>sub item 1</ListBoxItem>
<ListBoxItem>sub item 2</ListBoxItem>
</ListBox>
</TabItem>
</TabControl>

ListBoxes 有一个水平方向的 StackPanel 作为它们的 ListTemplate:

<Style TargetType="ListBox">
<Setter Property="ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"
VisibleChanged="onStackPanelVisibilityChange"
Loaded="onStackPanelLoaded"
VerticalAlignment="Center" HorizontalAlignment="Center" />
</ItemsPanelTemplate>
</Setter.Value>
</Setter>
</Style>

您会注意到我在该堆栈面板上有一些事件处理程序。这些是为了使堆栈面板中的项目具有动画效果,因此它们会按顺序淡入 View 。事件处理程序实现为:

void onStackPanelLoaded(object sender, RoutedEventArgs e)
{
StackPanel panel = sender as StackPanel;

applySubItemAnimations(panel);
}

void onStackPanelVisibilityChange(object sender, DependencyPropertyChangedEventArgs e)
{
StackPanel panel = sender as StackPanel;

if (panel.IsVisible)
{
applySubItemAnimations(panel);
}
}

private void applySubItemAnimations(StackPanel panel)
{
DoubleAnimation fadeIn = new DoubleAnimation();
fadeIn.DecelerationRatio = 0.1;
fadeIn.Duration = new Duration(new TimeSpan(0, 0, 0, 0, 500));
fadeIn.From = 0.0;
fadeIn.To = 1.0;

for (int i = 0; i < panel.Children.Count; i++)
{
panel.Children[i].Opacity = 0.0;
fadeIn.BeginTime = new TimeSpan(0, 0, 0, 0, 200 * i + 50);
panel.Children[i].BeginAnimation(UIElement.OpacityProperty, fadeIn);
}
}

在大多数情况下,这很有效。当您第一次单击(或加载)一个选项卡时,堆栈面板中的子项会一个接一个地淡入 View 。问题是当您单击返回到之前已经显示过一次的选项卡时(即,您在“VisibleChanged”事件处理程序中而不是“Loaded”处理程序中),所有项目都已显示并且它们闪烁 按顺序排列,而不是从隐藏开始然后按顺序显示

这就是它变得丑陋的地方。这一行:

panel.Children[i].Opacity = 0.0;

...什么都不做。如果我单步执行调试器中的代码并监视“panel.Children[i].Opacity”,它会保持在 1.0。没有异常(exception)或任何东西。它只是……不起作用。

有什么想法吗?

最佳答案

我猜测可能会发生什么:WPF 不会在动画完成后将其移除,因此当您的代码第二次运行 applySubItemsAnimations 方法时,之前的动画仍然存在。因此,您可以尝试通过将 null 作为第二个参数传递给

来删除这些动画
panel.Children[i].BeginAnimation(UIElement.OpacityProperty, null);

之后,您可以应用新的动画,所以整个 for 循环看起来像这样:

for (int i = 0; i < panel.Children.Count; i++)
{
panel.Children[i].Opacity = 0.0;
fadeIn.BeginTime = new TimeSpan(0, 0, 0, 0, 200 * i + 50);
panel.Children[i].BeginAnimation(UIElement.OpacityProperty, null);
panel.Children[i].BeginAnimation(UIElement.OpacityProperty, fadeIn);
}

关于c# - 为什么我不能在这种情况下设置不透明度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/698535/

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