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?
this.Controls.Add(oControl);inShowBUT 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:25draw controls using .NET "show" method– Mikant May 28 '11 at 23:41