hi everyone,
i created more than one window in a wpf project and i need to know how to navigate from one to another.. is there something like response.direct or even setVisible
thank you
you can do something like this
Window2 win = new Window2();
win.show();
or
<Hyperlink NavigateUri="Window2.xaml">
there is a section in sdk
ms-help://MS.MSSDK.1033/MS.NETFX30SDK.1033/wpf_conceptual/html/86ad2143-606a-4e34-bf7e-51a2594248b8.htm
if you want winforms like application-> window, back and forward buttons(navigation) - page