示例#1
0
        //
        // - Constructors -
        //

        /// <summary>
        /// Default constructor.
        /// </summary>
        public HliForm()
        {
            // Create and display the actual .Net form in a seperate thread.
            this.dotNetThread = new System.Threading.Thread(new System.Threading.ThreadStart(this.ThreadEntryPoint));
            this.dotNetThread.Start();
        }
示例#2
0
文件: HliForm.cs 项目: ewcasas/DVTK
 //
 // - Constructors -
 //
 /// <summary>
 /// Default constructor.
 /// </summary>
 public HliForm()
 {
     // Create and display the actual .Net form in a seperate thread.
     this.dotNetThread = new System.Threading.Thread(new System.Threading.ThreadStart(this.ThreadEntryPoint));
     this.dotNetThread.Start();
 }