gpt4 book ai didi

c# - WPF 中的窗口显示事件?

转载 作者:IT王子 更新时间:2023-10-29 04:18:40 25 4
gpt4 key购买 nike

我想在每次显示我的窗口时应用淡入淡出动画。如何从 xaml 做到这一点?该窗口可以隐藏然后再次显示,所以我不能使用 Loaded 事件。

最佳答案

您可以像这样使用 ContentRendered 事件或覆盖 OnContentRendered 虚拟方法:

    bool _shown;

protected override void OnContentRendered(EventArgs e)
{
base.OnContentRendered(e);

if (_shown)
return;

_shown = true;

// Your code here.
}

关于c# - WPF 中的窗口显示事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9191256/

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