public ZoneContextWindow(PASubSystem system, PASection section, PAZone zone)
        {
            InitializeComponent();

            App app = App.Current as App;

            if (app.AppBkBrush != null)
            {
                Background = app.AppBkBrush;
            }

            _system  = system;
            _section = section;
            _zone    = zone;

            if (_section != null)
            {
                btnZoneName.Content = _section.Name;
            }

            if (_zone != null)
            {
                btnZoneName.Content = _zone.Name;
            }
        }
        public MusicSelectWindow(PASubSystem system, PASection section, PAZone zone)
        {
            InitializeComponent();

            App app = App.Current as App;

            if (app.AppBkBrush != null)
            {
                Background = app.AppBkBrush;
            }

            _system  = system;
            _section = section;
            _zone    = zone;
        }
Exemple #3
0
        public PADispatchUserControl(PASubSystem system)
        {
            this.InitializeComponent();

            _system = system;
        }
Exemple #4
0
        public PAChannel(PASubSystem system)
        {
            _system = system;

            CallId = -1;
        }