I need to draw controls using the .NET "show" method of Control.

Suppose I have to draw TreeViewControl on a WinForm by providing test data on some click event, but it's not drawing over the parent WinForm.

Here's the code:

public class TestTreeView: TreeView
{
    public TestTreeView()
    {

    }
    public override Color BackColor
    {
        set;
        get;
    }

    public override Image BackgroundImage { set; get; }
    public override ImageLayout BackgroundImageLayout { set; get; }
    public BorderStyle BorderStyle { get { return base.BorderStyle; } }
    public bool CheckBoxes { get { return base.CheckBoxes; } }
    protected override CreateParams CreateParams 
    { get { return base.CreateParams; } }
    protected Size DefaultSize { get { return base.DefaultSize; } }
    protected override bool DoubleBuffered { set; get; }
    public TreeViewDrawMode DrawMod { get { return base.DrawMode; } }
    public override Color ForeColor { set; get; }
    .....
    .....
    .....

    ..all other overrideables
    #endregion

    public void Sort()
    {

    }

    public override string ToString()
    {
        return null;
    }

    protected override void WndProc(ref Message m)
    {

    }

    public void setPropeties()
    {
        this.BackColor = Color.Black;
        this.BackgroundImage = null;            
        this.ForeColor = Color.Blue;
        this.Text = "Test Control";
    }
    public void Show()
    {
        // I used following line of statement
        base.show();

        // then for the testing sake, also construct test control object and 
        // set some data to if, it also didn't work as well.

        Control oControl = new Control();
        oControl.Text = "Test Control";
        oControl.BackColor = Color.Black;
        oControl.Height = 125;

        oControl.Show();

    }
}
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void btn_Click(object sender, EventArgs e)
    {
        TestTreeView oTreeView = new TestTreeView();
        oTreeView.setPropeties();
        oTreeView.Show();
    }
}

What should I do?

link|improve this question

64% accept rate
of course, use this.Controls.Add(oControl); in Show BUT it is much better to erase all the code -> learn basic principles of OOP and then continue. 'this' .. won't work anyway – Mikant May 28 '11 at 22:25
why 'this' won't work? is these all are static methods? simple properties of a class. – Usman May 28 '11 at 22:35
Can you please write donw the exact modified code of above suggested, i.e this.Control.Add(oControl)? where it should be? and by adding in side Controls list, how it will draw this on existing WinForm? – Usman May 28 '11 at 22:36
yo are talking about overall structure of the code? Can you please advice accordingly ? – Usman May 28 '11 at 22:39
ok, let's start from the beginning... why do you want to draw controls using .NET "show" method – Mikant May 28 '11 at 23:41
show 4 more comments
feedback

1 Answer

These lines do no really thing:

    Control oControl = new Control();
    oControl.Text = "Test Control";
    oControl.BackColor = Color.Black;
    oControl.Height = 125;

    oControl.Show();

The oControl has no Parent (exactly, Container), so where will it show? You need to add it to a container (maybe the control you are creating, using this)

link|improve this answer
yeah this is i done and succeeded with it, but I am having another problem, see my additional comments sir.. – Usman May 29 '11 at 0:08
I do not need to build "Control" object by hand, I do need to build up TestButton,TestTreeView etc by hand, which in turns should display exactly .NET respective control by having all those properties, which actually set by client of these classes. as These classes actually taking inheritance with their a tual respective classes (e.g TreeView, TestButton inheriting Button) etc. – Usman May 29 '11 at 0:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.