コード例 #1
0
        /// <summary>
        /// Searches for items that contain the search text as all or part of their name.
        /// </summary>
        private void SearchItems(object sender, EventArgs args)
        {
            var view  = _view.FindViewById <EditText>(Resource.Id.search_edittext);
            var items = GatheringService.Search(view.Text);

            PopulateTableView(items);
        }
コード例 #2
0
        /// <summary>
        /// Gets the legendary node details.
        /// </summary>
        private void GetLegendaryNodeDetails(object sender, EventArgs args)
        {
            var sort  = _view.FindViewById <CheckBox>(Resource.Id.chkSortByStart).Checked;
            var items = GatheringService.GetItemsOfType(Enums.NodeType.Legendary, sort);

            PopulateTableView(items);
        }
コード例 #3
0
 public AutomaticMixer()
 {
     _behaviourManager = new BehaviourManager();
     _gatheringService = new GatheringService();
     _gatheringService.AudioSessionUpdate.Subscribe(args => OnMixerStateUpdate(_gatheringService, args));
 }
コード例 #4
0
        /// <summary>
        /// Gets the white scrip rotation.
        /// </summary>
        private void GetWhiteScripRotation(object sender, EventArgs args)
        {
            var items = GatheringService.GetScripRotation(Enums.ScripType.White);

            PopulateTableView(items);
        }