コード例 #1
0
ファイル: Program.cs プロジェクト: S3bb1/DashBoard
        static void Main(string[] args)
        {
            GDBLogger.logger.Info("Starting GamerDashBoard Server");

            Server gdbServer = new Server();
            gdbServer.startServer();

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            // Show the system tray icon.
            using (SysTrayApp pi = new SysTrayApp(gdbServer))
            {
                pi.Display();

                // Make sure the application runs!
                Application.Run();
            }
        }
コード例 #2
0
ファイル: ProcessIcon.cs プロジェクト: Greevee/DashBoard
 public SysTrayApp(Server server)
 {
     ni = new NotifyIcon();
     this.server = server;
 }
コード例 #3
0
ファイル: ContextMenus.cs プロジェクト: Greevee/DashBoard
 public ContextMenus(Server server)
 {
     this.server = server;
 }