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

  • SEARCH
  • Home
  • 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 329753
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:37:03+00:00 2026-05-12T09:37:03+00:00

I have a situation that is pretty simple, and I’d like to know the

  • 0

I have a situation that is pretty simple, and I’d like to know the ideal way to do it.

I have a combo box. Each line of the combo box corresponds to a particular strategy object.

What is the proper way to map the combo box lines to the strategy object.

The way I was doing it seems overly complicated, and I’m pretty much guaranteed there is a simple standard way to do this.

Thank you.

EDIT:

I had the data in a Dictionary, where the string was the text for the combobox, and the object was the strategy… But this isn’t ordered… And I just know there is some extremely simple way to do it.

SOLUTION:
I used this solution, not feeling comfortable putting presentation logic in the data classes:

private partial class HtmlTransformState : AbstractHtmlEditFormState
{
private Dictionary<string, ITransformStrategy> strategies = new Dictionary<string, ITransformStrategy>() 
{ 
    { "Simple URL", new TransformStrategy<SimpleUrlCodeExtractor>() }, 
    { "Overview", new TransformStrategy<OverviewCodeExtractor>() },  
    { "Video List", new TransformStrategy<VideoListCodeExtractor>() }, 
    { "Video List No MbORKb", new TransformStrategy<VideoListNoMBOrKBAndNoLinksAllowedCodeExtractor>() },
    { "Blue Mountain 2007", new TransformStrategy<BlueMountain2007CodeExtractor>() },
    { "Four Gates", new TransformStrategy<FourGatesCodeExtractor>() },
    { "General", new TransformStrategy<GeneralCodeExtractor>() }
};
public override void DrawForm()
{
    // ...
    ParentForm.cmboTransformStrategy.DataSource = new BindingSource(strategies, null);
    ParentForm.cmboTransformStrategy.DisplayMember = "Key";
    ParentForm.cmboTransformStrategy.ValueMember = "Value";
}

public override IEnumerable<string> ProcessHtml(string urlPath)
{
    ITransformStrategy transformStrategy = (ITransformStrategy)ParentForm.cmboTransformStrategy.SelectedValue;

    // Do some stuff with 'transformStrategy'
}

}

  • 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-12T09:37:03+00:00Added an answer on May 12, 2026 at 9:37 am

    Do you mean something like the following?

    public class Strategy
    {
        private string _name = "default";
        public string Name
        {
             get { return _name; }
            set { _name = value; }
        }
    
        public Strategy(string name)
    {
            _name = name;
        }
    }
    

    Then in form load (you need to have a combo box on that form):

    private void Form1_Load(object sender, EventArgs e)
    {
        List<Strategy> ls = new List<Strategy>();
        ls.Add(new Strategy("First"));
        ls.Add(new Strategy("Second"));
        ls.Add(new Strategy("Third"));
    
        comboBox1.DataSource = ls;
        comboBox1.DisplayMember = "Name";
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a pretty simple little schema that looks like this: Trail --> Segment
I have a situation that I solved in the following way: //cube_potentials is float8
I have an situation here that looks very like a SELECT N+1 from the
I am having trouble doing something that is probably pretty simple! I have a
Situation is pretty straightforward. I have a Java webapp that I'm converting to be
I have a situation that requires redirecting users who are already logged in away
I have that situation: I have models Item, Region and Country. class Item(models.Model): name
I have an interesting situation that EMF forced me into: abstract class AbstractDog{ ...
We have situation where say we have four engineers that are working on software
I have situation, where running a query that filters by an indexed column in

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.