我使用C#和WPF構建我的項目。在我的應用程序中,我使用了小尺寸的圖像(25x25)作爲我的應用程序背景。我從互聯網上找到了一些例子,當我嘗試它時,我的應用程序的背景就像imageA。但是我想要做的就像我的背景就像imageB一樣。任何人都知道如何使它像imageB?WPF重複圖像背景
我的WPF代碼片段:
<Grid>
<Grid.Background>
<VisualBrush TileMode="Tile" Viewport="0.8,0.8,0.1,0.1" AlignmentX="Left" AlignmentY="Top">
<VisualBrush.Visual>
<Image Source="/Wpf_Customer;component/bg.jpg"></Image>
</VisualBrush.Visual>
</VisualBrush>
</Grid.Background>
<RadioButton Content="Graph" Name="dsad" FontSize="15" ></RadioButton>
</Grid>
imageA:
imageB:
編輯:
imageC:
你,同樣的結果..... – 0070
我的壞,更新回答,請檢查這一點。 – andrewpey
嗯......我試過你的方法,圖像被放大不再重複。 – 0070