I have Silverlight application i want to show login window before main page InitializeComponent();
this method does not works:
public MainPage()
{
Login log = new Login();
log.Show();
InitializeComponent();
}
Any advice?
Try this: