我正在尝试在WPF中创建子窗口。单击按钮时应打开子窗口
我正在使用通用代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
private void Click_setupClass(object sender, RoutedEventArgs e)
{
ChildWindow child = new ChildWindow();
}
由于某种原因,Childwindow无法进行初始化。它让我无法找到Childwindow您是否缺少程序集引用。
不能通过System.Windows.Controls;
访问childWindow。我做错了什么?
答案 0 :(得分:1)
据我所知,ChildWindow仅适用于Silverlight。您应该在WPF中使用Window类。只需致电window.ShowDialog()
即可显示模态窗口。