private void Button_Click_1(object sender, RoutedEventArgs e) { //FaceTestPage p = new FaceTestPage(); //Panel pp = this.Parent as Panel; //if (pp != null) //{ // pp.Children.Add(p); //} //ActionAnimationShow.ShowZoomProjection(p, 1000); LynxWindow.ShowWindow(p, this.Parent as Panel); }
private void buttonQuery_Click(object sender, RoutedEventArgs e) { LynxDataRowList l = new LynxDataRowList(); LynxWindow.ShowWindow(l); l.selectSQL = textBox1.Text; if (checkBox1.IsChecked == true) { l.IsEdit = true; } l.LoadRecordList(); }
private void ButtonTimer(object sender, RoutedEventArgs e) { SysTimer ss = new SysTimer(); LynxWindow.ShowWindow(ss, this.Parent as Panel); }
private void Button_Click_2(object sender, RoutedEventArgs e) { ShutterSpeed ss = new ShutterSpeed(); LynxWindow.ShowWindow(ss, this.Parent as Panel); }
private void Button_Click(object sender, RoutedEventArgs e) { ImageTest.Page p = new ImageTest.Page(); LynxWindow.ShowWindow(p, this.Parent as Panel); }