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 542377
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T10:26:25+00:00 2026-05-13T10:26:25+00:00

In my C# winforms application I need to draw blocks. These blocks are so

  • 0

In my C# winforms application I need to draw blocks. These blocks are so called process blocks. All the blocks together are a process. There are different kinds of process blocks. At this moment I have three kinds of process blocks: A, B, C. When I draw a process block it looks like this:

A

B

B

C

A

Every block has it’s own backgroundcolor. And every block has it’s own properties. For example: process block A and B both has the same properties (ID and description). The difference is the background color of the block.

I already have created a user control. This user control is a process block. I already have a picturebox where I add the user control (process blocks) to the controls collection. This works fine. The point is that I don’t know how to link a process block of type A, B, C to the user control. I also have a propertygrid. When a processblock is clicked I want to display it’s property values.

I don’t know exactly how to implement this. I hope you can point me at the right direction.

  • 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-13T10:26:25+00:00Added an answer on May 13, 2026 at 10:26 am

    I would see the UserControl that you’ve created as a ‘visualizer’ of a ProcessBlock instance.

    So, what I would do -given the information you’ve given-, is create an abstract class (or interface, it depends) ‘ProcessBlock‘, which has some abstract methods like GetDrawingColor.

    For every concrete ProcessBlock, you create a new class which inherits from the abstract class (or interface).
    So, then you could have ‘ProcessBlockA’, ‘ProcessBlockB’, and ‘ProcessBlockC’ which inherit from the ProcessBlock base class.
    In each concrete subclass, you override the the GetDrawingColor method, so that it returns the Color that you want to have.

    Then , you pass an instance of a ProcessBlock to the UserControl, and the UserControls calls the GetDrawingColor method, and it uses the result in order to paint it’s background.

    For instance:

    public abstract class ProcessBlock
    {
        public abstract Color GetDrawingColor();
    }
    
    public class ProcessBlockA : ProcessBlock
    {
        public override Color GetDrawingColor() 
        { 
           return Color.Blue; 
        }
    }
    
    public class ProcessBockB : ProcessBlock
    {
        public override Color GetDrawingColor() 
        { 
           return Color.Red;
        }
    
    }
    
    public ProcessBlockVisualizer : UserControl
    {
        private ProcessBlock _pb;
    
        public ProcessBlockVisualizer( ProcessBlock pb )
        { 
             _pb = pb;
             this.BackgroundColor = _pb.GetDrawingColor();
    
             this.Enter += (object sender, EventArgs e)=> this.PropertyGrid.Datasource = _pb;
    
        }           
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.