protected override void OnAttachedTo(ListView bindable)
        {
            base.OnAttachedTo(bindable);

            if (bindable.ItemsSource is Core.Options options)
            {
                Delegate = new OptionsListViewDelegate(options);
            }
            else
            {
                throw new Exception();
            }
        }
Beispiel #2
0
 public OptionsListViewDelegateTests(ITestOutputHelper output)
 {
     _sut     = new OptionsListViewDelegate(source: null);
     _watcher = new Watcher(output);
 }