| 1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Windows.Forms;
- namespace CanOpenSlaveTest
- {
- static class Program
- {
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
-
- try
- {
- Application.Run(new SlaveTestForm());
- }
- catch (Exception ex)
- {
- MessageBox.Show(
- $"应用程序错误: {ex.Message}\n\n{ex.StackTrace}",
- "错误",
- MessageBoxButtons.OK,
- MessageBoxIcon.Error
- );
- }
- }
- }
- }
|