Skip to content
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

Feature: Add EnumOptionAttribute #228

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

Poker-sang
Copy link

@Poker-sang Poker-sang commented Nov 18, 2024

Use:

[ToolkitSampleEnumOption<Visibility>("MyVisibility", Title = "Visibility")]
public partial class Sample : UserControl;

instead of

[ToolkitSampleEnumOption("MyVisibility", "Visible", "Collapsed", Title = "Visibility")]
public partial class Sample : UserControl;

And generate accurate enum type for ToolkitSampleEnumOption:

public Windows.UI.Xaml.Controls.Visibility MyVisibility
{
    get => (Windows.UI.Xaml.Controls.Visibility)(...)!.Value!;
    set ...
}

All the changes are AOT compatiable

@Poker-sang Poker-sang marked this pull request as draft November 18, 2024 15:37
@Poker-sang Poker-sang marked this pull request as ready for review November 18, 2024 16:47
@Poker-sang Poker-sang changed the title Add EnumOptionAttribute Feature: Add EnumOptionAttribute Nov 28, 2024
@Arlodotexe Arlodotexe self-requested a review December 23, 2024 22:38
@Arlodotexe
Copy link
Member

Good to see that new C# 12 features might make this a bit simpler to set up.

However, we should be doing an evaluation of existing code before making refactors like this. We had custom logic for added flexibility, and this would need to be assessed and planned out before making improving.

We'll keep the PR around for now, but let's get a ticket open to track our rationale and methodology.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: 🛑 Blocked
Development

Successfully merging this pull request may close these issues.

2 participants