增加新模块注意事项

Posted swtool

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了增加新模块注意事项相关的知识,希望对你有一定的参考价值。

  /// <summary>
  ///
  /// 应用程序的主入口点。
  ///
  /// 增加容器控件定义
  /// TableLayoutPanel tlp = new TableLayoutPanel();
  /// bool is***Load = false;
  /// PipeLength pipeLength;
  /// 增加load中的实例化
  /// pipeLength = new (PipeLength);
  /// 增加点击时的语句
  ///case ToolName.PipeLengthCal:
  ///UpdateUserRecord();
  ///       if (!isPipeLengthLoad)
  ///       {
  ///         scMain.Panel2.Controls.Add(tlpPipeLength);
  ///         pipeLength.tlpPipeLength = tlpPipeLength;
  ///         pipeLength.PipeLengthLoad();
  ///         isPipeLengthLoad = true;
  ///       }
  ///       else
  ///       {
  ///         scMain.Panel2.Controls.Add(tlpPipeLength);
  ///       }
  ///       break;
  ///
  ///
  /// Form中
  ///
  /// 应将构造函数中的InitializeComponent();注释掉
  /// 增加属性public TableLayoutPanel tlp { get; set; }
  ///   //FormLoad前取消下行注释
  ///     public void FormLoad()
  ///     //同时注释掉下行
  ///     //private void FormLoad(object sender, EventArgs e)
  ///   //FormLoad中需要修改
  ///   //取消下行注释
  ///   InitializeComponent();
  ///   
  ///Form Designer.cs中
  ///
  /// 注释掉tlp的new的行
  /// 注释掉Form窗体部分的内容
  /// </summary>

以上是关于增加新模块注意事项的主要内容,如果未能解决你的问题,请参考以下文章

MMDetection2.17-自定义组件时注册表(Registry)分析理解--以如何增加注意力模块为例

论文解读丨无参数的注意力模块SimAm

fastdfs添加新group注意事项

Linux (Centos)添加一块新硬盘的步骤及注意事项

光模块的选择和购买上有哪些需要注意的?

从JDK8到JDK17,需要注意的一些新特性