根据布尔值更改椭圆的颜色

时间:2013-04-22 03:31:13

标签: c# wpf datatrigger

<Grid Grid.Row="1" Width="500" Height="500">
    <Grid.RowDefinitions>
        <RowDefinition Height="*"/>
        <RowDefinition Height="*"/>
        <RowDefinition Height="*"/>
        <RowDefinition Height="*"/>
        <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="*"/>
        <ColumnDefinition Width="*"/>
        <ColumnDefinition Width="*"/>
        <ColumnDefinition Width="*"/>
        <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <Ellipse Fill="Red" HorizontalAlignment="Center" Height="25" Margin="0,0,0,0" Stroke="Black" VerticalAlignment="Center" Width="25"/>
    <Ellipse Fill="Red" HorizontalAlignment="Center" Height="25" Margin="0,0,0,0" Stroke="Black" VerticalAlignment="Center" Width="25" Grid.Row="1"/>
    <Ellipse Fill="Red" HorizontalAlignment="Center" Height="25" Margin="0,0,0,0" Stroke="Black" VerticalAlignment="Center" Width="25" Grid.Row="3"/>
    <Ellipse Fill="Red" HorizontalAlignment="Center" Height="25" Margin="0,0,0,0" Stroke="Black" VerticalAlignment="Center" Width="25" Grid.Column="4"/>
    <Ellipse Fill="Red" HorizontalAlignment="Center" Height="25" Margin="0,0,0,0" Stroke="Black" VerticalAlignment="Center" Width="25" Grid.Column="4" Grid.Row="4"/>
</Grid>

鉴于上述XAML,我希望当属性为true时,点为绿色。我假设我是用DataTrigger做的,但我能想到的唯一方法就是为每个椭圆重复它。这对我来说似乎是个hackish,并想知道他们是否是一个更好的解决方案。每个椭圆都基于一个属性,但同样看起来像是很多重复的代码。理想情况下,我想要的是这个视图使用布尔值来反映“站点”列表的状态,以确定它们是否可用。每个状态都是单向的,在视图启动时不会改变。

我非常擅长WPF和XAML,想出一个优雅的解决方案。每当我尝试某些东西时我都会畏缩,因为它看起来像是一个彻底的黑客。

编辑: 感谢@ Alastair的回答,我已经开始工作了。

2 个答案:

答案 0 :(得分:7)

所以我会制作一个包含椭圆的自定义UserControl

然后,您可以将数据触发器放入UserControl。然后,将自定义控件的DataContext绑定到布尔属性,然后将DataTrigger绑定到DataContext的{​​{1}}。

因此,您可以保持XAML的清洁。

编辑:

基本用户控件。这应该在一个单独的文件中定义,而不是资源。只需右键单击该项目 - &gt;添加 - &gt; New Item ...然后选择WPF UserControl。

UserControl

然后你会用它:

<UserControl x:Class="Test_WPF.MyEllipseControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
        <Ellipse  HorizontalAlignment="Center"
                  Height="25"
                  Margin="0,0,0,0"
                  Stroke="Black"
                  VerticalAlignment="Center"
                  Width="25" 
                  Fill="Red">
            <Ellipse.Style>
                <Style TargetType="Ellipse">
                    <Style.Triggers>
                        <DataTrigger Binding="{Binding Path=IsAvailable}"
                                     Value="True">
                            <Setter Property="Fill"
                                    Value="Green" />
                        </DataTrigger>
                    </Style.Triggers>
                </Style>
            </Ellipse.Style>
        </Ellipse>
    </Grid>
</UserControl>

其中<local:MyEllipseControl DataContext="{Binding Path=Station1}" /> 命名空间只是您的本地项目命名空间。

答案 1 :(得分:4)

另一种方法是直接将填充绑定到布尔值,并使用转换器根据需要更改样式。

您的转换器可能如下所示:

    class StatusToColor : IValueConverter
    {
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
            {
                SolidColorBrush retColor = new SolidColorBrush();
                retColor.Color = System.Windows.Media.Color.FromRgb(0, 0, 0);
                if ((bool)value)
                {
                     retColor.Color = System.Windows.Media.Color.FromRgb(255, 0, 0);
                }
                else
                {
                     retColor.Color = System.Windows.Media.Color.FromRgb(0, 128, 0);
                }
                return retColor;
            }

            public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
            {
                throw new NotImplementedException();
            }
}

然后,您可以在xaml资源中定义转换器:

<Window>    
    <Window.Resources>
        <c:StatusToColor x:Key="MyConverter"/>
    </Window.Resources>
...

并设置你的绑定:

<Ellipse Fill="{Binding SomeProperty, Converter={StaticResource MyConverter}}" HorizontalAlignment="Center" Height="25" Margin="0,0,0,0" Stroke="Black" VerticalAlignment="Center" Width="25"/>