| 1234567891011121314151617 |
- using System;
- using Avalonia.Styling;
- namespace Avalonia.Base.UnitTests.Styling
- {
- public static class TestSelectors
- {
- public static Selector SubscribeCheck(this Selector selector)
- {
- throw new NotImplementedException();
- //return new Selector(
- // selector,
- // control => new SelectorMatch(((TestControlBase)control).SubscribeCheckObservable),
- // "");
- }
- }
- }
|