Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7742589
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T09:18:50+00:00 2026-06-01T09:18:50+00:00

I try build wrap panel with vertical buttons. Every button consist from image and

  • 0

I try build wrap panel with vertical buttons.
Every button consist from image and textblock.
I want to do something that Microsoft did in the Outlook on the left side of the window,
when the user move the GridSplitter.
When the user will reduce the height of the wrap panel,
if any button will not has place, the textblock will disappear (the button will consist just from image).

How can I do that.

Thank

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T09:18:51+00:00Added an answer on June 1, 2026 at 9:18 am

    If I understand correctly. You want to show buttons with Text and an Image, but if the width of the button is reduced to a certain size, it will only show the image.

    If so, you should be able to implement with a datatrigger.

    <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>
    

    Also using this 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();
        }
    
    }
    

    I am not an expert at this, so there may be a cleaner way. I also used a listview instead of your requested wrappanel.

    Hope this helps

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i try to build a app that is in landsscape mode all the time.
Im try to build my plugins that sit in a seperate directory on the
When I try to build a project in Visual Studio 2005 that has a
I want to wrap the default open method with a wrapper that should also
I try to build game with destroyable world (similar to Worms). I want to
I try to build subproject ExplorerPlugin from mDNSResponder-107.6.tar.gz archive but receive next link error:
I try to build libtorrent(rasterbar- libtorrent). It cannot be build. the build log is
I try to build project in Eclipse on Linux Ubuntu. Eclipse show error message:
Sometimes when i try to build/compile a downloaded source, i get following warning: ld:
I am getting this error when I try to build for the device: Code

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.