.NET Tutorials, Forums, Interview Questions And Answers
Welcome :Guest
 
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!


Top 5 Contributors of the Month
G N
Akhil Raj
Dhananjay Kumar
laptop charles
Majith

Home >> Articles >> General >> Post New Resource Bookmark and Share

 Subscribe to Articles

Understanding the FlowLayoutPanel

Posted By :Hefin Dsouza      Posted Date :22/09/2009   Points :25   Category: General    URL: http://hefindsouza.blog.com
 


The FlowLayoutPanel is a derived from the Panel control.
Like the
Panel control, it is most commonly used to create container for group of similar controls. The FlowLayoutPanel dynamically repositions the controls it contains

when it is resized at either design time or run time unlike the Panel Control.

Because of which the control positions are automatically adjusted as the size and dimensions of the FlowLayoutPanel.

The FlowLayoutPanel is very similar to the FlowLayout panel as in Java.

The FlowLayoutPanel also supports Scroll.It is only enabled when the AutoScroll property is set to True.
It will keep on placing new controls one after the other in the Right-Left Order.

After the Controls reaches the end of the Current Row It will automatically break the flow and add the control in the next row below it in case where the FlowDirection is set to Left to Right or Right to Left.

 

If the WrapContents  property is set to False It will stop wraping the contents and go on adding the Controls on the same row or column.

 

You can manually create Flow Breaks using the SetFlowBreak method of the FlowLayoutPanel Example . 
Private
Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        'Adding 10 TextBoxes to the FlowLayout Panel
        For index As Integer = 0 To 11
            Dim txt As New TextBox()
            txt.Name = "Txt " & (index + 1)
            txt.Text = txt.Name

            If index Mod 2 Then
             FlowLayoutPanel1.SetFlowBreak(txt, True) 'Setting the FlowBreak at every Even index
            End If
            FlowLayoutPanel1.Controls.Add(txt)
        Next
End Sub


Regards
Hefin Dsouza



Featured Articles


Best Practices No 5: - Detecting .NET application memory leaks
Memory leaks in .NET application have always being programmer's nightmare. Memory leaks are biggest problems when it comes to production servers. Productions servers normally need to run with least down time. Memory leaks grow slowly and after sometime they bring down the server by consuming huge chunks of memory. Maximum time people reboot the system, make it work temporarily and send a sorry note to the customer for the downtime. ... Read More
.NET Best Practice No: 1:- Detecting High Memory consuming functions in .NET code
One of the important factors for performance degradation in .NET code is memory consumption. Many developers just concentrate on execution time to determine performance bottle necks in a .NET application. Only measuring execution time does not clearly give idea of where the performance issue resides. Ok, said and done one of the biggest task is to understand which function, assembly or class has consumed how much memory. In this tutorial we will see how we can find which functions consume how much memory. This article discusses the best practices involved using CLR profiler for studying memory allocation.... Read More
How to improve your LINQ query performance by 5 X times ?
LINQ has been criticized by many early adopters for its performance issues. Well if you are just going to drag and drop using DBML code generator I am sure you will land up in to mess. Try doing this make a simple LINQ to SQL project using DBML and see your SQL profiler, I am sure you will never like to touch DBML code generator again. ... Read More
Responses

No response found. Be the first to respond this post

Post Comment
You must Sign In To post reply
Find More Articles on C#, ASP.Net, Vb.Net, SQL Server and more Here

Hall of Fame    Twitter   Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend