Example #1
0
        public Parameters(Window DialogParentWindow)
        {
            InitializeComponent();
            Owner  = DialogParentWindow;
            Config = ((MainWindow)DialogParentWindow).Config;

            Desks[0] = new DeskParams(Desk1, 1, Config.GetConfigValue("Desk_1_Sound_Card"),
                                      Config.GetConfigValue("Desk_1_Pan"));
            Desks[1] = new DeskParams(Desk2, 2, Config.GetConfigValue("Desk_2_Sound_Card"),
                                      Config.GetConfigValue("Desk_2_Pan"));
        }
Example #2
0
        public MainWindow()
        {
            InitializeComponent();

            Config              = new SQLite.SQLiteConfig("config.db");
            IdleImage.Source    = new BitmapImage(new Uri(Path.GetFullPath(Config.GetConfigValue("stop_image"))));
            WarningImage.Source = new BitmapImage(
                new Uri(Path.GetFullPath(Config.GetConfigValue("warning_image"))));

            DispatcherTimer CheckTime = new DispatcherTimer();

            CheckTime.Tick    += CheckTimeTick;
            CheckTime.Interval = TimeSpan.FromMilliseconds(50);
            CheckTime.Start();
        }