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

时间:2014-08-18 13:21:22

标签: c# wpf xaml binding

我正在尝试制作桌面覆盖应用程序(Think rainmeter),因为背景可以更改,我希望能够更改应用程序中文本的常规颜色和alpha值。

所以在设置菜单中我想要一个滑块,OnValueChanged在静态类中设置一个属性,很多控件的不透明度都绑定到该属性。为了使这个更复杂(可能?),应用程序有多个窗口同时打开。我几乎没有绑定经验,也无法让它发挥作用。

我的代码到目前为止:

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

1 个答案:

答案 0 :(得分:2)

您可以使用 x:Static 绑定静态属性,但问题是x:静态是他们不支持属性更改机制,即如果静态属性发生更改,则会赢得&#39 ;在UI上更新。

但是,对于WPF 4.5,您可以使用 StaticPropertyChanged 事件获得支持。您只需要 确保无论何时静态属性发生更改,您都会引发此事件,以便更新UI。

在你的情况下,绑定静态属性的语法也有点不同:

"{Binding Path=(local:VisualSettings.Opacity), Mode=TwoWay}"

可以找到样本here