添加项目文件。

This commit is contained in:
2025-11-26 13:53:00 +08:00
parent be4540562d
commit 2a9e3186b6
7 changed files with 1125 additions and 0 deletions

43
MainForm.cs Normal file
View File

@@ -0,0 +1,43 @@
using System;
namespace TeklaModelPlugin1
{
public partial class MainForm : Tekla.Structures.Dialog.PluginFormBase
{
public MainForm()
{
InitializeComponent();
}
private void OkApplyModifyGetOnOffCancel_OkClicked(object sender, EventArgs e)
{
this.Apply();
this.Close();
}
private void OkApplyModifyGetOnOffCancel_ApplyClicked(object sender, EventArgs e)
{
this.Apply();
}
private void OkApplyModifyGetOnOffCancel_ModifyClicked(object sender, EventArgs e)
{
this.Modify();
}
private void OkApplyModifyGetOnOffCancel_GetClicked(object sender, EventArgs e)
{
this.Get();
}
private void OkApplyModifyGetOnOffCancel_OnOffClicked(object sender, EventArgs e)
{
this.ToggleSelection();
}
private void OkApplyModifyGetOnOffCancel_CancelClicked(object sender, EventArgs e)
{
this.Close();
}
}
}