2

我正在尝试通过实时Opacity弹出设置窗口更改主应用程序窗口。这样做的正确方法是什么?

到目前为止,我已经尝试使用 aSlider将值输出到设置文件。当设置弹出窗口关闭时,主窗口会根据设置文件刷新其 opacity 属性。此方法有效,但我希望能够更改不透明度并实时查看结果。

我尝试的第二种方法是使用 aStyle并将其应用于 MainWindow。然后在滑块移动时,样式将被滑块中的值覆盖。这是实时工作的。但无论出于何种原因,即使没有应用任何样式,设置弹出窗口的不透明度也会受到影响

这是一个以主窗口命名的示例项目OpacityTest,一个用于打开设置弹出窗口的按钮和一个用于控制程序不透明度的滑块。

应用程序.xaml:

<Application x:Class="OpacityTest.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             StartupUri="MainWindow.xaml">
    <Application.Resources>
        <Style TargetType="Window" x:Key="wrapper">
            <Setter Property="OverridesDefaultStyle" Value="false"/>
            <Setter x:Name="opacitySetter" Property="Opacity" Value="1"/>
        </Style>
    </Application.Resources>
</Application>

MainWindow.xaml:

<Window x:Class="OpacityTest.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" Style="{DynamicResource wrapper}" Background="#FFCDCDCD" AllowsTransparency="True" WindowStyle="None">
    <Grid>
        <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
            <Button Content="Settings" HorizontalAlignment="Center" VerticalAlignment="Center" Width="75" Click="Button_Click"/>
        </StackPanel>
    </Grid>
</Window>

标有设置的新窗口,Settings.xaml:

<Window x:Class="OpacityTest.Settings"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Settings" Height="300" Width="300">
    <Grid>
        <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
            <Slider x:Name="ChangeTransparency" MinWidth="138" MinHeight="22" VerticalAlignment="Center" Padding="0" Orientation="Horizontal" HorizontalAlignment="Center" Value="1" Minimum=".05" Maximum="1" LargeChange=".01" SmallChange=".01" TickFrequency="100" IsSnapToTickEnabled="False" MouseMove="ChangeTransparency_MouseMove"/>
        </StackPanel>
    </Grid>
</Window>

MainWindow.xaml.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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;

namespace OpacityTest
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            Settings settings = new Settings();
            settings.ShowDialog();
        }
    }
}

设置.xaml.cs

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    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.Shapes;

    namespace OpacityTest
    {
        /// <summary>
        /// Interaction logic for Settings.xaml
        /// </summary>
        public partial class Settings : Window
        {
            public Settings()
            {
                InitializeComponent();
            }

            private void ChangeTransparency_MouseMove(object sender, MouseEventArgs e)
            {
                Style style = new Style { TargetType = typeof(Window) };
                style.Setters.Add(new Setter(OpacityProperty, Opacity = ChangeTransparency.Value));
                Application.Current.Resources["wrapper"] = style;
            }
        }
    }
4

1 回答 1

3

看起来您Style的行为就像是在 XAML 文件中以影响所有 Windows 的方式声明的,而不仅仅是wrapper样式,例如

<Style TargetType="Window"> ... </Style>

代替:

<Style TargetType="Window" x:Key="wrapper"> ... </Style>

我不确定如何以您尝试的方式声明它,但完成您想要做的事情的更简单的方法是将其放在 MainWindow.xaml.cs 中:

private void Button_Click(object sender, RoutedEventArgs e)
{
    Settings settings = new Settings();
    this.SetBinding(OpacityProperty,
                  new Binding("Value") { Source = settings.ChangeTransparency });
    settings.ShowDialog();
}

ChangeTransparency这种方式不需要处理程序。我可能会考虑修改的唯一原因Style是,如果您可以MainWindow一次拥有多个 s,并希望一个Settings窗口(从其中任何一个打开)一次控制它们。

顺便说一句,如果您确实发现需要附加到ChangeTransparency,则应该将处理程序附加到其ValueChanged事件而不是MouseMove(虽然MouseMove通常会解决,但实际上并不相同;例如,对于键盘输入,只会ValueChanged触发)。

如果Settings可以从其他窗口使用和/或具有更多属性,您可能希望更改Settings为在其构造函数中采用Window(或其他类型),并在那里设置绑定,以保持您的代码/逻辑集中和干净的。

于 2013-06-11T00:58:27.493 回答