gpt4 book ai didi

c# - 如何将 .PNG 图像设置为我的 WPF 表单的 TILED 背景图像?

转载 作者:可可西里 更新时间:2023-11-01 03:02:40 26 4
gpt4 key购买 nike

我正在自学 WPF,但我似乎找不到完成这项工作的方法。

这是我的代码:

<Window x:Class="Test.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Test" Height="600" Width="800" >
<DockPanel>
<Menu DockPanel.Dock="Right"
Height="30"
VerticalAlignment="Top"
Background="#2E404B"
BorderThickness="2.6">
<Menu.BitmapEffect>
<DropShadowBitmapEffect Direction="270" ShadowDepth="3" Color="#2B3841"/>
</Menu.BitmapEffect>
</Menu>
</DockPanel>

如何显示平铺背景图像?

最佳答案

将 ViewportUnits 设置为绝对值,这样您就可以在视口(viewport)中定义图像的像素大小。在我的示例中,图像大小为 32x32。

<Window.Background>
<ImageBrush ImageSource="image.png" TileMode="Tile" ViewportUnits="Absolute" Viewport="0,0,32,32"/>
</Window.Background>

关于c# - 如何将 .PNG 图像设置为我的 WPF 表单的 TILED 背景图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1725184/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com