3

我有 viewport3d,我想改变它的背景颜色。

我对 Wpf 很陌生。我不明白从其他帖子中该怎么做。所以我在这里问。

我更改了 viewport3d 的画笔属性,但它什么也没做

<Window x:Class="W3DTinker.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="800" Width="1200">
<Grid HorizontalAlignment="Left" Height="780" Margin="10,10,0,-21" VerticalAlignment="Top" Width="1180">
    <Viewport3D Grid.Row="0" Grid.Column="0" x:Name="Viewport" Margin="350,10,10,10" OpacityMask="{DynamicResource {x:Static SystemColors.AppWorkspaceBrushKey}}" />
</Grid>

4

1 回答 1

6

Viewport3D是一个控件,它创建一个 3D 场景供您渲染。它本身不显示任何内容。如果你想要它后面的背景颜色,那么在它的父控件上设置背景颜色,在你的情况下就是Grid包含它的那个。

于 2015-06-03T01:57:13.177 回答