使窗口大小与WPF中的背景图像大小相同

时间:2011-01-27 19:14:19

标签: c# .net wpf xaml

我是WPF的新手所以请耐心等待。我使用ImageBrush设置了窗口的背景图像,现在我希望窗口的大小与背景图像的大小完全相同。对此的明显解决方案是使用我的背景图像的像素测量值手动设置宽度/高度属性,但这似乎太天真了。做这个的最好方式是什么?到目前为止,这是我的XAML:

<Window x:Class="FruitFactory.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Fruit Factory" Height="576" WindowStyle="None" DataContext="{Binding}" ResizeMode="NoResize" Width="834">
    <Window.Background>
        <ImageBrush ImageSource="/FruitFactory;component/Graphics/FruitFactoryBackground.png"></ImageBrush>
    </Window.Background>
    <Window.Resources>
    </Window.Resources>
    <Grid>
        <ComboBox Height="23" HorizontalAlignment="Left" Margin="52,27,0,0" Name="comboBox1" VerticalAlignment="Top" Width="120" />
    </Grid>
</Window>

我正在使用Visual Studio 2010和.NET 4.0

2 个答案:

答案 0 :(得分:6)

您可以将宽度和高度绑定到ImageBource的ImageSource的PixelWidth和PixelHeight,就​​像这样

更新

实现我之前的解决方案不起作用,因为ImageSource没有PixelWidth / PixelHeight,因为它不是BitmapImage。我不得不使用BitmapImage资源,但如果我没有在绑定之前声明资源,那么绑定就不起作用了(任何人都有错误吗?)

<Window x:Class="WindowSameSizeAsBackground.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Fruit Factory"
        WindowStyle="None"
        DataContext="{Binding}"
        ResizeMode="NoResize">
    <Window.Resources>
        <BitmapImage x:Key="backgroundBrush"
                     UriSource="/FruitFactory;component/Graphics/FruitFactoryBackground.png"/>
    </Window.Resources>
    <Window.Width>
        <Binding Source="{StaticResource backgroundBrush}" Path="PixelWidth"/>
    </Window.Width>
    <Window.Height>
        <Binding Source="{StaticResource backgroundBrush}" Path="PixelHeight"/>
    </Window.Height>
    <Window.Background>
        <ImageBrush x:Name="imageBrush"
                    ImageSource="{StaticResource backgroundBrush}"></ImageBrush>
    </Window.Background>
    <Grid>
        <ComboBox Height="23" HorizontalAlignment="Left" Margin="52,27,0,0" Name="comboBox1" VerticalAlignment="Top" Width="120" />
        <Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="258,179,0,0" Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click" />
    </Grid>
</Window>

答案 1 :(得分:1)

ImageBrush不是这种要求的最佳解决方案,因为它没有Width / Height属性,并且不存在于VisualTree中(它只是一个渲染工具)。

图层会帮助你:

<Window>
    <Grid >
        <Image Stretch="Fill" 
               Source="***some uri***"/>
        <StackPanel>
            <Button Height="40" 
                    Margin="20"
                    Content="Ololo"/>
        </StackPanel>
    </Grid>
<Window>