44 lines
858 B
C#
44 lines
858 B
C#
using CaeGlobals;
|
|
using CaeJob;
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.Windows.Forms;
|
|
|
|
// ReSharper disable InlineTemporaryVariable
|
|
|
|
namespace CPSO.Forms._92_Knowledge
|
|
{
|
|
public sealed partial class FrmAnalysisEx : Form
|
|
{
|
|
private readonly Controller Self;
|
|
|
|
public FrmAnalysisEx(Controller controller)
|
|
{
|
|
InitializeComponent();
|
|
|
|
Self = controller;
|
|
|
|
Text = @"切削力仿真";
|
|
}
|
|
|
|
public void PrepareForm()
|
|
{
|
|
}
|
|
|
|
private void FrmAnalysisEx_Load(object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
private void btnRun_Click(object sender, EventArgs e)
|
|
{
|
|
try
|
|
{
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ExceptionTools.Show(this, ex);
|
|
}
|
|
}
|
|
}
|
|
}
|