コード例 #1
0
ファイル: CurrentUsers.cs プロジェクト: Eygle/wmp
 public CurrentUsers(CurrentUsers o)
 {
     this._users = o._users;
     try
     {
         load();
     }
     catch
     {
         save();
     }
 }
コード例 #2
0
ファイル: MainWindow.xaml.cs プロジェクト: Eygle/wmp
        public MainWindow()
        {
            InitializeComponent();
            DataContext = this;
            initTimer();
            _playList = new CurrentPlaylist();
            _users = new CurrentUsers();

            _webcam = new WebCam();
            this.hideAudioElements();
            this._playlistManager = new PlaylistManager();
        }