dodexahedron
dodexahedron
I have some items to run by you on this one. Some are pretty important. I'm writing it up and validating specifics. I'll have a small amount of code plus...
In addition to the stuff I'm preparing, my other main general commentary is that, until that test issue is fixed, I wouldn't advise merging this yet, since this change isn't...
I don't think cascading setting the Visible property explicitly would be a good idea. That would wreck whatever state someone has set up. It all goes back to the drawing...
An `IsVisible` recursive property is a one-liner and it goes in the base View class: ```csharp public bool IsVisible => _visible && SuperView is not { IsVisible: false }; ```...
Now... If you want to extend that concept to communicate to descendants in the tree of an _actual_ visibility change, due to an ancestor's Visible property changing causing the computed...
Exactly. Or consider _any_ situation where the consumer has explicitly set various sibling Views in the same SuperView to different Visible states and expects that to be respected when the...
Ideally, it should use a CancellationToken, so others can react accordingly.
**I also mostly agree, but perhaps have a different ideal or at least more words (ha - never) about how I think we should go about it.** As is common...
Looks like PR #9 takes care of this
As long as you compile against AnyCPU or the appropriate platform-specific TFM, you should be able to use it on any hardware and OS capable of running .net 8. I...