添加项目文件。
This commit is contained in:
43
MainForm.cs
Normal file
43
MainForm.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user