public PollyWindow()
        {
            this.PollyProps   = App.PollyProperties;
            this.AudioProps   = App.AudioDeviceProperties;
            this.PollyHistory = App.PollyHistory;

            App.LoadSettings();

            pc = new PollyCaller(AudioProps);

            InitializeComponent();

            this.DataContext = this;
        }
예제 #2
0
        public PollyCaller(AudioDeviceProperties audioProps)
        {
            this.AudioProps = audioProps;

            SetupSoundsFolder();
        }