我需要在silverlight的弹出窗口中打开一个xaml文件。 在我的情况下,我有两个xaml文件,即a.axml和b.axml。, 在a.xaml中,内部有一个超链接按钮和一个弹出标签。 我必须在单击a.xaml页面的超链接时打开该弹出窗口中的b.xaml页面。
这是我的情景。请帮我解决这个问题。
感谢,
氖
答案 0 :(得分:1)
您应该能够将Child property of the popup设置为b.xaml类的新实例(无论是什么)。
答案 1 :(得分:0)
使用Telerik控制它变得更容易。但你可以使用第二种方法。 在Blend上,我更改了Telerik子窗口的模板。现在看起来好多了
HyperlinkButton link = new HyperlinkButton();
link.Click += (s, a) =>
{
//With telerik
RadWindow w = new RadWindow();
w.Content=new UserControl();
w.Show();
w.ShowDialog();//Swith light and avoid access oter controls
//Without Telerik
Popup p = new Popup();
p.Child = w.Content as UserControl;
p.IsOpen = true;
};
答案 2 :(得分:0)
父页面XAML:
<HyperlinkButton Content="HyperlinkButton" Height="23" HorizontalAlignment="Left" Margin="150,111,0,0" Name="hyperlinkButton1" VerticalAlignment="Top" Width="100" Click="hyperlinkButton1_Click" />
代码背后:
public ParentPage()
{
InitializeComponent();
}
private void hyperlinkButton1_Click(object sender, RoutedEventArgs e)
{
ChildPage objpage = new ChildPage();
objpage.Show();
}
这是父页面有按钮。子页面加载基于该按钮单击