Пример #1
0
        private void AddTabRemote()
        {
            //add remotes section
            if (splashScreen != null)
            {
                splashScreen.SetInformation("Adding remote section...");
            }
            SectionSettings remote = new Remote();

            AddSection(new ConfigPage(null, remote, false));

            Log.Info("add DirectInput section");
            RemoteDirectInput dinputConf = new RemoteDirectInput();

            AddSection(new ConfigPage(remote, dinputConf, true));
            RemoteUSBUIRT usbuirtConf = new RemoteUSBUIRT();

            AddSection(new ConfigPage(remote, usbuirtConf, true));
            serialuir = new RemoteSerialUIR();
            AddSection(new ConfigPage(remote, serialuir, true));
            RemoteWinLirc winlircConf = new RemoteWinLirc();

            AddSection(new ConfigPage(remote, winlircConf, true));
            RemoteRedEye redeyeConf = new RemoteRedEye();

            AddSection(new ConfigPage(remote, redeyeConf, true));
        }