/// <summary>
        
/// 應用程式的主進入點。
        
/// </summary>
        [STAThread]
        
static void Main() 
        {
            Application.Run(
new Form1());
        }
        /// <summary>
        
/// 清除任何使用中的資源。
        
/// </summary>
        protected override void Dispose( bool disposing )
        {
            
if( disposing )
            {
                
if (components != null
                {
                    components.Dispose();
                }
            }
            
base.Dispose( disposing );
        }

相关文章:

  • 2021-11-10
  • 2022-02-05
  • 2021-05-29
  • 2021-12-15
  • 2021-07-17
  • 2021-07-07
  • 2021-11-30
猜你喜欢
  • 2022-12-23
  • 2021-08-29
  • 2021-10-27
  • 2021-12-08
  • 2022-02-09
  • 2021-06-07
  • 2021-08-26
相关资源
相似解决方案