我有一个只有一个按钮的MainWindow,如何将此按钮链接到用户控制页面(home.xaml)?我是WPF的新手 在我的主窗口:
<Button Height="100" Name="btnHome" Width="103" Click="btnHome_Click"/>
在我的mainwindow.cs中:
private void btnHome_Click(object sender, RoutedEventArgs e)
{
var home = new home();
home.Show();
}
但它不起作用。 home.xaml是我想通过单击主窗口中的按钮链接到的用户控制页面。
答案 0 :(得分:2)
您应该可以使用NavigationService在WPF页面之间导航
示例:
private void btnHome_Click(object sender, RoutedEventArgs e)
{
NavigationService.GetNavigationService(this).Navigate("home.xaml");
}
答案 1 :(得分:0)
<asp:TextBox ID="txtName" runat="server"></asp:TextBox>
<br />
<asp:Button ID="Button1" runat="server" Text="Next" onclick="Button1_Click" />
Page1.aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
if (Session["Name"] != null)
txtName.Text = Session["Name"].ToString();
}
}
protected void Button1_Click(object sender, EventArgs e)
{
Session["Name"] = txtName.Text;
Response.Redirect("Page2.aspx");
}
Page2.aspx
<asp:Button ID="Button1" runat="server" Text="Back" onclick="Button1_Click" />
Page2.aspx.cs
protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("Page1.aspx");
}
答案 2 :(得分:0)
Window w = new Window();
w.Content = new UserControl1();
w.Show();
答案 3 :(得分:0)
在按钮上使用此代码,并在uri中设置用户控件名称或路径。
private void btn_Click(object sender, RoutedEventArgs e)
{
NavigationService.GetNavigationService(this)
.Navigate(new Uri("/UserControls/GameDetails.xaml", UriKind.RelativeOrAbsolute));
}