コード例 #1
0
 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));
     }
 }
コード例 #2
0
 /// <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));
 }
コード例 #3
0
 /// <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));
 }
コード例 #4
0
 /// <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));
 }
コード例 #5
0
 private void MoldReleaseInfoSP_MouseUp(object sender, MouseButtonEventArgs e)
 {
     Info_Frame.Navigate(new ReleaseInfo(MoldNRTB.Text));
 }