/// <summary>
        /// <see cref="GlowMetroWindow"/> クラスの新しいインスタンスを初期化します。
        /// </summary>
        public GlowMetroWindow()
        {
            this.left = new GlowWindow(this, new GlowWindowProcessorLeft());
            this.right = new GlowWindow(this, new GlowWindowProcessorRight());
            this.top = new GlowWindow(this, new GlowWindowProcessorTop());
            this.bottom = new GlowWindow(this, new GlowWindowProcessorBottom());

            this.SizeChanged += (sender, args) => this.UpdateGlowWindows();
        }
        /// <summary>
        /// <see cref="GlowMetroWindow"/> クラスの新しいインスタンスを初期化します。
        /// </summary>
        public GlowMetroWindow()
        {
            this.left   = new GlowWindow(this, new GlowWindowProcessorLeft());
            this.right  = new GlowWindow(this, new GlowWindowProcessorRight());
            this.top    = new GlowWindow(this, new GlowWindowProcessorTop());
            this.bottom = new GlowWindow(this, new GlowWindowProcessorBottom());

            this.SizeChanged += (sender, args) => this.UpdateGlowWindows();
        }