将不透明度值绑定到静态属性;

本文关键字:静态 属性 绑定 不透明度 | 更新日期: 2023-09-27 18:18:34

我正在尝试制作一个桌面叠加应用程序(想想雨表),因为背景可以改变,我希望能够改变应用程序中文本的一般颜色和alpha值。

所以在一个设置菜单中,我想要一个滑动条,onvaluechange在一个静态类中设置一个属性,很多很多的控件有他们的不透明度绑定到那个属性。为了使这个更加复杂(也许?),应用程序同时打开多个窗口。我对装订没什么经验,不会用

My Code so far:

VisualSettings.cs

namespace ProjectSideBar
{
    public  class VisualSettings
    {
        public static double Opacity { get; set; }
    }
}

MainWindow.xaml

<Window x:Class="ProjectSideBar.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:PSB="clr-namespace:ProjectSideBar"
        Title="MainWindow"  Height="1080" Width="300" ResizeMode="NoResize" ShowInTaskbar="False" WindowStyle="None" Closing="Window_Closing_1" Loaded="Window_Loaded" Background="Transparent"  >
    <Window.Resources>
        <PSB:VisualSettings x:Key="VisualSettings"/>
    </Window.Resources>
    <Grid>
        <TextBlock x:Name="ClockTB" HorizontalAlignment="Left" TextWrapping="Wrap" Text="22:22:22" VerticalAlignment="Top" Height="84" Width="300" Cursor="None" Foreground="White" FontSize="48" FontFamily="BatmanForeverAlternate" TextAlignment="Center" Opacity="{Binding Source={StaticResource VisualSettings} , Path=Opacity}" Margin="0,22,0,0" RenderTransformOrigin="0.5,0.5">
            <TextBlock.RenderTransform>
                <TransformGroup>
                    <ScaleTransform ScaleY="1.5"/>
                    <SkewTransform/>
                    <RotateTransform/>
                    <TranslateTransform/>
                </TransformGroup>
            </TextBlock.RenderTransform>
        </TextBlock>

        <Slider x:Name="TestSlider" HorizontalAlignment="Left" Margin="10,1052,0,0" VerticalAlignment="Top" RenderTransformOrigin="0.5,0.611" Width="172" Foreground="#FF122268" ValueChanged="TestSlider_ValueChanged" LargeChange="0.1" SmallChange="0.01" Maximum="1" Value="0.65"/>
    </Grid>
</Window>

MainWindow.xaml.cs

private void TestSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
    VisualSettings.Opacity = TestSlider.Value;
}
有人能帮我一下吗?

致以亲切的问候,RoXaS

将不透明度值绑定到静态属性;

您可以使用 x:Static 绑定静态属性,但x: static的问题是它们不支持属性更改机制,即如果静态属性更改,它不会在UI上更新。

但是,在WPF 4.5中,您可以通过使用event StaticPropertyChanged 来支持此功能。你只需要确保无论何时静态属性发生变化,你都会引发此事件,以便UI得到更新

绑定静态属性的语法也有点不同,在你的例子中是这样的:

"{Binding Path=(local:VisualSettings.Opacity), Mode=TwoWay}"
样本可以找到