摘要: 1、后台打开网页1 private void OpenWeb(object sender, RoutedEventArgs e)2 {3 System.Diagnostics.Process.Start("http://www.cnblogs.com/submarine");4 }2、窗口间跳转1 private void LogInSucc(object sender, RoutedEventArgs e)2 {3 this.Hide();4 OtherWindow win = new OtherWindow();5 win.Show();6 }3、垂直分割线... 阅读全文
posted @ 2013-04-16 09:44 SubmarineX 阅读(4715) 评论(0) 推荐(1) 编辑