Stretch = None : StackPanel « Windows Presentation Foundation « C# / CSharp Tutorial






<Window x:Class="Chapter05.ImageBrushExample"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="Chapter05" Height="300" Width="300">
      <StackPanel Margin="5" Grid.Column="0" Grid.Row="0">
        <TextBlock Margin="5" Text="Stretch = None" />
        <Button Width="135" Height="100">
          <Button.Background>
            <ImageBrush ImageSource="c:\image.jpg" Stretch="None" />
          </Button.Background>
        </Button>
      </StackPanel>
</Window>
WPF Stretch None








24.56.StackPanel
24.56.1.Stretch = UniformStretch = Uniform
24.56.2.Stretch = UniformToFillStretch = UniformToFill
24.56.3.Stretch = FillStretch = Fill
24.56.4.Stretch = NoneStretch = None
24.56.5.StackPanel with StackPanelStackPanel with StackPanel
24.56.6.Simple StackPanelSimple StackPanel
24.56.7.Set height, Background and Orientation for StackPanelSet height, Background and Orientation for StackPanel
24.56.8.Change StackPanel OrientationChange StackPanel Orientation
24.56.9.Use the methods that are defined by the IScrollInfo interface to scroll the child content of a StackPanel.Use the methods that are defined by the IScrollInfo interface to scroll the child content of a StackPanel.
24.56.10.Use StackPanel to arrange child objects in a single line that you can align horizontally or vertically.Use StackPanel to arrange child objects in a single line that you can align horizontally or vertically.
24.56.11.Create a StackPanel as content of the Button.
24.56.12.Add a Polyline to the StackPanel
24.56.13.Add an Image to the StackPanel
24.56.14.Add buttons to StackPanel
24.56.15.Nesting StackPanel