5

我的设置窗口中需要一个矩形来显示主窗口的缩小版本。这是我现在拥有的非工作代码。有可能做我想做的事吗?

<Rectangle.Fill>
<VisualBrush Stretch="Uniform" Visual="{Binding ElementName=local:MainWindow}" />
</Rectangle.Fill>
4

1 回答 1

7

是的,但不是在纯 XAML 中,也不是使用 ElementName。相反,您需要将对主窗口的引用传递到您的设置窗口中。然后,您可以将 VisualBrush.Visual 绑定到该引用。

作为一个简化的示例,在创建设置窗口时,您可以将其 DataContext 设置为主窗口:

// MainWindow.xaml.cs
SettingsWindow w = new SettingsWindow { DataContext = this };
w.Show();

然后 SettingsWindow 你可以访问 MainWindow {Binding}(因为 MainWindow 现在是 SettingsWindow 的 DataContext,并且{Binding}指的是 DataContext):

<!-- SettingsWindow.xaml -->
<Rectangle.Fill>
  <VisualBrush Stretch="Uniform" Visual="{Binding}" />
</Rectangle.Fill>

在实践中,您可能不想将主窗口对象作为 DataContext 传递,因为这太生硬了,但希望这能给您带来想法。

于 2010-04-04T01:13:06.343 回答