如何在WPF中对齐画布背景?

时间:2008-11-06 16:58:09

标签: wpf canvas alignment

我已将画布'背景设置为公司徽标的图像。我希望这张图片与画布的右下角对齐 是否可以这样做,还是需要将图像作为孩子添加到画布中?这不适用于这个程序,因为画布的所有子项都有不同的处理方式。

谢谢

4 个答案:

答案 0 :(得分:16)

这会有用吗? (无论如何,它对我有用。)

  <Canvas>
    <Canvas.Background>
      <ImageBrush ImageSource="someimage.jpg" AlignmentX="Right" 
          AlignmentY="Bottom" Stretch="None" />
    </Canvas.Background>
  </Canvas>

答案 1 :(得分:0)

AFAIK WPF Canvas需要使用绝对坐标定位子UI元素。 为了实现右下角锚定效果,我认为您需要处理窗口调整大小事件,重新计算并应用子Image元素的Top,Left坐标以始终坚持右边的角落。

<Window x:Class="HelloWPF.Window1" xmlns...
    Title="Window1" Height="300" Width="339">
    <Canvas>
        <Image Canvas.Left="195" Canvas.Top="175" Height="87" Name="image1" Stretch="Fill" Width="122" Source="dilbert2666700071126ni1.gif"/>
    </Canvas>
</Window>

答案 2 :(得分:0)

如何在Grid控件中包含画布和图像呢?

<Window ...>
  <Grid>
    <Canvas/>
    <Image HorizontalAlignment="Right" VerticalAlignment="Bottom" .../>
  <Grid>
</Window>

答案 3 :(得分:0)

这是我的解决方案,使用画布内的边框来对齐图像。调整画布大小时,此解决方案很有效:

<Canvas x:Name="MiCanvas" Height="250" Width="500" Background="Aqua">
    <Border x:Name="MiBorderImage" 
            Width="{Binding ElementName=MiCanvas, Path=ActualWidth}"
            Height="{Binding ElementName=MiCanvas, Path=ActualHeight}"
            Background="Transparent">
        <Image x:Name="MiImage" Source="/GraphicsLibrary/Logos/MiLogo.png"
               HorizontalAlignment="Right" 
               VerticalAlignment="Bottom" 
               Stretch="None" />
    </Border>
 </Canvas>