private void MoldNRTB_KeyUp(object sender, KeyEventArgs e) { // ConfigUtil config = new ConfigUtil("partgroup"); if (e.Key == Key.Enter) { Info_Frame.Navigate(new BasiscInfo(MoldNRTB.Text)); } }
/// <summary> /// show in and out info of mold /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void InOut_MouseUp(object sender, MouseButtonEventArgs e) { Info_Frame.Navigate(new InOutInfo(MoldNRTB.Text)); }
/// <summary> /// show basic info of mold /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void BasicInfoSP_MouseUp(object sender, MouseButtonEventArgs e) { // ConfigUtil config = new ConfigUtil("partgroup"); Info_Frame.Navigate(new BasiscInfo(MoldNRTB.Text)); }
/// <summary> /// show dynamic info of mold /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void DynamicInfo_MouseUp(object sender, MouseButtonEventArgs e) { Info_Frame.Navigate(new DynamicInfo(MoldNRTB.Text)); }
private void MoldReleaseInfoSP_MouseUp(object sender, MouseButtonEventArgs e) { Info_Frame.Navigate(new ReleaseInfo(MoldNRTB.Text)); }