Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Say I want a TextBlock to have its Width equal to it's Parent container's Width (ie, stretch from side to side) or a percentage of it's Parent Container Width, how can I accomplish this in XAML without specifying absolute values?

I want to do this so that if the Parent Container container is later on expanded (its' Width increased), its' Child Elements will also be expanded automatically. (basically, like in HTML and CSS)

share|improve this question
Have a look at this answer. – Arkain Apr 4 '09 at 16:05
Use cwap's answer and include the tb in a grid setting it's alignment to stretch. – Shimmy Jan 6 '10 at 3:57

5 Answers

up vote 29 down vote accepted

The way to stretch it to the same size as the parent container is to use the attribute:

 <Textbox HorizontalAlignment="Stretch" ...

That will make the Textbox element stretch horizontally and fill all the parent space horizontally (actually it depends on the parent panel you're using but should work for most cases).

Percentages can only be used with grid cell values so another option is to create a grid and put your textbox in one of the cells with the appropriate percentage.

share|improve this answer

Dont think you can do %, but you can do * :)

Example:

<TextBox width="2*"/>
<TextBox width="3*"/>

This will make #1 2/5 of the width, and #2 3/5.

share|improve this answer
1  
I already tried that, but I'm getting this error: '2*' string cannot be converted to Length.' – Andreas Grech Apr 4 '09 at 16:06
48  
This only works inside a grid, not in general. – kvb Apr 4 '09 at 16:06
Your answer helped me a lot, thanks! I tried to figure out what the * does for years, you explained it so short and good. – Shimmy Jan 6 '10 at 3:54
and what is the * called? – kurtnelle Oct 17 '10 at 0:29
3  
Actually, *(Asterisk) is little star ;) etymonline.com/index.php?term=asterisk – Pratik Deoghare Dec 10 '10 at 10:41
show 1 more comment

Typically, you'd use a built-in layout control appropriate for your scenario (e.g. use a grid as a parent if you want scaling relative to the parent). If you want to do it with an arbitrary parent element, you can create a ValueConverter do it, but it probably won't be quite as clean as you'd like. However, if you absolutely need it, you could do something like this:

public class PercentageConverter : IValueConverter
{
    public object Convert(object value, 
        Type targetType, 
        object parameter, 
        System.Globalization.CultureInfo culture)
    {
        return System.Convert.ToDouble(value) * 
               System.Convert.ToDouble(parameter);
    }

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

Which can be used like this, to get a child textbox 10% of the width of its parent canvas:

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:WpfApplication1"
    Title="Window1" Height="300" Width="300">
    <Window.Resources>
        <local:PercentageConverter x:Key="PercentageConverter"/>
    </Window.Resources>
    <Canvas x:Name="canvas">
        <TextBlock Text="Hello"
                   Background="Red" 
                   Width="{Binding 
                       Converter={StaticResource PercentageConverter}, 
                       ElementName=canvas, 
                       Path=ActualWidth, 
                       ConverterParameter=0.1}"/>
    </Canvas>
</Window>
share|improve this answer
This is really cool, how can I do it in code (set the width of the textbox)? – Jeremy Jun 23 '11 at 2:57

For any body who is getting the error like : '2*' string cannot be converted to Length.

<Grid >
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="2*" />//This will make any control in this column of                      grid to take  2/5 of total width
        <ColumnDefinition Width="3*"  />//This will make any control in this column of                      grid to take  3/5 of total width
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
        <RowDefinition MinHeight="30" />
    </Grid.RowDefinitions>

    <TextBlock Grid.Column="0" Grid.Row="0">Your text block a:</TextBlock>
    <TextBlock Grid.Column="1" Grid.Row="0"/>Your text block b:</TextBlock>
</Grid>
share|improve this answer

I know it's not Xaml but I did the same thing with SizeChanged event of the textbox:

private void TextBlock_SizeChanged(object sender, SizeChangedEventArgs e)
{
   TextBlock textBlock = sender as TextBlock;
   FrameworkElement element = textBlock.Parent as FrameworkElement;
   textBlock.Margin = new Thickness(0, 0, (element.ActualWidth / 100) * 20, 0);
}

The textbox appears to be 80% size of it's parent (well right side margin is 20%) and stretches when needed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.