1

ウィンドウの不透明度をアニメーション化しています

...

  DoubleAnimation myDoubleAnimation =
          new DoubleAnimation(1.0, 0.0, new Duration(TimeSpan.FromSeconds(0.25)), FillBehavior.Stop);
  Storyboard.SetTargetName(myDoubleAnimation, "wndNumpad");
  Storyboard.SetTargetProperty(myDoubleAnimation, new PropertyPath(Window.OpacityProperty));
  m_fadeOut = new Storyboard();
  m_fadeOut.Children.Add(myDoubleAnimation);
  m_fadeOut.Completed += new EventHandler(FadeOut_Completed);

...

private void FadeOut_Completed(object sender, EventArgs e)
{
  //  Only hide the running instance
  this.Visibility = System.Windows.Visibility.Hidden;
  // this.Close();
}

FadeOut_Completed() の実行後にモニターの画面解像度が変更された場合、つまり、ウィンドウの不透明度がアニメーション化され、ウィンドウが非表示になります。その後、ウィンドウを再表示すると、ウィンドウがほぼ透明になります。Window.Opacityプロパティは不透明度1を主張していますが、ウィンドウが非表示のときの不透明度で推測すると、アニメーション化せずに不透明度を0に設定してウィンドウを非表示にし、解像度の変更後に不透明度を 1 に戻すと、ウィンドウが期待どおりに再表示されます。また、FadeOut_Completed で不透明度を 1 に戻そうとしました。

何が起こっているのか、どうすれば問題を回避できるのか、誰にも分かりますか?

よろしくマーカス

4

1 に答える 1

0

透明なウィンドウ ( AllowsTransparency="True")、サイズ変更不可( ) ResizeMode="NoResize"、境界線なし( ) である必要がありますWindowStyle="None"。C# コードDoubleAnimationで、ウィンドウの不透明度を変更する を作成し、完了するとウィンドウが閉じられます。

XAML コード:

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525" Background="Red" WindowStyle="None" AllowsTransparency="True" ResizeMode="NoResize">
    <Grid>

    </Grid>
</Window>

C# コード:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Media.Animation;

namespace WpfApplication1
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            DoubleAnimation da = new DoubleAnimation();
            da.From = 1;
            da.To = 0;
            da.Duration = new Duration(TimeSpan.FromSeconds(2));
            da.Completed += new EventHandler(da_Completed);
            this.BeginAnimation(OpacityProperty, da);
        }

        void da_Completed(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}
于 2012-08-01T13:39:12.397 に答える