-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Enhancement] [vNext] Implement SelectorRegionAdapter #139
Comments
I am unfamiliar with SelectorRegionAdapterFixture, where would I find that in the Source? Shouldn't SelectorRegionAdapter be derived from RegionAdapterBase of SelectingItemsControl? I started working on that feature myself in an attempt to get TabControl regions to work out of the box like. |
@dhhunter, Here's an excerpt from the legacy Prism over at Microsoft Patterns and Practices:
In the WPF world, the Selector class represents a control that allows a user to select items from among its child elements For a sample using TabControl, check out my sample repo, Prism.Avalonia Outlookish. The "Mail Module" utilizes the TabControl. |
In WPF, the TabControl derives from Selector which derives from ItemsControl. In Avalonia, the equivalent to the WPF Selector, seems to be SelectingItemsControl which derives from ItemsControl and is the base class for TabControl... WPF TabControl Avalonia.Styling.Selector is used to apply a style to controls... It seems to me that SelectingItemsControl is a better fit for trying to mirror the originals functionality... |
Description
As a user, I'd like to use SelectorRegionAdapter with for Avalonia's namespace,
Avalonia.Styling
.Context
This includes:
SelectorRegionAdapter
SelectorItemsSourceSyncBehavior
SelectorRegionAdapterFixture
The text was updated successfully, but these errors were encountered: