我正在开发一个WPF softare。 在主窗口,我有一个名为" gridWindow"还有几个按钮。 每个按钮单击事件实际上将分别调用不同的窗口,然后抓取窗口中的内容并添加到主窗口中的网格中。
private void btnWelcome_Click(object sender, RoutedEventArgs e)
{
Window_Welcome childWindow = new Window_Welcome();
object PrjWindowContent = childWindow.Content;
childWindow.Content = null;
gridWindow.Children.Add(childWindow as UIElement);
}
然后我有另一个按钮需要打开一个名为" BlackScreen"的新窗口。并镜像主窗口网格中的所有内容。 MainWindow中网格内的内容始终根据系统时间或其他MainWindow控件的用户输入而变化。镜像窗口的内容也需要相应更改。
我了解到我可能需要一个可视刷来复制屏幕。 但我没有这样做。
这是我在BlackScreen.xaml中的代码。
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid Grid.Row="0" Background="Black">
<Viewbox Name="vbox" Stretch="Uniform"><!--DataContext="{Binding ElementName=gridWindow}"-->
<Grid>
<Grid.Background>
<VisualBrush Stretch="Uniform" Visual="{Binding}">
</VisualBrush>
</Grid.Background>
</Grid>
</Viewbox>
</Grid>
</Grid>
答案 0 :(得分:1)
以下是一个如何使用VisualBrush
镜像&#39;您的主要内容Grid
(或您的用户界面的任何其他部分):
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid Name="MainContent">
<Ellipse Fill="Red" />
<Rectangle Fill="Yellow" Margin="50" />
</Grid>
<Rectangle Grid.Row="1">
<Rectangle.Fill>
<VisualBrush Visual="{Binding ElementName=MainContent}" />
</Rectangle.Fill>
</Rectangle>
</Grid>
这会产生以下结果: