Files
wg_cpso/CPSO/Forms/92_Knowledge/FrmAnalysisEx.cs

44 lines
858 B
C#
Raw Normal View History

2026-03-25 18:20:24 +08:00
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)
{
}
2026-03-26 06:50:22 +08:00
private void btnRun_Click(object sender, EventArgs e)
2026-03-25 18:20:24 +08:00
{
try
{
}
catch (Exception ex)
{
ExceptionTools.Show(this, ex);
}
}
}
}