明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 183|回复: 2

[界面] 麻烦帮忙修改C#非模态窗口,使之能用lsp实时修改及获取窗口值

[复制链接]
发表于 2024-11-3 22:22:21 | 显示全部楼层 |阅读模式
50明经币
本帖最后由 tender138 于 2024-11-7 06:42 编辑

麻烦帮忙修改C#窗体
附件: 您需要 登录 才可以下载或查看,没有账号?注册

最佳答案

发表于 2024-11-3 22:22:22 | 显示全部楼层
  1. public class Class1
  2.     {
  3.         private static FormMain MyForm = null;//此处是关键
  4.         [CommandMethod("LoadWin")]
  5.         static public void LoadWin()
  6.         {
  7.             if (MyForm == null) { MyForm = new FormMain(); }
  8.             MyForm.Show();
  9.             MyForm.TextBox1.Text = "001";
  10.             MyForm.TextBox2.Text = "002";
  11.         }
  12.         [LispFunction("GetVal")]
  13.         public static ResultBuffer GetVal(ResultBuffer resBufIn)
  14.         {
  15.             if (MyForm == null)
  16.             {
  17.                 return new ResultBuffer(new TypedValue((int)LispDataType.Nil));
  18.             }
  19.             else
  20.             {
  21.                 return new ResultBuffer(new TypedValue((int)LispDataType.Int32, MyForm.TextBox1.Text));
  22.             }

  23.         }


  24.         [LispFunction("CloseMyForm")]
  25.         public static ResultBuffer CloseMyForm(ResultBuffer resBufIn)
  26.         {
  27.             if (MyForm != null)
  28.             {
  29.                 MyForm.Close();
  30.             }
  31.             return new ResultBuffer(new TypedValue((int)LispDataType.T_atom, true));

  32.         }


  33.     }
回复

使用道具 举报

 楼主| 发表于 2024-11-6 02:13:46 | 显示全部楼层

非常感谢!困扰多时的问题解决了!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-22 20:32 , Processed in 0.169252 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表