Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5950227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T17:21:49+00:00 2026-05-22T17:21:49+00:00

I have a property grid object that requires you to choose an enum, for

  • 0

I have a property grid object that requires you to choose an enum, for example, you have:

enum XScalingType { ShowAll, Fixed, Sigma }

Now, based on this enum selection, we only care about certain parameters. Namely:

ShowAll - requires none
Fixed   - double Minimum, double Maximum
Sigma   - double Sigma

This leaves me with the following class

class MyPrefs
   XScalingType XScale
   double minimum  //only matters when XScale = Fixed
   double maximum  //only matters when XScale = Fixed
   double Sigma    //only matters when XScale = sigma

I’m not sure how to proceed from here. My thoughts where, I need to make min\max\sigma all members, and just hide them from the grid if they aren’t used.

However, that doesn’t seem like common practice. Is there a more formal way to use these optional parameters based on other enum selections?

I’m wondering if I’m approaching this from the wrong direction completely.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T17:21:50+00:00Added an answer on May 22, 2026 at 5:21 pm

    A better approach is to create state-aware property accessors like the following:

    public double? Sigma
    {
        get
        {
            if (XScale == XSCalingType.Sigma)
                return _sigma;
            else
                return null;
        }
        set { _sigma = value;}
    }
    

    then if XScale is anything other than Sigma, the property Sigma will show empty.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Property Grid in C#, loading up a 'PropertyAdapter' object (a basic
I have a property called IsSecureConnection that is part of my object's interface. This
I have a property on a domain object that is declared in a many-to-one
I have a property grid that helps me manage all of the controls on
So I have an object that implements INotifyPropertyChanged, and I have a property that
If I have a property that I want to let inheritors write to, but
If you have a Property that gets and sets to an instance variable then
I have an object that in a simplified form is as follows: public class
We have a data grid on a window that is bound to a collection
I have a custom converter that has a DefaultText property. All my converter does

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.