0

我尝试使用垂直按钮构建包装面板。每个按钮由图像和文本块组成。当用户移动 GridSplitter 时,我想做一些微软在窗口左侧的 Outlook 中所做的事情。当用户降低环绕面板的高度时,如果任何按钮没有位置,文本块将消失(按钮将仅由图像组成)。

我怎样才能做到这一点。

谢谢

4

2 回答 2

1

如果我理解正确。您想显示带有文本和图像的按钮,但如果按钮的宽度减小到一定大小,它将只显示图像。

如果是这样,您应该能够使用数据触发器来实现。

<Window x:Class="StackOverflow1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:StackOverflow1"
    Title="MainWindow" Height="350" Width="525">
<Window.Resources>
    <local:isLessThanConverter x:Key="MyisLessThanConverter"/>
    <Style x:Key="myWidthTrigger" TargetType="TextBlock">
            <Style.Triggers>
                <DataTrigger Binding="{Binding Path=ActualWidth, RelativeSource={RelativeSource AncestorType=Button}, Converter={StaticResource MyisLessThanConverter}, ConverterParameter=90}" Value="True">
                    <Setter Property="Visibility" Value="Collapsed" />
                </DataTrigger>
        </Style.Triggers>
    </Style>
</Window.Resources>
<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="*"></ColumnDefinition>
        <ColumnDefinition Width="Auto"></ColumnDefinition>
        <ColumnDefinition Width="*"></ColumnDefinition>
    </Grid.ColumnDefinitions>
    <ListView HorizontalContentAlignment="Stretch">
        <Button x:Name="myButton" Width="Auto">
            <StackPanel Orientation="Horizontal">
                <TextBlock x:Name="MyTextBlock" Style="{StaticResource myWidthTrigger}" Text="Test"></TextBlock>
                <Image Source="image.png" Height="15"></Image>
            </StackPanel>
        </Button>
    </ListView>
    <GridSplitter Width="5" Grid.Column="1" ResizeDirection="Columns" ResizeBehavior="PreviousAndNext"></GridSplitter>
</Grid>

也使用这个 IValueConvertor:

[ValueConversion(typeof(double), typeof(string))]
public class isLessThanConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
            if ((double)value < double.Parse((string)parameter))
            {
                return true;
            }
            else
            {
                return false;
            }

    }

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

}

我不是这方面的专家,所以可能有更清洁的方法。我还使用了列表视图而不是您要求的包装面板。

希望这可以帮助

于 2012-04-05T16:01:41.980 回答
0

听起来您要使用的是Expander控件。这篇StackOverflow 帖子解释了如何Expander在您打开另一个时自动关闭另一个。这将像您在 Outlook 中描述的那样工作。

于 2012-04-05T14:26:51.620 回答