Files
wg_cpso/CPSO/Forms/92_Knowledge/FrmAnalysisEx.cs
2026-03-26 06:50:22 +08:00

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);
}
}
}
}