我正在尝试在我的 WPF 应用程序中实现一种弹出菜单或窗口。我正在使用 MVVM 灯光框架在视图之间发送消息和切换。我想要的是打开一个新的 UserControl,其中包含一些用户可以调整的设置。
<Window x:Class="RTWPFApp.Views.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="Re App"
WindowStartupLocation="CenterScreen"
Height="459"
Width="795">
<Grid>
<ContentControl Content="{Binding CurrentView}" />
<ContentControl Content="{Binding AudioSettingsViewModel}" />
</Grid>
</Window>
如何在 CurrentView 上将 AudioSettingsViewModel 作为单独的弹出窗口打开?