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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:16:51+00:00 2026-05-26T00:16:51+00:00

I will give a full example that compiles: using System.Windows.Forms; interface IView { string

  • 0

I will give a full example that compiles:

using System.Windows.Forms;
interface IView {
    string Param { set; }
    bool Checked { set; }
}
class View : UserControl, IView {
    CheckBox checkBox1;
    Presenter presenter;
    public string Param {
        // SKIP THAT: I know I should raise an event here.
        set { presenter.Param = value; }
    }
    public bool Checked {
        set { checkBox1.Checked = value; }
    }
    public View() {
        presenter = new Presenter(this);
        checkBox1 = new CheckBox();
        Controls.Add(checkBox1);
    }
}
class Presenter {
    IView view;
    public string Param {
        set { view.Checked = value.Length > 5; }
    }
    public Presenter(IView view) {
        this.view = view;
    }
}
class MainClass {
    static void Main() {
        var f = new Form();
        var v = new View();
        v.Param = "long text";
        // PROBLEM: I do not want Checked to be accessible.
        v.Checked = false;
        f.Controls.Add(v);
        Application.Run(f);
    }
}

It’s a pretty simple application. It has an MVP user control. This user control has a public property Param which controls its appearance.

My problem is that I want to hide the Checked property from users. It should be accessible only by the presenter. Is that possible? Am I doing something completely incorrect? Please advise!

  • 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-26T00:16:52+00:00Added an answer on May 26, 2026 at 12:16 am

    You can’t completely hide it from the end user, and truthfully, you don’t need to. If someone wants to use you user control directly, your control should be dumb enough to just display the properties that are set on it, regardless if they were set through a presenter or not.

    The best you can do however (if you still insist on hiding those properties from your user), is to implement the IView explicitly:

    class View : UserControl, IView {
        CheckBox checkBox1;
        Presenter presenter;
        string IView.Param {
            // SKIP THAT: I know I should raise an event here.
            set { presenter.Param = value; }
        }
        bool IView.Checked {
            set { checkBox1.Checked = value; }
        }
        public View() {
            presenter = new Presenter(this);
            checkBox1 = new CheckBox();
            Controls.Add(checkBox1);
        }
    

    This way, if someone just does:

    var ctl = new View();
    

    they won’t have access to those properties.

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

Sidebar

Related Questions

I need a regex that will give me the following results from each example
i will give an example of the problem i have. My XML is like
Is there a built in dll that will give me a list of links
Is there a POSIX function that will give me the size of a directory
Is there a command within the bash shell of fedora that will give me
I am using MySql (and PHP). It's best if I give an example: I
I am using the WebBrowser control on a Windows Forms application in Visual Studio
Which ORM will give me compile-tested queries? Is linqtosql compile time tested? Edit: Say
Which code snippet will give better performance? The below code segments were written in
AssemblyName.GetAssemblyName().Version.ToString() will give the version number ,,but i need to get version number from

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.