1

在我的项目中,每当用户单击菜单链接时,我都想打开一个新窗口。菜单链接中没有click事件。ModernUI菜单链接只有一个选项Source。有什么方法可以通过单击菜单链接打开新窗口。菜单链接代码片段在这里:

<mui:ModernWindow.MenuLinkGroups >
        <mui:LinkGroup DisplayName="File" x:Name="FileMenuGroup" >
            <mui:LinkGroup.Links >
                <mui:Link DisplayName="New Project" Source="/NewProjectUC.xaml"  />
                <mui:Link DisplayName="Open Recent" Source="/RecentItems.xaml" />
            </mui:LinkGroup.Links>
        </mui:LinkGroup>
</mui:ModernWindow.MenuLinkGroups>
4

1 回答 1

1

我找到了一种在现代窗口中打开新对话的方法。这是代码首先创建一个空UserControl

UserControl.xaml
<UserControl x:Class="ModernUIEDiscovery.NewProjectUC"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" Height="295" Width="420">

    <Grid></Grid>
</UserControl>

UserControl.xaml.cs

public NewProjectUC()
        {
            InitializeComponent();
            _mainWindow = (MainWindow)Application.Current.MainWindow;

            NewDialog newdialoge = new NewDialog();
            newdialoge.Owner = _mainWindow;
            newdialoge.ShowDialog();

        }
于 2014-09-11T08:16:55.043 回答