I have used tabs in my windows forms application using C#. i want to store a form in temporary tab like the tabs used in google chrome to provide multitasking. how can i do it?
store forms in tabs
Page 1 of 13 Replies - 122 Views - Last Post: 27 June 2012 - 06:53 AM
Replies To: store forms in tabs
#2
Re: store forms in tabs
Posted 27 June 2012 - 04:33 AM
What have you tried?
Have you looked into existing controls yet?
Have you looked into existing controls yet?
#3
Re: store forms in tabs
Posted 27 June 2012 - 06:38 AM
Google runs a completely new process for each tab. Basically each tab is a program, and the container is a host in which the programs all display. This is no trivial task.
#4
Re: store forms in tabs
Posted 27 June 2012 - 06:53 AM
Stop building everything in forms. As you have just learned they are limiting.
If you build your controls into UserControls you have a lot more options. You can put 1 or 1,000 UserControls on one form to make something complex. Or when you need it as a form by itself it only takes a couple lines.
If you build your controls into UserControls you have a lot more options. You can put 1 or 1,000 UserControls on one form to make something complex. Or when you need it as a form by itself it only takes a couple lines.
myCustomUserControl mcuc = new myCustomUserControl; Form frm = new Form(); frm.Controls.add(mcuc); frm.Show();
Page 1 of 1
|
|

New Topic/Question
Reply



MultiQuote





|