我在WPF中有一个主窗口,其中有许多按钮可以打开其他窗口。这些窗口需要一些时间才能打开,因为它们正在加载大数据。我想在单击时显示其他一些动画按钮,直到加载其他窗口。到目前为止,我有:
HardwarePickingButton.Visibility = Visibility.Hidden;
HardwarePickingButton_Animated.Visibility = Visibility.Visible;
VHardwareList hardware = new VHardwareList(this);
Hide();
hardware.ShowDialog();
但是此代码从不显示动画按钮。我知道是线程相关的:(。